Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ container/.devcontainer/.codeforge-preserve
# CLI-specific
cli/.pytest_cache/
cli/.ruff_cache/
.codeforge/data/

# Docs-specific
docs/.astro/
Expand Down
23 changes: 16 additions & 7 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
# CodeForge CLI Changelog

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

Initial release.
Initial release. Ships with CodeForge v2.1.0.

- Session search, list, and show commands
- Plan search command
- Plugin management (list, show, enable, disable, hooks, agents, skills)
- Config apply and show commands
- AI-powered code review with 3-pass analysis (correctness, security, quality)
### Command Groups

- **`codeforge session`** — search, list, and show Claude Code session history
- **`codeforge task`** — search tasks
- **`codeforge plan`** — search plans
- **`codeforge plugin`** — manage plugins (list, show, enable, disable, hooks, agents, skills)
- **`codeforge config`** — show and apply configuration (`apply` deploys config to `~/.claude/`)
- **`codeforge index`** — build and search a codebase symbol index (build, search, show, stats, tree, clean)
- **`codeforge container`** — manage CodeForge devcontainers (up, down, rebuild, exec, ls, shell)

### Features

- Container proxy — commands auto-proxy into the running devcontainer when run from the host; use `--local` to bypass
- `--container <name>` flag to target a specific container
5 changes: 5 additions & 0 deletions cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,14 @@
"build": "bun build src/index.ts --outfile dist/codeforge.js --target bun",
"dev": "bun run src/index.ts",
"test": "bun test",
"build:binary": "bun build --compile src/index.ts --outfile dist/codeforge",
"build:binary:linux": "bun build --compile src/index.ts --outfile dist/codeforge-linux-x64 --target bun-linux-x64",
"build:binary:darwin": "bun build --compile src/index.ts --outfile dist/codeforge-darwin-arm64 --target bun-darwin-arm64",
"build:binary:darwin-x64": "bun build --compile src/index.ts --outfile dist/codeforge-darwin-x64 --target bun-darwin-x64",
"prepublishOnly": "bun run build && bun test"
},
"dependencies": {
"@devcontainers/cli": "^0.71.0",
"commander": "^13.0.0",
"chalk": "^5.4.0"
},
Expand Down
86 changes: 0 additions & 86 deletions cli/prompts/review/correctness.system.md

This file was deleted.

18 changes: 0 additions & 18 deletions cli/prompts/review/correctness.user.md

This file was deleted.

15 changes: 0 additions & 15 deletions cli/prompts/review/quality-resume.user.md

This file was deleted.

106 changes: 0 additions & 106 deletions cli/prompts/review/quality.system.md

This file was deleted.

20 changes: 0 additions & 20 deletions cli/prompts/review/quality.user.md

This file was deleted.

Loading
Loading