Drop-in operational infrastructure for any project with multi-agent development.
# From your project root
git clone https://github.com/ArgentAIOS/ops-template .ops-tmp
cp -r .ops-tmp/ops ./ops
rm -rf .ops-tmp
# Or one-liner
curl -fsSL https://github.com/ArgentAIOS/ops-template/archive/main.tar.gz | tar xz --strip=1 -C /tmp/ops-tpl && cp -r /tmp/ops-tpl/ops ./ops && rm -rf /tmp/ops-tplThen add to your CLAUDE.md or AGENTS.md:
## Operations Hub (Mandatory — Read First)
**Before writing any code, read `ops/README.md`.**ops/
├── README.md ← "Start here" for every agent session
├── log/JOURNAL.md ← Timestamped agent activity log
├── projects/ACTIVE.md ← Sprint board — what's in flight
├── rules/
│ ├── never-do.md Hard rules that override everything
│ ├── branching.md Branch naming + merge conventions
│ ├── tagging.md Release tag conventions
│ ├── linear.md Linear issue tracker integration
│ └── agent-coordination.md Multi-agent conflict resolution
├── runbooks/
│ └── (empty — add your own)
└── slices/REGISTRY.md ← Branch/file ownership registry
After copying, you should:
- Edit
ops/rules/never-do.md— add project-specific hard rules - Edit
ops/rules/branching.md— adjust branch prefixes for your team - Add runbooks — document your project's repeatable processes
- Create your first project in
ops/projects/
MIT