@garygentry/feature-forge 0.1.0 → 0.1.1
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 +63 -0
- package/package.json +21 -7
package/README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# @garygentry/feature-forge
|
|
2
|
+
|
|
3
|
+
Cross-agent installer for the [**feature-forge**](https://github.com/garygentry/feature-forge)
|
|
4
|
+
skill suite — an end-to-end feature-development pipeline that runs on any coding agent
|
|
5
|
+
(Claude, Codex, Copilot, Cursor, or Gemini).
|
|
6
|
+
|
|
7
|
+
This package installs the canonical forge skills into the agents detected on your machine.
|
|
8
|
+
It is dependency-free and performs sandboxed, manifest-tracked writes.
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
# Install into every detected agent:
|
|
14
|
+
npx @garygentry/feature-forge install
|
|
15
|
+
|
|
16
|
+
# Scope to one agent:
|
|
17
|
+
npx @garygentry/feature-forge install -a codex
|
|
18
|
+
|
|
19
|
+
# Preview the plan without writing anything:
|
|
20
|
+
npx @garygentry/feature-forge install --dry-run --json
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Commands
|
|
24
|
+
|
|
25
|
+
| Command | Description |
|
|
26
|
+
| ------------------ | ----------------------------------------------------------------- |
|
|
27
|
+
| `install` (`add`) | Install feature-forge into the target agent(s). |
|
|
28
|
+
| `update` | Reconcile an existing install to the current adapters. |
|
|
29
|
+
| `uninstall` (`remove`) | Remove a prior install (manifest-tracked files only). |
|
|
30
|
+
| `list` (`ls`) | Report per-agent detected / installed / up-to-date status. |
|
|
31
|
+
|
|
32
|
+
### Common flags
|
|
33
|
+
|
|
34
|
+
| Flag | Description |
|
|
35
|
+
| ------------------- | --------------------------------------------------------------------- |
|
|
36
|
+
| `-a, --agent <id>` | Scope to one agent (`claude`/`codex`/`copilot`/`cursor`/`gemini`). |
|
|
37
|
+
| `-g, --global` | Install into the user-level config dir (default: project-local). |
|
|
38
|
+
| `--symlink` | Symlink the bundle instead of copying (Windows always copies). |
|
|
39
|
+
| `--dry-run` | Print the planned actions without changing anything. |
|
|
40
|
+
| `--json` | Emit the run report as JSON. |
|
|
41
|
+
| `--skip-rauf` | Skip the rauf resolvability preflight (records `raufPin: null`). |
|
|
42
|
+
|
|
43
|
+
## Claude
|
|
44
|
+
|
|
45
|
+
Claude Code users can alternatively install via the plugin marketplace:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
/plugin marketplace add garygentry/feature-forge
|
|
49
|
+
/plugin install feature-forge@feature-forge
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Notes
|
|
53
|
+
|
|
54
|
+
The default loop runner is [**rauf**](https://github.com/garygentry/rauf). Until rauf is
|
|
55
|
+
published to npm, the installer records the pin but cannot resolve it from the registry; use
|
|
56
|
+
`--skip-rauf` to defer, or install rauf via its
|
|
57
|
+
[binary script](https://github.com/garygentry/rauf#install). See the
|
|
58
|
+
[feature-forge README](https://github.com/garygentry/feature-forge#readme) for the full
|
|
59
|
+
pipeline documentation and per-agent setup guides.
|
|
60
|
+
|
|
61
|
+
## License
|
|
62
|
+
|
|
63
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,22 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@garygentry/feature-forge",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Cross-agent installer for the feature-forge skill suite — installs the canonical forge pipeline into Claude, Codex, Copilot, Cursor, or Gemini.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"bin": {
|
|
7
|
+
"bin": {
|
|
8
|
+
"feature-forge": "dist/cli.js"
|
|
9
|
+
},
|
|
8
10
|
"exports": {
|
|
9
|
-
".": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"adapters"
|
|
19
|
+
],
|
|
20
|
+
"engines": {
|
|
21
|
+
"node": ">=18"
|
|
10
22
|
},
|
|
11
|
-
"files": ["dist", "adapters"],
|
|
12
|
-
"engines": { "node": ">=18" },
|
|
13
23
|
"repository": {
|
|
14
24
|
"type": "git",
|
|
15
25
|
"url": "git+https://github.com/garygentry/feature-forge.git",
|
|
16
26
|
"directory": "installer"
|
|
17
27
|
},
|
|
18
28
|
"homepage": "https://github.com/garygentry/feature-forge#readme",
|
|
19
|
-
"bugs": {
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/garygentry/feature-forge/issues"
|
|
31
|
+
},
|
|
20
32
|
"keywords": [
|
|
21
33
|
"feature-forge",
|
|
22
34
|
"cli",
|
|
@@ -28,7 +40,9 @@
|
|
|
28
40
|
"cursor",
|
|
29
41
|
"gemini"
|
|
30
42
|
],
|
|
31
|
-
"publishConfig": {
|
|
43
|
+
"publishConfig": {
|
|
44
|
+
"access": "public"
|
|
45
|
+
},
|
|
32
46
|
"scripts": {
|
|
33
47
|
"build": "tsc -p tsconfig.json",
|
|
34
48
|
"test": "node --test",
|