planforge 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 +44 -0
- package/package.json +5 -5
package/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# PlanForge
|
|
2
|
+
|
|
3
|
+
Bring your own AI to Cursor.
|
|
4
|
+
|
|
5
|
+
PlanForge lets you use Claude or Codex inside Cursor Free. Slash commands and CLI use `planforge.json` to choose which provider runs planning (`/p`) and implementation (`/i`).
|
|
6
|
+
|
|
7
|
+
## Why PlanForge?
|
|
8
|
+
|
|
9
|
+
Cursor is great, but many teams and developers already pay for AI elsewhere. PlanForge lets you use Claude or Codex APIs in your Cursor workflow without requiring Cursor Pro.
|
|
10
|
+
|
|
11
|
+
## Install
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install -g planforge
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Quick Start
|
|
18
|
+
|
|
19
|
+
In your Cursor project root:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
planforge init
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Then use `/p` for planning and `/i` for implementation in Cursor, or run:
|
|
26
|
+
|
|
27
|
+
- `planforge plan "<goal>"` — generate a plan
|
|
28
|
+
- `planforge implement "<prompt>"` — run implementation
|
|
29
|
+
|
|
30
|
+
## Commands
|
|
31
|
+
|
|
32
|
+
| Command | Description |
|
|
33
|
+
| ------- | ----------- |
|
|
34
|
+
| `planforge init` | Detect providers, create `planforge.json`, install Cursor skills/rules. Use `--skip-provider-install` to skip provider install. |
|
|
35
|
+
| `planforge plan "<goal>"` | Generate a plan and save to `.cursor/plans/`. |
|
|
36
|
+
| `planforge implement "<prompt>"` | Run implementation using the implementer from `planforge.json`. |
|
|
37
|
+
| `planforge config show` | Print current `planforge.json`. |
|
|
38
|
+
| `planforge config suggest [--apply]` | Show or apply suggested config for installed providers. |
|
|
39
|
+
| `planforge doctor` | Check Claude/Codex CLI, config, and `.cursor/plans`. |
|
|
40
|
+
| `planforge install [-f]` | Install `.cursor/skills` and `.cursor/rules`; `-f` overwrites existing `planforge.json`. |
|
|
41
|
+
|
|
42
|
+
## License
|
|
43
|
+
|
|
44
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "planforge",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "PlanForge CLI - Bring your own AI to Cursor",
|
|
6
6
|
"keywords": ["cursor", "claude", "codex", "ai", "cli", "planning", "planforge"],
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/
|
|
10
|
+
"url": "https://github.com/chucoding/planforge.git"
|
|
11
11
|
},
|
|
12
|
-
"bugs": "https://github.com/
|
|
13
|
-
"homepage": "https://github.com/
|
|
14
|
-
"files": ["dist"],
|
|
12
|
+
"bugs": "https://github.com/chucoding/planforge/issues",
|
|
13
|
+
"homepage": "https://github.com/chucoding/planforge#readme",
|
|
14
|
+
"files": ["dist", "README.md"],
|
|
15
15
|
"bin": {
|
|
16
16
|
"planforge": "dist/index.js"
|
|
17
17
|
},
|