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
wm seed <paths> - scan and preview TLDR insertions
wm seed <paths> --write - apply insertions
wm seed <paths> --json - output plan as JSON/JSONL
Respects config ignore paths
Idempotent - skips files with existing TLDRs
Help text in registry.ts
Tests in seed.test.ts
Example Output
$ wm seed src/
Would insert TLDRs in 15 files:
src/auth.ts:1 → "handles user authentication and JWT tokens"
src/database.ts:1 → "postgres connection and query builders"
...
Run with --write to apply changes.
Context
Part of deterministic repo initialization (#91). Orchestrate scan → plan → apply workflow.
Scope
wm seedcommand (orwm init --seed)--writeto applyskip_paths, ignore patterns, one-TLDR-per-file ruleAcceptance Criteria
wm seed <paths>- scan and preview TLDR insertionswm seed <paths> --write- apply insertionswm seed <paths> --json- output plan as JSON/JSONLseed.test.tsExample Output
Dependencies
Related
Parent: #91