meto-cli 0.7.4 → 0.7.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meto-cli",
3
- "version": "0.7.4",
3
+ "version": "0.7.5",
4
4
  "description": "Scaffold structured software projects with built-in methodology",
5
5
  "type": "module",
6
6
  "bin": {
@@ -67,3 +67,9 @@ If task is larger than estimated mid-implementation:
67
67
  2. Move back to `tasks-todo.md` with note: `NEEDS RE-SLICING: [reason]`
68
68
  3. Delete from `tasks-in-progress.md`
69
69
  4. Notify user
70
+
71
+ ## End of Epic
72
+ When the last slice of an epic moves to done:
73
+ 1. Commit and push all work
74
+ 2. Update your memory file with patterns learned
75
+ 3. Tell the user: **"Epic complete. Start a new session for the next epic — fresh context = better results."**
@@ -81,4 +81,8 @@ Move only when:
81
81
  End every planning session with:
82
82
 
83
83
  Sprint [N] is ready. [X] tasks in tasks-todo.md.
84
- → Call @meto-developer to start building.
84
+ → Call @meto-developer to start building.
85
+
86
+ When all slices of an epic are in `tasks-done.md`, tell the user:
87
+
88
+ Epic [N] complete! Consider starting a new session for the next epic — fresh context keeps agents sharp.
@@ -23,8 +23,31 @@ Each agent has a memory file in `.claude/agent-memory/` — read at session star
23
23
 
24
24
  ---
25
25
 
26
- ## Getting Started
27
- Scaffolded by Meto. Call @meto-pm to populate backlog, then @meto-developer to build.
26
+ ## Daily Workflow
27
+
28
+ ```
29
+ cd your-project && claude # start a session
30
+ → @meto-pm # plan: populate backlog, slice epics
31
+ → @meto-developer # build: picks from todo, implements, commits
32
+ → @meto-tester # validate: M/L slices only
33
+ /compact # compress context when it feels heavy
34
+ Esc Esc → /rewind # undo if something went wrong
35
+ ```
36
+
37
+ - **One session per epic/feature** — start fresh when you finish an epic
38
+ - **Commit frequently** — don't let work pile up uncommitted
39
+ - **`/compact` early** — don't wait for context to degrade, compress proactively
40
+ - **New session signs:** sluggish responses, repeated file reads, agent forgetting prior work
41
+
42
+ ## Quick Reference
43
+
44
+ | Shortcut | What it does |
45
+ |---|---|
46
+ | `Shift+Tab+Tab` | Switch to Plan Mode (think before building) |
47
+ | `Shift+Tab` | Toggle Auto Accept |
48
+ | `Tab` | Toggle extended thinking |
49
+ | `/compact` | Compress context window |
50
+ | `Esc Esc` | Open rewind menu |
28
51
 
29
52
  ---
30
53