spirewise 1.0.3 → 1.6.0
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 +53 -25
- package/bin/cli.js +266 -164
- package/install.sh +55 -17
- package/package.json +1 -1
- package/skills/README.md +39 -14
- package/skills/f6s-copywriting/README.md +53 -0
- package/skills/linkedin-copywriting/README.md +49 -0
- package/skills/nvidia-inception-idea-booster/README.md +55 -0
- package/skills/nvidia-inception-idea-booster/SKILL.md +151 -0
- package/skills/nvidia-inception-starter/README.md +61 -0
- package/skills/nvidia-inception-starter/SKILL.md +179 -0
- package/skills/nvidia-product-inventor/README.md +66 -0
- package/skills/nvidia-product-inventor/SKILL.md +167 -0
package/README.md
CHANGED
|
@@ -10,65 +10,90 @@ project** or **globally** for every project.
|
|
|
10
10
|
|
|
11
11
|
## Install
|
|
12
12
|
|
|
13
|
-
No clone needed:
|
|
13
|
+
No clone needed — just run:
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
npx spirewise
|
|
16
|
+
npx spirewise
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
You
|
|
19
|
+
You get a **full-screen interactive picker** with three steps:
|
|
20
20
|
|
|
21
21
|
```
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
22
|
+
══════════════════ Step 1/3 · Select skills ══════════════════
|
|
23
|
+
❯ ◉ f6s-copywriting Generate F6S startup/company profile copy…
|
|
24
|
+
◉ linkedin-copywriting Generate LinkedIn Company Page copy…
|
|
25
|
+
|
|
26
|
+
↑/↓ move · space toggle · a all/none · enter confirm · esc cancel
|
|
26
27
|
```
|
|
27
28
|
|
|
28
|
-
|
|
29
|
+
Step 1 picks **skills**, step 2 picks **agents** (checkbox lists — move with
|
|
30
|
+
↑/↓, toggle with **space**, **a** for all/none), step 3 picks **scope**
|
|
31
|
+
(Workspace / Global / Both). Press **enter** to confirm each step.
|
|
32
|
+
|
|
33
|
+
### Or drive it with flags (skips the matching step)
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
-s, --skills <a,b> skills to install (default: all / pick)
|
|
37
|
+
-a, --agents <a,b> agents to target (default: all / pick) alias: --agent
|
|
38
|
+
-sc, --scope <s> workspace | global | both
|
|
39
|
+
--workspace | --global | --both scope shortcuts
|
|
40
|
+
```
|
|
29
41
|
|
|
30
42
|
```bash
|
|
31
|
-
npx spirewise
|
|
32
|
-
npx spirewise
|
|
33
|
-
npx spirewise
|
|
43
|
+
npx spirewise -sc both # pick skills+agents, scope both
|
|
44
|
+
npx spirewise -s f6s-copywriting -a claude,cursor -sc workspace
|
|
45
|
+
npx spirewise --global # pick skills+agents, scope global
|
|
34
46
|
```
|
|
35
47
|
|
|
36
48
|
Or install the CLI globally:
|
|
37
49
|
|
|
38
50
|
```bash
|
|
39
51
|
npm install -g spirewise
|
|
40
|
-
spirewise
|
|
52
|
+
spirewise -sc both
|
|
41
53
|
```
|
|
42
54
|
|
|
43
55
|
## What gets installed where
|
|
44
56
|
|
|
45
|
-
| Agent |
|
|
46
|
-
|
|
57
|
+
| Agent | Workspace folder | Global folder | Format |
|
|
58
|
+
|-------|------------------|---------------|--------|
|
|
47
59
|
| Claude Code | `.claude/skills/` | `~/.claude/skills/` | SKILL.md |
|
|
48
60
|
| GitHub Copilot | `.github/skills/` | `~/.copilot/skills/` | SKILL.md |
|
|
49
61
|
| Cursor | `.cursor/rules/` | `~/.cursor/rules/` | `.mdc` rule |
|
|
50
62
|
| Windsurf | `.windsurf/rules/` | `~/.codeium/windsurf/global_rules/` | `.md` rule |
|
|
51
63
|
| Codex CLI | `.codex/skills/` | `~/.codex/skills/` | SKILL.md |
|
|
52
64
|
| Gemini CLI | `.gemini/skills/` | `~/.gemini/skills/` | SKILL.md |
|
|
65
|
+
| OpenCode | `.opencode/skills/` | `~/.config/opencode/skills/` | SKILL.md |
|
|
66
|
+
| Cline | `.clinerules/` | `~/.clinerules/` | `.md` rule |
|
|
67
|
+
| Roo Code | `.roo/rules/` | `~/.roo/rules/` | `.md` rule |
|
|
68
|
+
| Kilo Code | `.kilocode/rules/` | `~/.kilocode/rules/` | `.md` rule |
|
|
69
|
+
| Continue | `.continue/rules/` | `~/.continue/rules/` | `.md` rule |
|
|
70
|
+
| Amp | `.amp/rules/` | `~/.config/amp/rules/` | `.md` rule |
|
|
53
71
|
|
|
54
|
-
Rule-based agents
|
|
55
|
-
|
|
72
|
+
Rule-based agents get a single rule file generated from the skill; the rest get
|
|
73
|
+
the full `SKILL.md` folder. (Newer tools' folders are best-effort conventions —
|
|
74
|
+
edit the `AGENTS` registry at the top of `bin/cli.js` if any differ.)
|
|
56
75
|
|
|
57
|
-
##
|
|
76
|
+
## Inspect
|
|
58
77
|
|
|
59
78
|
```bash
|
|
60
|
-
# only some agents
|
|
61
|
-
npx spirewise install --both --agent claude,cursor
|
|
62
|
-
|
|
63
|
-
# only some skills
|
|
64
|
-
npx spirewise install f6s-copywriting --global
|
|
65
|
-
|
|
66
|
-
# inspect
|
|
67
79
|
npx spirewise list # available skills
|
|
68
80
|
npx spirewise agents # supported agents + their folders
|
|
81
|
+
npx spirewise --help # all options
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
## Uninstall
|
|
85
|
+
|
|
86
|
+
`remove` (alias `uninstall`) mirrors install — same interactive picker, same
|
|
87
|
+
flags — and deletes the skills cleanly from workspace, global, or both:
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
npx spirewise remove # interactive picker
|
|
91
|
+
npx spirewise remove -sc both # pick skills+agents, both
|
|
92
|
+
npx spirewise remove -s f6s-copywriting -a cursor -sc workspace
|
|
69
93
|
```
|
|
70
94
|
|
|
71
|
-
|
|
95
|
+
Skill folders and generated rule files are deleted; now-empty target folders are
|
|
96
|
+
tidied up, and anything already absent is reported as skipped.
|
|
72
97
|
|
|
73
98
|
## Skills included
|
|
74
99
|
|
|
@@ -76,6 +101,9 @@ Run `npx spirewise --help` for all options.
|
|
|
76
101
|
|-------|-------------|---------|
|
|
77
102
|
| `f6s-copywriting` | `f6s/f6s-profile-copy.txt` | Full F6S startup profile copy |
|
|
78
103
|
| `linkedin-copywriting` | `linkedin copywriting/linkedin-page-copy.txt` | Full LinkedIn Company Page copy |
|
|
104
|
+
| `nvidia-inception-starter` | `nvidia-inception/inception-readiness-report.md` | Scored NVIDIA Inception readiness audit + 90-day plan |
|
|
105
|
+
| `nvidia-inception-idea-booster` | `nvidia-inception/elevated-idea.md` | Reads your idea files and elevates them to NVIDIA's preferences |
|
|
106
|
+
| `nvidia-product-inventor` | `products_raw/<Product>/product.md` | Invents 3–6 GPU-essential products (4–10 letter names) from your idea |
|
|
79
107
|
|
|
80
108
|
Each skill keeps **every field below** the platform's character limit (with ~10%
|
|
81
109
|
headroom) and verifies counts before finishing.
|