You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See [docs/cli.md](https://github.com/stackmemoryai/stackmemory/blob/main/docs/cli.md) for the full command reference.
353
358
359
+
### Snapshot (`snapshot` / `snap`)
360
+
361
+
Capture a point-in-time snapshot of what changed on your branch — files modified, commits, and key decisions. Useful for session handoff and post-task review.
362
+
363
+
```bash
364
+
# Save a snapshot of current branch state
365
+
stackmemory snapshot save --task "add auth middleware"
366
+
367
+
# Save with explicit decisions
368
+
stackmemory snap save -d "chose JWT over session cookies" -d "switched to argon2"
369
+
370
+
# List recent snapshots
371
+
stackmemory snap list
372
+
373
+
# Show latest snapshot (or by branch)
374
+
stackmemory snap show feature/auth
375
+
```
376
+
377
+
### Pre-flight Check (`preflight` / `pf`)
378
+
379
+
Predict file overlaps before running parallel tasks. Uses git history, import graphs, and keyword matching to flag conflicts.
380
+
381
+
```bash
382
+
# Check if two tasks can safely run in parallel
383
+
stackmemory preflight "add user auth""refactor database layer"
0 commit comments