opencode-agile-agent 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +61 -71
- package/bin/cli.js +344 -434
- package/bin/sync-templates.js +45 -0
- package/bin/validate-templates.js +44 -6
- package/package.json +2 -1
- package/templates/.opencode/ARCHITECTURE.md +82 -368
- package/templates/.opencode/README.md +110 -391
- package/templates/.opencode/agents/api-designer.md +45 -312
- package/templates/.opencode/agents/backend-specialist.md +46 -214
- package/templates/.opencode/agents/code-archaeologist.md +45 -260
- package/templates/.opencode/agents/context-gatherer.md +51 -0
- package/templates/.opencode/agents/database-architect.md +45 -212
- package/templates/.opencode/agents/debugger.md +45 -302
- package/templates/.opencode/agents/developer.md +45 -523
- package/templates/.opencode/agents/devops-engineer.md +45 -253
- package/templates/.opencode/agents/documentation-writer.md +45 -247
- package/templates/.opencode/agents/explorer-agent.md +49 -233
- package/templates/.opencode/agents/feature-lead.md +62 -302
- package/templates/.opencode/agents/frontend-specialist.md +46 -186
- package/templates/.opencode/agents/game-developer.md +45 -391
- package/templates/.opencode/agents/mobile-developer.md +45 -264
- package/templates/.opencode/agents/orchestrator.md +48 -463
- package/templates/.opencode/agents/penetration-tester.md +44 -254
- package/templates/.opencode/agents/performance-optimizer.md +45 -292
- package/templates/.opencode/agents/pr-reviewer.md +45 -468
- package/templates/.opencode/agents/product-manager.md +46 -225
- package/templates/.opencode/agents/project-planner.md +45 -248
- package/templates/.opencode/agents/qa-automation-engineer.md +45 -275
- package/templates/.opencode/agents/security-auditor.md +44 -258
- package/templates/.opencode/agents/seo-specialist.md +45 -266
- package/templates/.opencode/agents/system-analyst.md +48 -428
- package/templates/.opencode/agents/test-engineer.md +45 -229
- package/templates/.opencode/archive/README.md +24 -0
- package/templates/.opencode/commands/brainstorm.md +10 -0
- package/templates/.opencode/commands/create.md +11 -0
- package/templates/.opencode/commands/debug.md +10 -0
- package/templates/.opencode/commands/plan.md +9 -0
- package/templates/.opencode/commands/review.md +11 -0
- package/templates/.opencode/commands/status.md +9 -0
- package/templates/.opencode/commands/test.md +10 -0
- package/templates/.opencode/skills/api-patterns/SKILL.md +25 -149
- package/templates/.opencode/skills/brainstorming/SKILL.md +26 -242
- package/templates/.opencode/skills/clean-code/SKILL.md +27 -339
- package/templates/.opencode/skills/code-philosophy/SKILL.md +27 -499
- package/templates/.opencode/skills/context-archive/SKILL.md +47 -0
- package/templates/.opencode/skills/context-gathering/SKILL.md +51 -0
- package/templates/.opencode/skills/frontend-design/SKILL.md +26 -224
- package/templates/.opencode/skills/intelligent-routing/SKILL.md +25 -182
- package/templates/.opencode/skills/parallel-agents/SKILL.md +25 -261
- package/templates/.opencode/skills/plan-writing/SKILL.md +28 -238
- package/templates/.opencode/skills/redteam-validation/SKILL.md +33 -0
- package/templates/.opencode/skills/security-gate/SKILL.md +33 -0
- package/templates/.opencode/skills/systematic-debugging/SKILL.md +25 -197
- package/templates/.opencode/skills/testing-patterns/SKILL.md +25 -238
- package/templates/AGENTS.template.md +300 -426
- package/templates/.opencode/agents/product-owner.md +0 -264
- package/templates/.opencode/workflows/brainstorm.md +0 -110
- package/templates/.opencode/workflows/create.md +0 -108
- package/templates/.opencode/workflows/debug.md +0 -128
- package/templates/.opencode/workflows/deploy.md +0 -160
- package/templates/.opencode/workflows/enhance.md +0 -253
- package/templates/.opencode/workflows/orchestrate.md +0 -130
- package/templates/.opencode/workflows/plan.md +0 -163
- package/templates/.opencode/workflows/review.md +0 -135
- package/templates/.opencode/workflows/status.md +0 -102
- package/templates/.opencode/workflows/test.md +0 -146
package/README.md
CHANGED
|
@@ -1,71 +1,61 @@
|
|
|
1
|
-
# opencode-agile-agent
|
|
2
|
-
|
|
3
|
-
Scaffold OpenCode
|
|
4
|
-
|
|
5
|
-
## Quick Start
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
##
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
-
|
|
56
|
-
|
|
57
|
-
##
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
-
|
|
62
|
-
|
|
63
|
-
## Validate Template Before Publish
|
|
64
|
-
|
|
65
|
-
```bash
|
|
66
|
-
node bin/validate-templates.js
|
|
67
|
-
```
|
|
68
|
-
|
|
69
|
-
## License
|
|
70
|
-
|
|
71
|
-
MIT
|
|
1
|
+
# opencode-agile-agent
|
|
2
|
+
|
|
3
|
+
Scaffold the OpenCode spec-driven agent kit into any project with one confirmation.
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
- `npx opencode-agile-agent`
|
|
7
|
+
- `npx opencode-agile-agent@latest`
|
|
8
|
+
- `npx create-opencode-agile`
|
|
9
|
+
|
|
10
|
+
## Install Flow
|
|
11
|
+
- The installer asks one yes/no question.
|
|
12
|
+
- Framework, language, and project name are auto-detected.
|
|
13
|
+
- Confirmed installs copy `.opencode` and generate `AGENTS.md`.
|
|
14
|
+
- Declining exits immediately.
|
|
15
|
+
|
|
16
|
+
## What Gets Installed
|
|
17
|
+
- 25 agents
|
|
18
|
+
- 14 skills
|
|
19
|
+
- 7 commands
|
|
20
|
+
- Shared rules, docs, and project config
|
|
21
|
+
|
|
22
|
+
## Custom Commands
|
|
23
|
+
- `.opencode/commands/*.md` holds the slash commands.
|
|
24
|
+
- Each command uses Markdown frontmatter plus a prompt body, matching OpenCode's command format.
|
|
25
|
+
- The command set is `brainstorm`, `create`, `debug`, `plan`, `review`, `status`, and `test`.
|
|
26
|
+
|
|
27
|
+
## Design Notes
|
|
28
|
+
- Skills are compact, philosophy-first, and loaded by intent.
|
|
29
|
+
- `security-gate` decides when a change needs a security gate or redteam phase.
|
|
30
|
+
- `redteam-validation` simulates attacker behavior and proves exploitability.
|
|
31
|
+
- `qa-automation-engineer` is support-only for harness and CI plumbing, not the default test path.
|
|
32
|
+
- `orchestrator` is optional; default routing stays with `feature-lead` and the owning specialists.
|
|
33
|
+
- The compact planning bundle is proposal.md, goal.md, spec.md, task.md, and important.md.
|
|
34
|
+
- `@feature-lead` is the primary entry point; the rest are subagents.
|
|
35
|
+
- Completed feature bundles are archived in `.opencode/archive/<feature-slug>/`.
|
|
36
|
+
|
|
37
|
+
## Spec-Driven Flow
|
|
38
|
+
- `@feature-lead` is the primary entry point.
|
|
39
|
+
- `@context-gatherer` maps the current project before any planning or proof.
|
|
40
|
+
- `@project-planner` and `@system-analyst` build `proposal.md`, `goal.md`, `spec.md`, `task.md`, and `important.md`.
|
|
41
|
+
- `@developer` implements the approved spec.
|
|
42
|
+
- `@test-engineer`, `@security-auditor`, `@penetration-tester`, and `@pr-reviewer` close the loop.
|
|
43
|
+
- `@feature-lead` archives the completed bundle in `.opencode/archive/<feature-slug>/`.
|
|
44
|
+
|
|
45
|
+
## Template Source Of Truth
|
|
46
|
+
- `templates/.opencode` mirrors the project kit.
|
|
47
|
+
- Use `node bin/sync-templates.js` after editing `.opencode`.
|
|
48
|
+
|
|
49
|
+
## Requirements
|
|
50
|
+
- Node.js 16+
|
|
51
|
+
|
|
52
|
+
## Development Notes
|
|
53
|
+
- Main CLI: `bin/cli.js`
|
|
54
|
+
- Template validator: `bin/validate-templates.js`
|
|
55
|
+
- Template sync: `bin/sync-templates.js`
|
|
56
|
+
|
|
57
|
+
## Validate Template Before Publish
|
|
58
|
+
- `node bin/validate-templates.js`
|
|
59
|
+
|
|
60
|
+
## License
|
|
61
|
+
- MIT
|