Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ Plus `--resume` (pick up an interrupted setup), `--dry-run` (preview without wri
|---|---|
| **`atom-setup`** | Interactive wizard (Node + clack). 4 modes: `--bare` / `--minimal` / default / `--full`. 10 sections cover project basics, stack, license, Docker tier, CI, git. Pre-flight detection, smart defaults, resumable state. Git section creates a GitHub repo via `gh` and pushes — no manual step. |
| **`atom upgrade`** | Keeps atom itself up to date. Detects your install, polls `VERSION` upstream, runs `git pull --ff-only` + re-installs all CLIs. `atom upgrade --check` polls without installing. |
| **`/atom-new` skill** | Bootstrap a new project from inside Claude Code — type `/atom-new` in any session and Claude drives the same wizard conversationally, no terminal round-trip. Install symlinks it into `~/.claude/skills/`; `atom upgrade`'s git pull refreshes it for free. |
| **`nucleus`** | Your **memory** — raw notes from every session, project-tagged, captured fast. Lives at `~/.atom/nucleus/`. JSONL storage with versioned schema migrations, keyword + structured filter search. Optionally synced to your own private GitHub repo. |
| **`learnings`** | Your **playbook** — patterns you've decided to carry forward. Lives at `~/.atom/learnings/`. Auto-copied into every new project you bootstrap (filtered by stack tags). Optionally synced to your own private GitHub repo. |
| **`model-race`** | Parallel AI model comparison via Git worktrees. Race the same spec through claude/codex/gemini, score with weighted metrics, optional LLM judge, merge the winner. |
Expand Down Expand Up @@ -268,6 +269,9 @@ atom/
│ ├── learnings/ Your playbook CLI
│ └── model-race/ Parallel AI model comparison via Git worktrees
├── skills/ Global Claude Code skills, symlinked into ~/.claude/skills/
│ └── atom-new/ `/atom-new` — bootstrap a project conversationally
├── scripts/ Maintenance scripts (e.g. copy-learnings.mjs, test-atom-setup.sh)
└── extras/ Opt-in stack presets, copied based on user choice
Expand Down
Loading