@reumbra/forge 0.1.0 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -3
- package/bin/forge.js +0 -0
- package/package.json +17 -13
package/README.md
CHANGED
|
@@ -25,9 +25,9 @@ Forge DevKit is a commercial product by [Reumbra](https://reumbra.dev) — AI-po
|
|
|
25
25
|
│ └─ reumbra.dev/forge — website, pricing, docs │
|
|
26
26
|
│ └─ Astro + Tailwind, hosted on Cloudflare Pages │
|
|
27
27
|
│ │
|
|
28
|
-
│ forge-devkit-plugins PRIVATE
|
|
28
|
+
│ forge-devkit-plugins PRIVATE │
|
|
29
29
|
│ └─ Plugin source code, tests, design docs │
|
|
30
|
-
│ └─
|
|
30
|
+
│ └─ github.com/reumbra/ai-marketplace │
|
|
31
31
|
│ │
|
|
32
32
|
└──────────────────────────────────────────────────────────────────┘
|
|
33
33
|
```
|
|
@@ -86,7 +86,7 @@ $ forge install core
|
|
|
86
86
|
1. Read config.json -> license_key, machine_id
|
|
87
87
|
2. POST /plugins/download {license_key, machine_id, plugin: "forge-core", version: "latest"}
|
|
88
88
|
3. API validates license, expiry, machine_id, plugin access
|
|
89
|
-
4. Returns signed download URL (
|
|
89
|
+
4. Returns signed download URL (S3 presigned, 5 min TTL)
|
|
90
90
|
5. CLI downloads .zip via signed URL
|
|
91
91
|
6. Unpacks to ~/.forge/cache/forge-core@1.5.0/
|
|
92
92
|
7. Links into Claude Code plugin directory
|
|
@@ -141,6 +141,17 @@ pnpm check # Lint + format (Biome)
|
|
|
141
141
|
pnpm test # Run tests
|
|
142
142
|
```
|
|
143
143
|
|
|
144
|
+
## Releasing
|
|
145
|
+
|
|
146
|
+
```bash
|
|
147
|
+
npm version patch # bump 0.1.0 → 0.1.1 + git tag v0.1.1
|
|
148
|
+
git push --follow-tags # triggers GitHub Actions → npm publish
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
CI runs build → lint → test on every push. Publish workflow triggers on `v*` tags.
|
|
152
|
+
|
|
153
|
+
See [docs/DEPLOY.md](docs/DEPLOY.md) for full deploy guide.
|
|
154
|
+
|
|
144
155
|
### Project Structure
|
|
145
156
|
|
|
146
157
|
```
|
package/bin/forge.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,15 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reumbra/forge",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "CLI for installing and managing Forge plugins for Claude Code",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"forge": "./bin/forge.js"
|
|
7
|
+
"forge": "./bin/forge.js",
|
|
8
|
+
"@reumbra/forge": "./bin/forge.js"
|
|
8
9
|
},
|
|
9
10
|
"files": [
|
|
10
11
|
"bin/",
|
|
11
12
|
"dist/"
|
|
12
13
|
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"dev": "tsx src/cli.ts",
|
|
16
|
+
"build": "tsc",
|
|
17
|
+
"check": "biome check --write",
|
|
18
|
+
"lint": "biome lint",
|
|
19
|
+
"format": "biome format --write",
|
|
20
|
+
"test": "vitest run",
|
|
21
|
+
"test:watch": "vitest",
|
|
22
|
+
"prepublishOnly": "pnpm build"
|
|
23
|
+
},
|
|
13
24
|
"keywords": [
|
|
14
25
|
"claude-code",
|
|
15
26
|
"forge",
|
|
@@ -23,11 +34,13 @@
|
|
|
23
34
|
"url": "https://github.com/reumbra/forge-devkit-cli"
|
|
24
35
|
},
|
|
25
36
|
"publishConfig": {
|
|
26
|
-
"access": "public"
|
|
37
|
+
"access": "public",
|
|
38
|
+
"provenance": true
|
|
27
39
|
},
|
|
28
40
|
"engines": {
|
|
29
41
|
"node": ">=20"
|
|
30
42
|
},
|
|
43
|
+
"packageManager": "pnpm@10.24.0",
|
|
31
44
|
"devDependencies": {
|
|
32
45
|
"@biomejs/biome": "^2.4.2",
|
|
33
46
|
"@types/node": "^25.3.0",
|
|
@@ -38,14 +51,5 @@
|
|
|
38
51
|
"dependencies": {
|
|
39
52
|
"@clack/prompts": "^1.0.1",
|
|
40
53
|
"commander": "^14.0.3"
|
|
41
|
-
},
|
|
42
|
-
"scripts": {
|
|
43
|
-
"dev": "tsx src/cli.ts",
|
|
44
|
-
"build": "tsc",
|
|
45
|
-
"check": "biome check --write",
|
|
46
|
-
"lint": "biome lint",
|
|
47
|
-
"format": "biome format --write",
|
|
48
|
-
"test": "vitest run",
|
|
49
|
-
"test:watch": "vitest"
|
|
50
54
|
}
|
|
51
|
-
}
|
|
55
|
+
}
|