Files
dev_agent_team/README.md
T
Your Name 0ec44a4ee4 Add workflow-architect agent; raise team to 13 agents
- New workflow-architect subagent: FSM-first modeling with explicit
  model-selection strategy (statechart, DAG, decision tree, BPMN, Petri,
  saga, etc.), gap detection, failure/recovery as first-class, output
  spec format, and role fence vs Architect/Orchestrator.
- Orchestrator: add Workflow Architect to Specialist Map, roster,
  dispatch rule, workflow-modeling classification, handoff decision,
  final rules, and explicit dynamic agent selection (not a fixed
  pipeline).
- Installer EXPECTED_COUNT 12->13; docs/README/PROMPT_INSTALL updated;
  AgentsReport/workflow-architect seeded.
2026-09-07 01:57:59 -04:00

2.6 KiB

dev_agent_team

A distributable package of 13 opencode agent definitions plus a one-command installer, so the same agent team can be set up identically on any machine.

What this is

This repository packages a complete multi-agent team for opencode — 13 role-specialized agents that work as one system:

architect, builder, designer, detective, explorer, maintainer, orchestrator (primary), philosopher, reviewer, tester, toolsmith, workflow-architect, writer.

The agent definitions live in agents/ and are copied verbatim into your opencode config directory by scripts/install.sh. The installer is idempotent: re-running it is safe, and it backs up any pre-existing files it would overwrite into a timestamped folder under <target>/.backup/, keeping only the 5 most recent backup folders.

Repository layout

dev_agent_team/
├── README.md              # this file
├── .gitignore
├── agents/                # the 13 agent definitions (*.md)
├── scripts/
│   └── install.sh         # one-command installer
└── docs/
    └── PROMPT_INSTALL.md  # paste-ready prompt for installing from inside opencode

Quickstart

git clone git@gitea.skink-platy.ts.net:admin/dev_agent_team.git
cd dev_agent_team
./scripts/install.sh

To install somewhere other than the default location:

OPENCODE_AGENTS_DIR=/path/to/opencode/agents ./scripts/install.sh

Manual install alternative

Prefer to do it yourself? A plain copy achieves the same result:

mkdir -p ~/.config/opencode/agents
cp -p agents/*.md ~/.config/opencode/agents/

(You will not get the automatic backup of pre-existing files that scripts/install.sh provides.)

Prompt-based install

Already inside an opencode session? Copy a ready-made prompt that instructs the primary agent to clone this repo, run the installer, and verify the result: see docs/PROMPT_INSTALL.md.

Requirements

  • opencode installed (needed to actually use the agents)
  • bash and coreutils (cp, mkdir, date) — present on any Linux/macOS system
  • SSH access to the gitea host for cloning (or an HTTPS remote, if mirrored)

Verification

After installing:

  1. Restart any running opencode sessions so they pick up the new agents.

  2. Run:

    opencode agent list
    
  3. You should see exactly 13 agents: architect, builder, designer, detective, explorer, maintainer, orchestrator, philosopher, reviewer, tester, toolsmith, workflow-architect, writer.