一键导入
setup
Getting started with Agentic — workflow, commands, and how the agent team works together.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Getting started with Agentic — workflow, commands, and how the agent team works together.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
| name | setup |
| description | Getting started with Agentic — workflow, commands, and how the agent team works together. |
| user-invocable | false |
Agentic is a multi-agent development toolkit. Eleven specialists, one orchestrator (the Lead), zero configuration.
In OpenCode, lead is installed as a visible primary agent. The specialists
are installed as hidden subagents. Talk to the Lead; the Lead deploys the team.
The Lead agent is your main thread. Start with the Lead when you want to build, fix, or improve something — it deploys the right specialists for the job.
For structured workflows, use the commands:
OpenCode: /agentic-plan Claude Code: /agentic:plan
OpenCode: /agentic-develop Claude Code: /agentic:develop
OpenCode: /agentic-review Claude Code: /agentic:review
OpenCode: /agentic-simplify Claude Code: /agentic:simplify
OpenCode: /agentic-polish Claude Code: /agentic:polish
OpenCode: /agentic-verify Claude Code: /agentic:verify
OpenCode: /agentic-commit Claude Code: /agentic:commit
OpenCode: /agentic-pr Claude Code: /agentic:pr
Plan → Develop → Review → Simplify → Verify → Commit → PR
↑
Polish (iterative loop)
/agentic-plan (OpenCode) or /agentic:plan (Claude Code) — describe what you want. The Lead asks questions, challenges
scope, and produces a plan. You approve before anything is built.
/agentic-develop (OpenCode) or /agentic:develop (Claude Code) — the Lead scouts the codebase, designs the approach,
briefs the developer, and runs review + tests.
/agentic-review (OpenCode) or /agentic:review (Claude Code) — six independent specialists fan out in parallel:
the reviewer trio (correctness, security, maintainability) and the tester trio (coverage, craft, testability).
/agentic-simplify (OpenCode) or /agentic:simplify (Claude Code) — the Refiner removes unnecessary complexity while
preserving behavior.
Polish. /agentic-polish (OpenCode) or /agentic:polish (Claude Code) is the consistency loop. It aligns the code
with established patterns, smooths out inconsistencies, and is designed for iterative runs until the codebase converges.
Review the changes yourself. Stage what looks good with git add.
/agentic-commit (OpenCode) or /agentic:commit (Claude Code) — creates the commit message from staged changes.
/agentic-pr (OpenCode) or /agentic:pr (Claude Code) — creates or updates a Pull Request.
Skip steps you don't need. Every command works independently.
No agent will ever run git add, git stash, or modify your staged files.
Staging is your responsibility. The agents write code — you decide what ships.
You don't deploy agents directly. The Lead does that based on your task:
After the developer ships code and tests, the reviewer trio and the tester trio run in parallel — six disjoint lenses on the same change. All six are advisory; the developer remains the only author. One FAIL anywhere fails the gate.
Agents use your default model unless overridden. In OpenCode, configure
per-agent models in opencode.json:
{
"agent": {
"lead": { "model": "openai/gpt-5.4" },
"scout": { "model": "anthropic/claude-haiku-4-5" },
"developer": { "model": "openai/gpt-5.4" }
}
}
Model IDs use the provider/model format. A practical setup: fast model for
the scout (reconnaissance), capable model for the lead and developer
(orchestration and implementation), default for the rest.
In Claude Code, model overrides are configured in settings.json via the
agentSettings key.
The plugin enforces quality automatically:
TODO(name) or TODO(#123)The Test Advisory output format used by all tester specialists (tester-coverage, tester-artisan, tester-architect) and understood by the Lead for synthesis. Defines sections, severity tags, dual verdict, and the specification template. Loaded whenever a task produces or consumes a Test Advisory.
Core testing principles shared across the tester specialists (tester-coverage, tester-artisan, tester-architect) and the developer agent. Defines what a good test is in this codebase. Loaded whenever a task involves writing, auditing, or specifying tests.
Shared review craft for all reviewer specialists — confidence scoring, verdict rules, output format, and the signal-over-noise discipline. Applied by every reviewer agent regardless of lens.
Code conventions and style convictions. Applied when writing, reviewing, or analyzing code. These are non-negotiable standards, not preferences.
Provides git workflow conventions including Conventional Commits, branch naming, and PR descriptions. Applied when committing, branching, or creating pull requests.
Identifies code quality anti-patterns and provides best practices. Applied when analyzing code smells, architecture decisions, complexity, or technical debt.
基于 SOC 职业分类