Uncommitted is a local-first TypeScript/Node.js CLI for generating AI coworker diary drafts from Git activity and manual notes.
This project is in its initial CLI bootstrap phase. Commands are routed, but feature implementations are intentionally not included yet.
pnpm installpnpm test
pnpm build
pnpm dev -- --help- macOS (Apple Silicon or Intel)
- Node.js >=22.13.0 (
node --versionto verify) - pnpm 10.10.0 (
pnpm --versionto verify; install vianpm i -g pnpm@10.10.0)
npm install -g @sangchu04/uncommitted
uncommitted --help# 1. Clone and enter the repo
git clone https://github.com/james20140802/uncommitted.git
cd uncommitted
# 2. Install dependencies and build
pnpm install
pnpm build
# 3. Pack and install from the tarball into a temp dir (smoke-tested flow)
pnpm release:smoke
# Or install the tarball into your own project / global location:
npm pack
# → produces sangchu04-uncommitted-0.1.1.tgz
pnpm add -g file:./sangchu04-uncommitted-0.1.1.tgz
uncommitted --help# From the repo root (after pnpm install && pnpm build):
pnpm link --global
uncommitted --helpuncommitted --help
uncommitted initSee docs/release/MVP-CHECKLIST.md for the full pre-tag release checklist and docs/release/CI-WORKFLOW.md for the GitHub Actions release artifact workflow.
The MVP is macOS-first and outputs local drafts, metadata, captions, safety reports, and 4:5 Instagram carousel PNGs. It does not auto-publish.
uncommitted export instagram writes Instagram-ready output to:
~/Uncommitted/exports/instagram/<date>/<rev>/
This sits sibling to drafts/, not inside it. Prior versions wrote to ~/Uncommitted/drafts/exports/instagram/...; that legacy location is no longer used.
If you previously ran uncommitted export instagram and have content under ~/Uncommitted/drafts/exports/..., Uncommitted will not auto-migrate it. To clean up:
-
Run
uncommitted doctor— it will surface aLegacy export directorywarning when the old path exists, including the source and target paths. -
Either move the contents to the new path:
mv ~/Uncommitted/drafts/exports/instagram ~/Uncommitted/exports/instagram
or delete the legacy directory:
rm -rf ~/Uncommitted/drafts/exports -
Re-run
uncommitted doctorto confirm the warning is gone.
Future exports always write to the new sibling location; there is no silent fallback to the legacy path.