Skip to content

Commit 7c918ad

Browse files
committed
Migrate NPM packages to @CoreDirective org scope
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.
1 parent 38b2c90 commit 7c918ad

File tree

19 files changed

+83
-41
lines changed

19 files changed

+83
-41
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ body:
1616
label: Steps to Reproduce
1717
description: Steps to reproduce the behavior
1818
placeholder: |
19-
1. Run `npx codeforge-dev`
19+
1. Run `npx @coredirective/cf-container`
2020
2. Open in container
2121
3. ...
2222
validations:
@@ -34,7 +34,7 @@ body:
3434
id: version
3535
attributes:
3636
label: CodeForge Version
37-
description: "Run `npm view codeforge-dev version` or check package.json"
37+
description: "Run `npm view @coredirective/cf-container version` or check package.json"
3838
placeholder: "1.14.2"
3939
validations:
4040
required: true

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Monorepo for CodeForge — an AI-powered development environment for Claude Code
66

77
| Package | Description | Version |
88
|---------|-------------|---------|
9-
| [`container/`](container/) | CodeForge DevContainer (`codeforge-dev` on npm) | 2.1.0 |
9+
| [`container/`](container/) | CodeForge DevContainer (`@coredirective/cf-container` on npm) | 2.1.0 |
1010
| [`cli/`](cli/) | CodeForge CLI (`codeforge-cli`) | 0.1.0 |
1111
| [`dashboard/`](dashboard/) | Session analytics dashboard (Svelte 5 SPA + Bun backend) ||
1212
| [`docs/`](docs/) | Documentation site ([codeforge.core-directive.com](https://codeforge.core-directive.com)) ||
@@ -15,7 +15,7 @@ Monorepo for CodeForge — an AI-powered development environment for Claude Code
1515

1616
```bash
1717
# Install the devcontainer into any project
18-
npx codeforge-dev
18+
npx @coredirective/cf-container
1919
```
2020

2121
See [`container/README.md`](container/README.md) for full setup instructions, prerequisites, and usage.
@@ -43,7 +43,7 @@ See [`CLAUDE.md`](CLAUDE.md) for branching strategy and development rules.
4343
## Links
4444

4545
- [Documentation](https://codeforge.core-directive.com)
46-
- [npm package](https://www.npmjs.com/package/codeforge-dev)
46+
- [npm package](https://www.npmjs.com/package/@coredirective/cf-container)
4747
- [GitHub](https://github.com/AnExiledDev/CodeForge)
4848
- [Changelog](container/.devcontainer/CHANGELOG.md)
4949

cli/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

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

5+
### Package Rename
6+
7+
- **`codeforge-dev-cli`** has been renamed to **`@coredirective/cf-cli`** on npm
8+
- Install via: `npm install -g @coredirective/cf-cli`
9+
- The old `codeforge-dev-cli` package name is deprecated
10+
511
Initial release. Ships with CodeForge v2.1.1.
612

713
### Command Groups

cli/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ CLI for CodeForge development workflows. Manages sessions, plugins, configuratio
77
## Install
88

99
```bash
10-
npm install -g codeforge-dev-cli
10+
npm install -g @coredirective/cf-cli
1111
```
1212

1313
Requires [Bun](https://bun.sh) runtime.

cli/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
2-
"name": "codeforge-dev-cli",
2+
"name": "@coredirective/cf-cli",
3+
"publishConfig": {
4+
"access": "public"
5+
},
36
"version": "0.1.0",
47
"description": "CLI for CodeForge development workflows",
58
"keywords": [

container/.devcontainer/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## v2.1.0 — 2026-03-25
44

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+
511
### CLI
612

713
- **`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.

container/CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CodeForge Container
22

3-
The `codeforge-dev` npm package — a complete development container for AI-powered coding with Claude Code.
3+
The `@coredirective/cf-container` npm package — a complete development container for AI-powered coding with Claude Code.
44

55
See `.devcontainer/CLAUDE.md` for full devcontainer documentation.
66
See the root `CLAUDE.md` for monorepo-wide development rules (branching strategy, testing).

container/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# CodeForge DevContainer
22

33
[![License: GPL-3.0](https://img.shields.io/badge/License-GPL%203.0-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
4-
[![npm version](https://img.shields.io/npm/v/codeforge-dev.svg)](https://www.npmjs.com/package/codeforge-dev)
4+
[![npm version](https://img.shields.io/npm/v/@coredirective%2Fcf-container.svg)](https://www.npmjs.com/package/@coredirective/cf-container)
55
[![Changelog](https://img.shields.io/badge/changelog-view-blue)](.devcontainer/CHANGELOG.md)
66
[![GitHub last commit](https://img.shields.io/github/last-commit/AnExiledDev/CodeForge)](https://github.com/AnExiledDev/CodeForge/commits)
7-
[![npm downloads](https://img.shields.io/npm/dm/codeforge-dev)](https://www.npmjs.com/package/codeforge-dev)
7+
[![npm downloads](https://img.shields.io/npm/dm/@coredirective%2Fcf-container)](https://www.npmjs.com/package/@coredirective/cf-container)
88
[![Node.js](https://img.shields.io/badge/node-%3E%3D14.0.0-brightgreen)](https://nodejs.org/)
99
[![GitHub issues](https://img.shields.io/github/issues/AnExiledDev/CodeForge)](https://github.com/AnExiledDev/CodeForge/issues)
1010
[![CI](https://github.com/AnExiledDev/CodeForge/actions/workflows/ci.yml/badge.svg)](https://github.com/AnExiledDev/CodeForge/actions/workflows/ci.yml)
@@ -22,28 +22,28 @@ Instead of spending hours discovering and configuring advanced features like bui
2222
Add CodeForge to any project:
2323

2424
```bash
25-
npx codeforge-dev
25+
npx @coredirective/cf-container
2626
```
2727

2828
This copies the `.devcontainer/` directory to your project. Then open in VS Code and select "Reopen in Container".
2929

3030
### Options
3131

3232
```bash
33-
npx codeforge-dev --force # Smart update (preserves your customizations)
34-
npx codeforge-dev -f # Short form
35-
npx codeforge-dev --reset # Fresh install (wipes .devcontainer, keeps .codeforge)
33+
npx @coredirective/cf-container --force # Smart update (preserves your customizations)
34+
npx @coredirective/cf-container -f # Short form
35+
npx @coredirective/cf-container --reset # Fresh install (wipes .devcontainer, keeps .codeforge)
3636
```
3737

3838
### Alternative Install Methods
3939

4040
```bash
4141
# Install globally
42-
npm install -g codeforge-dev
42+
npm install -g @coredirective/cf-container
4343
codeforge-dev
4444

4545
# Run specific version
46-
npx codeforge-dev@1.2.3
46+
npx @coredirective/cf-container@1.2.3
4747
```
4848

4949
## Prerequisites
@@ -132,7 +132,7 @@ For the complete configuration guide, see the [documentation site](https://codef
132132

133133
## Quick Start
134134

135-
1. **Install**: `npx codeforge-dev`
135+
1. **Install**: `npx @coredirective/cf-container`
136136
2. **Open in Container**:
137137
- **VS Code**: "Reopen in Container" from the Command Palette
138138
- **CLI**: `devcontainer up --workspace-folder .` then `docker exec -it <container> zsh`

container/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
2-
"name": "codeforge-dev",
2+
"name": "@coredirective/cf-container",
3+
"publishConfig": {
4+
"access": "public"
5+
},
36
"version": "2.1.0",
47
"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.",
58
"main": "setup.js",

dashboard/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## v0.1.0
44

5+
### Package Rename
6+
7+
- **`codeforge-dashboard`** has been renamed to **`@coredirective/cf-dash`** on npm
8+
- The old `codeforge-dashboard` package name is deprecated
9+
510
Initial release of `codeforge-dashboard` — session analytics for Claude Code.
611

712
- Svelte 5 SPA with dark mode, TailwindCSS 4, LayerChart

0 commit comments

Comments
 (0)