meto-cli 0.1.4 → 0.1.5
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
CHANGED
|
@@ -27,6 +27,7 @@ After running `meto-cli init`, your new project comes pre-loaded with everything
|
|
|
27
27
|
- **Agent definitions** -- PM, developer, and tester agents configured to follow your methodology from day one
|
|
28
28
|
- **Product context** -- your vision, tech stack, and decisions captured in structured files so every session starts with shared context
|
|
29
29
|
- **Epics and workflows** -- definition of done, commit conventions, and an epic backlog to plan against
|
|
30
|
+
- **Agent Teams ready** -- three agents configured to work in parallel with file ownership boundaries
|
|
30
31
|
- **Token optimized** -- generated files are optimized for token consumption with Claude Code, so every session gets more productive output per dollar spent
|
|
31
32
|
|
|
32
33
|
No more hours of manual setup. No more "I forgot to write the CLAUDE.md." It is all there from the start.
|
|
@@ -42,10 +43,11 @@ your-project/
|
|
|
42
43
|
│ │ ├── developer-agent.md
|
|
43
44
|
│ │ ├── pm-agent.md
|
|
44
45
|
│ │ └── tester-agent.md
|
|
45
|
-
│
|
|
46
|
-
│
|
|
47
|
-
│
|
|
48
|
-
│
|
|
46
|
+
│ ├── agent-memory/
|
|
47
|
+
│ │ ├── meto-developer/MEMORY.md
|
|
48
|
+
│ │ ├── meto-pm/MEMORY.md
|
|
49
|
+
│ │ └── meto-tester/MEMORY.md
|
|
50
|
+
│ └── settings.json
|
|
49
51
|
├── ai/
|
|
50
52
|
│ ├── backlog/
|
|
51
53
|
│ │ └── epics.md
|
|
@@ -70,12 +72,33 @@ your-project/
|
|
|
70
72
|
|
|
71
73
|
---
|
|
72
74
|
|
|
75
|
+
## Agent Teams
|
|
76
|
+
|
|
77
|
+
Agent Teams is a Claude Code feature where multiple AI agents work in parallel on the same codebase, each with a specialized role.
|
|
78
|
+
|
|
79
|
+
Meto scaffolds projects ready for Agent Teams out of the box:
|
|
80
|
+
|
|
81
|
+
- **Three pre-configured agents** -- PM for planning, developer for building, tester for validation
|
|
82
|
+
- **File ownership boundaries** -- each agent writes only to its designated files, preventing conflicts when running in parallel
|
|
83
|
+
- **Feature enabled automatically** -- `.claude/settings.json` sets the experimental flag so Agent Teams works immediately
|
|
84
|
+
|
|
85
|
+
**To activate:** start `claude` in your project, then say:
|
|
86
|
+
|
|
87
|
+
> "Create an agent team with @meto-pm for planning, @meto-developer for building, @meto-tester for validation"
|
|
88
|
+
|
|
89
|
+
**Display modes:** use Shift+Down to cycle between agents in-process, or run each agent in its own split pane (tmux/iTerm2).
|
|
90
|
+
|
|
91
|
+
This feature is experimental and enabled via `.claude/settings.json` in the scaffold.
|
|
92
|
+
|
|
93
|
+
---
|
|
94
|
+
|
|
73
95
|
## Next Steps
|
|
74
96
|
|
|
75
97
|
1. `cd your-project`
|
|
76
98
|
2. Open the project in your editor
|
|
77
99
|
3. Start a Claude Code session and call `@meto-pm` to populate your backlog
|
|
78
|
-
4.
|
|
100
|
+
4. Or spawn an agent team: tell Claude to create a team with @meto-pm, @meto-developer, and @meto-tester
|
|
101
|
+
5. Pick your first task and start building
|
|
79
102
|
|
|
80
103
|
---
|
|
81
104
|
|
package/package.json
CHANGED
|
@@ -29,6 +29,12 @@ Update `.claude/agent-memory/meto-developer/MEMORY.md` with anything worth remem
|
|
|
29
29
|
- Add features not in the acceptance criteria
|
|
30
30
|
- Commit with `console.log`, `any` types, or commented-out code
|
|
31
31
|
|
|
32
|
+
## Parallel Operation
|
|
33
|
+
When running as a teammate: you read CLAUDE.md and this file fresh -- you do NOT have the lead's conversation history.
|
|
34
|
+
Only write files listed under "What I Own".
|
|
35
|
+
When a task is ready for testing, message @meto-tester directly (e.g., "tell @meto-tester slice-X is in testing").
|
|
36
|
+
Never write to `/ai/backlog/`, `/ai/context/`, `tasks-backlog.md`, `tasks-todo.md`, or `tasks-done.md`.
|
|
37
|
+
|
|
32
38
|
## Task Pickup Protocol
|
|
33
39
|
1. Read `tasks-todo.md` — take TOP item
|
|
34
40
|
2. Copy full task block to `tasks-in-progress.md`, add `Started: [date]`
|
|
@@ -38,6 +38,12 @@ If `/ai/backlog/epics.md` has no real epics yet:
|
|
|
38
38
|
- Make technical architecture decisions
|
|
39
39
|
- Run bash commands
|
|
40
40
|
|
|
41
|
+
## Parallel Operation
|
|
42
|
+
When running as a teammate: you read CLAUDE.md and this file fresh -- you do NOT have the lead's conversation history.
|
|
43
|
+
Only write files listed under "What I Own".
|
|
44
|
+
If you need developer or tester action, message them directly (e.g., "tell @meto-developer the backlog is ready").
|
|
45
|
+
Never write to `/src/`, `tasks-in-progress.md`, `tasks-in-testing.md`, or `tasks-done.md`.
|
|
46
|
+
|
|
41
47
|
## Task Definition Format
|
|
42
48
|
|
|
43
49
|
```markdown
|
|
@@ -28,6 +28,13 @@ Update `.claude/agent-memory/meto-tester/MEMORY.md` with patterns worth remember
|
|
|
28
28
|
- Process items in parallel — always sequential
|
|
29
29
|
- Skip any validation check
|
|
30
30
|
|
|
31
|
+
## Parallel Operation
|
|
32
|
+
When running as a teammate: you read CLAUDE.md and this file fresh -- you do NOT have the lead's conversation history.
|
|
33
|
+
Only write files listed under "What I Own".
|
|
34
|
+
When validation is complete, message the lead or @meto-developer directly with the result.
|
|
35
|
+
Never write to `/src/`, `/ai/backlog/`, `/ai/context/`, `tasks-backlog.md`, or `tasks-in-progress.md`.
|
|
36
|
+
Process items sequentially even when other agents run in parallel.
|
|
37
|
+
|
|
31
38
|
## Validation Protocol
|
|
32
39
|
ONE item at a time — parallel writes corrupt the board. Always sequential.
|
|
33
40
|
|
package/templates/CLAUDE.md
CHANGED
|
@@ -44,6 +44,26 @@ See `/ai/workflows/definition-of-done.md` for done criteria.
|
|
|
44
44
|
|
|
45
45
|
---
|
|
46
46
|
|
|
47
|
+
## Agent Teams
|
|
48
|
+
|
|
49
|
+
This project supports Agent Teams. The lead agent can spawn teammates using `@meto-pm`, `@meto-developer`, `@meto-tester`.
|
|
50
|
+
|
|
51
|
+
**Coordination model:** Agent Teams has its own task system, but this project uses the kanban board (`tasks-backlog` through `tasks-done`) as the single source of truth for task state. Teammates must read and update the board files, not rely on Agent Teams' internal task tracking.
|
|
52
|
+
|
|
53
|
+
**File ownership is exclusive -- two teammates editing the same file causes overwrites.**
|
|
54
|
+
|
|
55
|
+
| Agent | Writes |
|
|
56
|
+
|---|---|
|
|
57
|
+
| `@meto-pm` | `/ai/` files, `tasks-backlog.md`, `tasks-todo.md` |
|
|
58
|
+
| `@meto-developer` | `/src/`, config files, `tasks-in-progress.md`, `tasks-in-testing.md` |
|
|
59
|
+
| `@meto-tester` | `tasks-in-testing.md`, `tasks-done.md`, `tasks-todo.md` (failed items) |
|
|
60
|
+
|
|
61
|
+
Each agent writes only its own memory file in `.claude/agent-memory/` -- never another agent's.
|
|
62
|
+
|
|
63
|
+
Teammates do NOT inherit the lead's conversation history. Each teammate reads CLAUDE.md and its agent definition fresh.
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
47
67
|
## Commit Format
|
|
48
68
|
|
|
49
69
|
```
|