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
Rename all three packages under the @CoreDirective NPM org:
- codeforge-dev → @coredirective/cf-container
- codeforge-dev-cli → @coredirective/cf-cli
- codeforge-dashboard → @coredirective/cf-dash
Add publishConfig with public access for scoped publishing.
Update all install commands, badge URLs, npm links, and docs
references across 19 files. CLI command names unchanged.
Copy file name to clipboardExpand all lines: container/.devcontainer/CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,12 @@
2
2
3
3
## v2.1.0 — 2026-03-25
4
4
5
+
### Package Rename
6
+
7
+
-**`codeforge-dev`** has been renamed to **`@coredirective/cf-container`** on npm
8
+
- Install via: `npx @coredirective/cf-container`
9
+
- The old `codeforge-dev` package name is deprecated
10
+
5
11
### CLI
6
12
7
13
-**`codeforge proxy`** — launch Claude Code through mitmproxy for full API traffic inspection. Starts mitmweb in the background, proxies all Claude API requests through it, and opens a browser UI at `http://localhost:8081` for real-time request/response inspection. Auto-installs mitmproxy via pipx on first use, handles CA certificate generation and system trust store installation. Supports `--no-web` for headless mitmdump output, `--setup` for install-only, and `-- <claude-args>` passthrough. Useful for monitoring token usage, cache behavior, and rate limit utilization — the `anthropic-ratelimit-unified-*` response headers on `/v1/messages` requests show 5-hour and 7-day quota utilization even with long-lived auth tokens.
Copy file name to clipboardExpand all lines: container/package.json
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
1
{
2
-
"name": "codeforge-dev",
2
+
"name": "@coredirective/cf-container",
3
+
"publishConfig": {
4
+
"access": "public"
5
+
},
3
6
"version": "2.1.0",
4
7
"description": "Complete development container that sets up Claude Code with modular devcontainer features, modern dev tools, and persistent configurations. Drop it into any project and get a production-ready AI development environment in minutes.",
0 commit comments