惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
L
LangChain Blog
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
D
Docker
B
Blog
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
G
Google Developers Blog
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Agent Workspace as Code: stop copy-pasting your CLAUDE.md...
Fernando Pas · 2026-05-04 · via DEV Community

Fernando Pastor

The drift problem nobody told you about

If you have used Claude Code, Cursor, Aider, or any other AI coding agent across more than two projects, you have felt this:

You start project A. You copy the .agents/ folder (or CLAUDE.md, or .cursorrules) from your last project. You tweak two things. Done.

You start project B six weeks later. You copy from project A. You tweak three things this time. Now A and B are different.

You start project C. The AWS safety rule looks one way in A, slightly different in B, and you do not remember which one was correct. The deploy skill is in three subtly different versions. The MCP setup is in two of three repos.

This is drift. And it is the silent killer of productivity once you start using AI agents seriously across a team.

The other failure mode is bloat: every .agents/ folder ends up as 200 files no one owns, no one knows what is still relevant, and "let me add one more rule just in case" wins every code review.

A pattern from infrastructure

The infrastructure world solved this 10 years ago. Pre-2014 you SSH-ed into a server, installed packages, edited nginx.conf, hoped you would remember to do the same on the next server. Then Terraform happened: declare the desired state in HCL, run terraform apply, and the world matches your file. State drift becomes detectable. Reproducibility becomes free.

Agent Workspace as Code (AWaC) is the same pattern, applied to the layer above your code: the rules, skills, workflows, and conventions your AI coding agent reads.

# workspace.yml
schema: workspace/1
name: my-feature
stacks:
  - core           # universal foundation
  - aws            # AWS safety + terraform parity
  - mcp            # MCP server bootstrap
  - my-product/agent-stack    # product-specific stack

Enter fullscreen mode Exit fullscreen mode

Run wsp bootstrap and the CLI:

  1. Resolves the stack shortcuts via a registry in <your-org>/agent-stack-core/awac.yml.
  2. Clones each stack repo at the latest commit on main.
  3. Composes .agents/{rules,skills,workflows}/ deterministically — last stack wins on collisions.
  4. Generates CLAUDE.md (canonical context file) and AGENTS.md (mirror for non-Claude agents).
  5. Emits a workspace.lock.yml recording exact commits.

That is the whole loop. Same workspace, every machine. No copy-paste. No drift.

What is a stack

A stack is a plain GitHub repo with this layout:

my-stack/
  awac.yml              # metadata: which product, which repos to clone
  rules/                # behavioral rules (always_on or trigger-based)
  skills/               # named procedures the agent invokes by reference
  workflows/            # multi-step processes
  templates/            # workspace.yml templates (optional)

Enter fullscreen mode Exit fullscreen mode

The reference public stacks (under getGanemo/agent-stack-*) cover universal needs (core), AWS, MCP, Cloudflare, and research/branding/thesis templates. You can publish your own — anything matching the convention is a valid stack.

Why agent-first matters

The CLI was designed from day one to be driven by agents, not humans. Concretely:

  • Every command accepts --json and emits structured output.
  • Errors carry four fields: code (stable identifier for retry logic), category (env/config/network/etc.), cause (what went wrong), remediation (what to do).

So when your agent runs wsp doctor and one of the checks fails, it sees:

{
  "code": "WSP_007",
  "category": "environment",
  "cause": "gh CLI not authenticated",
  "remediation": "Run: gh auth login"
}

Enter fullscreen mode Exit fullscreen mode

And it can either fix it (run the remediation) or escalate to the human with full context. No reading paragraphs. No guessing.

This matters more than it sounds. Anyone who has tried to make a long-running agent loop work in production knows that error-handling is 80% of the difficulty. Stable error codes are the closest thing we have to a contract between CLI and agent.

What I gave up to keep AWaC simple

A few non-features that come up regularly:

No SaaS, no hosted dashboard. The CLI is 100% local. Stacks live in your GitHub. No telemetry, no backend. ADR 014 in the docs explains why: it is optimization for adoption + thought leadership, not for revenue.

Not on PyPI yet. Distribution goes through GitHub Releases (gh release download + pipx install). The reason (ADR 012): it works for agent-driven installation paths, does not need PyPI namespace bargaining, and PyPI joins the roadmap once OSS adoption signals demand for it.

No interactive prompts in core commands. AWaC is agent-first. Anything that needs ack uses an explicit flag (--yes, --update), never a TTY prompt. Wizards are user-friendly; they are agent-hostile.

MIT, not Apache 2.0. Simpler. Sufficient. Patent grants matter for big infrastructure projects; for a workspace CLI, MIT is the right minimum.

The 14 ADRs

While building AWaC, every contentious choice generated an Architecture Decision Record. They are in the docs repo and worth a skim even if you do not adopt the tool — most of them are tradeoff discussions you will face if you build something similar.

A sample:

  • 001 — The unit of composition is the workspace, not the project, the org, or the user.
  • 004 — CLAUDE.md is canonical, AGENTS.md is a mirror. Reasoning explained.
  • 007 — The CLI is agent-first, not human-first. Implications for command surface, errors, output.
  • 010 — DevVault is a two-layer model (versioned per-product catalog + non-versioned per-machine vault path).
  • 012 — Distribution via GitHub Releases, not PyPI (for now).
  • 014 — AWaC stays open-source. No SaaS planned.

You can read all of them at github.com/getGanemo/awac-docs.

Try it

# Install
TAG=$(gh release view --repo getGanemo/workspace-cli --json tagName -q .tagName)
gh release download "$TAG" --repo getGanemo/workspace-cli --pattern '*.whl' --dir /tmp/wsp
pipx install /tmp/wsp/wsp-*.whl

# Compose a workspace
mkdir my-feature && cd my-feature
wsp init my-feature --template blank
wsp bootstrap

Enter fullscreen mode Exit fullscreen mode

Two minutes from clone to working workspace. Tell me what is wrong with it.

What I am hoping for

The thing I most want from this launch is not stars (though they are nice). It is honest feedback on the abstraction:

  • What rule of yours does not fit cleanly into a stack?
  • What composition pattern do you have that AWaC cannot express?
  • What error message confused you?
  • What stack should exist that I have not built?

If you have 5 minutes after trying it, open an issue or reply on this post. The roadmap is public (Roadmap issue) and thumbs-up reactions move things up.

Thanks for reading. Built solo, MIT, no SaaS, fork-friendly. See you in the issues.

— Fernando
github.com/GanemoCorp · ganemo.com