Skip to content

Commit 750af19

Browse files
authored
Release prep: CLI v0.1.0, spec workflow v2, scope guard fixes, docs sweep (#58)
CLI (experimental): - Add index command group (build, search, show, stats, tree, clean) - Add container command group (up, down, rebuild, exec, ls, shell) - Add container proxy — auto-proxies into devcontainer from host - Remove review command (never shipped) - Mark CLI as experimental in all metadata and docs Container (v2.1.0 + v2.1.1): - Spec workflow v2 "Spec Packages" — 8 commands replaced with 3 - Scope guard: fix /dev/null false positive, fix CWD drift - Updated agents, skills, system prompts, and config Docs: - Add CLI commands to reference, tools, and changelog pages - Sync docs changelog with container CHANGELOG (v2.1.0, v2.1.1) - Update spec workflow, agents, skills, and rules docs Co-authored-by: AnExiledDev <AnExiledDev@users.noreply.github.com>
1 parent bd6eff9 commit 750af19

File tree

122 files changed

+6483
-4977
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+6483
-4977
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ container/.devcontainer/.codeforge-preserve
5252
# CLI-specific
5353
cli/.pytest_cache/
5454
cli/.ruff_cache/
55+
.codeforge/data/
5556

5657
# Docs-specific
5758
docs/.astro/

cli/CHANGELOG.md

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
# CodeForge CLI Changelog
22

3-
## v0.1.0 — 2026-03-05
3+
## v0.1.0 — 2026-03-14 (Experimental)
44

5-
Initial release.
5+
Initial release. Ships with CodeForge v2.1.0.
66

7-
- Session search, list, and show commands
8-
- Plan search command
9-
- Plugin management (list, show, enable, disable, hooks, agents, skills)
10-
- Config apply and show commands
11-
- AI-powered code review with 3-pass analysis (correctness, security, quality)
7+
### Command Groups
8+
9+
- **`codeforge session`** — search, list, and show Claude Code session history
10+
- **`codeforge task`** — search tasks
11+
- **`codeforge plan`** — search plans
12+
- **`codeforge plugin`** — manage plugins (list, show, enable, disable, hooks, agents, skills)
13+
- **`codeforge config`** — show and apply configuration (`apply` deploys config to `~/.claude/`)
14+
- **`codeforge index`** — build and search a codebase symbol index (build, search, show, stats, tree, clean)
15+
- **`codeforge container`** — manage CodeForge devcontainers (up, down, rebuild, exec, ls, shell)
16+
17+
### Features
18+
19+
- Container proxy — commands auto-proxy into the running devcontainer when run from the host; use `--local` to bypass
20+
- `--container <name>` flag to target a specific container

cli/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,14 @@
1818
"build": "bun build src/index.ts --outfile dist/codeforge.js --target bun",
1919
"dev": "bun run src/index.ts",
2020
"test": "bun test",
21+
"build:binary": "bun build --compile src/index.ts --outfile dist/codeforge",
22+
"build:binary:linux": "bun build --compile src/index.ts --outfile dist/codeforge-linux-x64 --target bun-linux-x64",
23+
"build:binary:darwin": "bun build --compile src/index.ts --outfile dist/codeforge-darwin-arm64 --target bun-darwin-arm64",
24+
"build:binary:darwin-x64": "bun build --compile src/index.ts --outfile dist/codeforge-darwin-x64 --target bun-darwin-x64",
2125
"prepublishOnly": "bun run build && bun test"
2226
},
2327
"dependencies": {
28+
"@devcontainers/cli": "^0.71.0",
2429
"commander": "^13.0.0",
2530
"chalk": "^5.4.0"
2631
},

cli/prompts/review/correctness.system.md

Lines changed: 0 additions & 86 deletions
This file was deleted.

cli/prompts/review/correctness.user.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

cli/prompts/review/quality-resume.user.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

cli/prompts/review/quality.system.md

Lines changed: 0 additions & 106 deletions
This file was deleted.

cli/prompts/review/quality.user.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)