@anthropologies/claudestory 0.1.2 → 0.1.4
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 +25 -4
- package/dist/cli.js +637 -27
- package/dist/index.d.ts +604 -1
- package/dist/index.js +517 -14
- package/dist/mcp.js +690 -18
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -125,17 +125,38 @@ Set `CLAUDESTORY_PROJECT_ROOT` to your project root (the directory containing `.
|
|
|
125
125
|
| `claudestory_handover_get` | Specific handover |
|
|
126
126
|
| `claudestory_blocker_list` | List blockers |
|
|
127
127
|
| `claudestory_validate` | Integrity checks |
|
|
128
|
+
| `claudestory_recap` | Session diff + suggested actions |
|
|
129
|
+
| `claudestory_snapshot` | Save state for session diffs |
|
|
130
|
+
| `claudestory_export` | Self-contained project document |
|
|
128
131
|
|
|
129
|
-
## Session
|
|
132
|
+
## Session Lifecycle
|
|
130
133
|
|
|
131
|
-
|
|
134
|
+
### Session Start (recommended hook)
|
|
135
|
+
|
|
136
|
+
Auto-inject project recap at session start — shows what changed since last snapshot and what to work on next:
|
|
132
137
|
|
|
133
138
|
```bash
|
|
134
139
|
#!/bin/bash
|
|
135
|
-
claudestory
|
|
140
|
+
claudestory recap --format md 2>/dev/null
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
### Session End
|
|
144
|
+
|
|
145
|
+
Save a snapshot before ending your session so the next `recap` can show diffs:
|
|
146
|
+
|
|
147
|
+
```bash
|
|
148
|
+
claudestory snapshot
|
|
136
149
|
```
|
|
137
150
|
|
|
138
|
-
|
|
151
|
+
### Export
|
|
152
|
+
|
|
153
|
+
Generate a self-contained document for sharing:
|
|
154
|
+
|
|
155
|
+
```bash
|
|
156
|
+
claudestory export --phase p5b # single phase
|
|
157
|
+
claudestory export --all # entire project
|
|
158
|
+
claudestory export --all --format json # structured JSON
|
|
159
|
+
```
|
|
139
160
|
|
|
140
161
|
## Library Usage
|
|
141
162
|
|