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/install.sh
CHANGED
|
@@ -30,6 +30,12 @@ AGENTS=(
|
|
|
30
30
|
"windsurf|Windsurf|rule|.md|.windsurf/rules|HOME/.codeium/windsurf/global_rules"
|
|
31
31
|
"codex|Codex CLI|skill||.codex/skills|HOME/.codex/skills"
|
|
32
32
|
"gemini|Gemini CLI|skill||.gemini/skills|HOME/.gemini/skills"
|
|
33
|
+
"opencode|OpenCode|skill||.opencode/skills|HOME/.config/opencode/skills"
|
|
34
|
+
"cline|Cline|rule|.md|.clinerules|HOME/.clinerules"
|
|
35
|
+
"roo|Roo Code|rule|.md|.roo/rules|HOME/.roo/rules"
|
|
36
|
+
"kilocode|Kilo Code|rule|.md|.kilocode/rules|HOME/.kilocode/rules"
|
|
37
|
+
"continue|Continue|rule|.md|.continue/rules|HOME/.continue/rules"
|
|
38
|
+
"amp|Amp|rule|.md|.amp/rules|HOME/.config/amp/rules"
|
|
33
39
|
)
|
|
34
40
|
|
|
35
41
|
color() { printf '\033[%sm%s\033[0m' "$1" "$2"; }
|
|
@@ -56,21 +62,23 @@ usage() {
|
|
|
56
62
|
spirewise — install copywriting Agent Skills into all your AI agents.
|
|
57
63
|
|
|
58
64
|
Usage:
|
|
59
|
-
install.sh [scope] [
|
|
65
|
+
install.sh [install] [scope] [-a agents] [-s skills]
|
|
66
|
+
install.sh remove [scope] [-a agents] [-s skills] # uninstall (alias: uninstall)
|
|
60
67
|
|
|
61
68
|
Scope:
|
|
62
|
-
--workspace
|
|
63
|
-
--
|
|
64
|
-
--
|
|
69
|
+
-sc, --scope <s> workspace | global | both
|
|
70
|
+
--workspace this folder / current project (alias: --project)
|
|
71
|
+
--global global/home folders
|
|
72
|
+
--both both
|
|
65
73
|
(no scope -> you are asked interactively)
|
|
66
74
|
|
|
67
75
|
Selection:
|
|
68
|
-
|
|
69
|
-
--
|
|
70
|
-
--list
|
|
71
|
-
-h, --help
|
|
76
|
+
-s, --skills <a,b> limit to named skills (default: all)
|
|
77
|
+
-a, --agents <a,b> limit to named agents (default: all) alias: --agent
|
|
78
|
+
--list list available skills
|
|
79
|
+
-h, --help show this help
|
|
72
80
|
|
|
73
|
-
Agents: claude copilot cursor windsurf codex gemini
|
|
81
|
+
Agents: claude copilot cursor windsurf codex gemini opencode cline roo kilocode continue amp
|
|
74
82
|
EOF
|
|
75
83
|
}
|
|
76
84
|
|
|
@@ -154,8 +162,22 @@ resolve_dir() {
|
|
|
154
162
|
install_for_agent() {
|
|
155
163
|
local key="$1" label="$2" fmt="$3" ext="$4" dir="$5" scope="$6" base="$7"; shift 7
|
|
156
164
|
local skills=("$@")
|
|
157
|
-
mkdir -p "$dir"
|
|
158
165
|
local s
|
|
166
|
+
if [[ "$MODE" == "remove" ]]; then
|
|
167
|
+
for s in "${skills[@]}"; do
|
|
168
|
+
local target
|
|
169
|
+
if [[ "$fmt" == "skill" ]]; then target="$dir/$s"; else target="$dir/$s$ext"; fi
|
|
170
|
+
if [[ -e "$target" ]]; then
|
|
171
|
+
rm -rf "$target"; REMOVED=$((REMOVED+1))
|
|
172
|
+
substep "$label ($scope) $s removed <- $target"
|
|
173
|
+
else
|
|
174
|
+
substep "$label ($scope) $s — not found, skipped"
|
|
175
|
+
fi
|
|
176
|
+
done
|
|
177
|
+
[[ -d "$dir" ]] && rmdir "$dir" 2>/dev/null || true
|
|
178
|
+
return 0
|
|
179
|
+
fi
|
|
180
|
+
mkdir -p "$dir"
|
|
159
181
|
for s in "${skills[@]}"; do
|
|
160
182
|
fetch_skill "$s" "$base"
|
|
161
183
|
if [[ "$fmt" == "skill" ]]; then
|
|
@@ -173,16 +195,27 @@ install_for_agent() {
|
|
|
173
195
|
}
|
|
174
196
|
|
|
175
197
|
# ---- Parse args ------------------------------------------------------------
|
|
198
|
+
MODE="install"
|
|
199
|
+
REMOVED=0
|
|
176
200
|
SCOPE=""
|
|
177
201
|
AGENT_FILTER=""
|
|
178
202
|
DO_LIST=false
|
|
179
203
|
SELECTED=()
|
|
204
|
+
[[ "${1:-}" == "remove" || "${1:-}" == "uninstall" ]] && { MODE="remove"; shift; }
|
|
205
|
+
[[ "${1:-}" == "install" ]] && shift
|
|
180
206
|
while [[ $# -gt 0 ]]; do
|
|
181
207
|
case "$1" in
|
|
208
|
+
remove|uninstall) MODE="remove"; shift ;;
|
|
209
|
+
--remove|--uninstall) MODE="remove"; shift ;;
|
|
182
210
|
--project|--workspace|--local) SCOPE="project"; shift ;;
|
|
183
211
|
--global) SCOPE="global"; shift ;;
|
|
184
212
|
--both) SCOPE="both"; shift ;;
|
|
185
|
-
|
|
213
|
+
-sc|--scope)
|
|
214
|
+
v="${2:?--scope needs a value}"; shift 2
|
|
215
|
+
case "$v" in workspace|project|local) SCOPE="project";; global) SCOPE="global";; both) SCOPE="both";; *) die "Invalid scope '$v'";; esac ;;
|
|
216
|
+
-a|--agent|--agents) AGENT_FILTER="${2:?--agents needs a value}"; shift 2 ;;
|
|
217
|
+
-s|--skills)
|
|
218
|
+
IFS=',' read -r -a _sk <<<"${2:?--skills needs a value}"; SELECTED+=("${_sk[@]}"); shift 2 ;;
|
|
186
219
|
--list) DO_LIST=true; shift ;;
|
|
187
220
|
-h|--help) usage; exit 0 ;;
|
|
188
221
|
-*) die "Unknown option: $1" ;;
|
|
@@ -216,10 +249,10 @@ step 2 "Selecting target agents"
|
|
|
216
249
|
if [[ -n "$AGENT_FILTER" ]]; then substep "agents: $AGENT_FILTER"; else substep "agents: all supported"; fi
|
|
217
250
|
|
|
218
251
|
# Step 3: scope — prompt if not given.
|
|
219
|
-
step 3 "Choosing
|
|
252
|
+
step 3 "Choosing scope"
|
|
220
253
|
if [[ -z "$SCOPE" ]]; then
|
|
221
254
|
if [[ -t 0 ]]; then
|
|
222
|
-
info "Where should the skills be installed?"
|
|
255
|
+
[[ "$MODE" == "remove" ]] && info "Where should the skills be removed from?" || info "Where should the skills be installed?"
|
|
223
256
|
echo " 1) Workspace (this folder only — current project)"
|
|
224
257
|
echo " 2) Global (your home folders — all projects)"
|
|
225
258
|
echo " 3) Both"
|
|
@@ -235,8 +268,8 @@ fi
|
|
|
235
268
|
|
|
236
269
|
SCOPES=("$SCOPE"); [[ "$SCOPE" == "both" ]] && SCOPES=("project" "global")
|
|
237
270
|
|
|
238
|
-
# Step 4: install
|
|
239
|
-
step 4 "Installing"
|
|
271
|
+
# Step 4: install / remove
|
|
272
|
+
[[ "$MODE" == "remove" ]] && step 4 "Removing" || step 4 "Installing"
|
|
240
273
|
for sc in "${SCOPES[@]}"; do
|
|
241
274
|
for entry in "${AGENTS[@]}"; do
|
|
242
275
|
IFS='|' read -r key label fmt ext pdir gdir <<<"$entry"
|
|
@@ -244,10 +277,15 @@ for sc in "${SCOPES[@]}"; do
|
|
|
244
277
|
case ",$AGENT_FILTER," in *",$key,"*) ;; *) continue ;; esac
|
|
245
278
|
fi
|
|
246
279
|
if [[ "$sc" == "project" ]]; then dir="$(resolve_dir "$pdir")"; else dir="$(resolve_dir "$gdir")"; fi
|
|
247
|
-
|
|
280
|
+
scope_tag="$sc"; [[ "$sc" == "project" ]] && scope_tag="workspace"
|
|
281
|
+
install_for_agent "$key" "$label" "$fmt" "$ext" "$dir" "$scope_tag" "$BASE" "${SELECTED[@]}"
|
|
248
282
|
done
|
|
249
283
|
done
|
|
250
284
|
|
|
251
285
|
printf '\n'
|
|
252
|
-
|
|
286
|
+
if [[ "$MODE" == "remove" ]]; then
|
|
287
|
+
ok "Removed $REMOVED item(s)."
|
|
288
|
+
else
|
|
289
|
+
ok "Installed ${#SELECTED[@]} skill(s). Next: open your agent and say \"write our F6S profile copy\"."
|
|
290
|
+
fi
|
|
253
291
|
|
package/package.json
CHANGED
package/skills/README.md
CHANGED
|
@@ -9,6 +9,9 @@ ready-to-paste copy for company profile pages, with strict character-limit safet
|
|
|
9
9
|
|-------|--------|---------|
|
|
10
10
|
| `f6s-copywriting` | `f6s/f6s-profile-copy.txt` | Full F6S startup profile copy |
|
|
11
11
|
| `linkedin-copywriting` | `linkedin copywriting/linkedin-page-copy.txt` | Full LinkedIn Company Page copy |
|
|
12
|
+
| `nvidia-inception-starter` | `nvidia-inception/inception-readiness-report.md` | Scored NVIDIA Inception readiness audit + 90-day plan |
|
|
13
|
+
| `nvidia-inception-idea-booster` | `nvidia-inception/elevated-idea.md` | Reads your idea files and elevates them to NVIDIA's preferences |
|
|
14
|
+
| `nvidia-product-inventor` | `products_raw/<Product>/product.md` | Invents 3–6 GPU-essential products (4–10 letter names) from your idea |
|
|
12
15
|
|
|
13
16
|
Each skill writes one plain-text file and keeps **every field below** the
|
|
14
17
|
platform's character limit (with ~10% headroom).
|
|
@@ -31,35 +34,56 @@ LinkedIn company page copy" and it will follow the skill: gather inputs, write t
|
|
|
31
34
|
|
|
32
35
|
## Install via command
|
|
33
36
|
|
|
34
|
-
The easiest way is the npm CLI
|
|
35
|
-
|
|
37
|
+
The easiest way is the npm CLI. Run it with no flags for a full-screen
|
|
38
|
+
interactive picker (skills → agents → scope), or pass flags to skip steps:
|
|
36
39
|
|
|
37
40
|
```bash
|
|
38
|
-
npx spirewise
|
|
39
|
-
npx spirewise
|
|
40
|
-
npx spirewise
|
|
41
|
-
npx spirewise
|
|
41
|
+
npx spirewise # interactive picker for everything
|
|
42
|
+
npx spirewise -sc both # pick skills+agents, scope = both
|
|
43
|
+
npx spirewise -s f6s-copywriting -a claude,cursor -sc workspace
|
|
44
|
+
npx spirewise list # list skills
|
|
45
|
+
npx spirewise agents # agents + folders
|
|
42
46
|
```
|
|
43
47
|
|
|
44
|
-
|
|
48
|
+
Flags:
|
|
49
|
+
|
|
50
|
+
```
|
|
51
|
+
-s, --skills <a,b> skills to install (default: all / pick)
|
|
52
|
+
-a, --agents <a,b> agents to target (default: all / pick) alias: --agent
|
|
53
|
+
-sc, --scope <s> workspace | global | both
|
|
54
|
+
--workspace | --global | --both scope shortcuts
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
In the picker: **↑/↓** move, **space** toggle, **a** all/none, **enter**
|
|
58
|
+
confirm, **esc** cancel.
|
|
59
|
+
|
|
60
|
+
### Uninstall
|
|
61
|
+
|
|
62
|
+
`remove` (alias `uninstall`) reuses the same picker/flags and deletes skills from
|
|
63
|
+
workspace, global, or both:
|
|
45
64
|
|
|
46
65
|
```bash
|
|
47
|
-
npx spirewise
|
|
48
|
-
npx spirewise
|
|
49
|
-
npx spirewise
|
|
50
|
-
npx spirewise agents # agents + folders
|
|
66
|
+
npx spirewise remove # interactive
|
|
67
|
+
npx spirewise remove -sc both # pick skills+agents, both scopes
|
|
68
|
+
npx spirewise remove -s f6s-copywriting -a cursor -sc workspace
|
|
51
69
|
```
|
|
52
70
|
|
|
53
|
-
Supported agents and their folders (
|
|
71
|
+
Supported agents and their folders (workspace / global):
|
|
54
72
|
|
|
55
|
-
| Agent |
|
|
56
|
-
|
|
73
|
+
| Agent | Workspace | Global | Format |
|
|
74
|
+
|-------|-----------|--------|--------|
|
|
57
75
|
| Claude Code | `.claude/skills/` | `~/.claude/skills/` | SKILL.md |
|
|
58
76
|
| GitHub Copilot | `.github/skills/` | `~/.copilot/skills/` | SKILL.md |
|
|
59
77
|
| Cursor | `.cursor/rules/` | `~/.cursor/rules/` | `.mdc` |
|
|
60
78
|
| Windsurf | `.windsurf/rules/` | `~/.codeium/windsurf/global_rules/` | `.md` |
|
|
61
79
|
| Codex CLI | `.codex/skills/` | `~/.codex/skills/` | SKILL.md |
|
|
62
80
|
| Gemini CLI | `.gemini/skills/` | `~/.gemini/skills/` | SKILL.md |
|
|
81
|
+
| OpenCode | `.opencode/skills/` | `~/.config/opencode/skills/` | SKILL.md |
|
|
82
|
+
| Cline | `.clinerules/` | `~/.clinerules/` | `.md` |
|
|
83
|
+
| Roo Code | `.roo/rules/` | `~/.roo/rules/` | `.md` |
|
|
84
|
+
| Kilo Code | `.kilocode/rules/` | `~/.kilocode/rules/` | `.md` |
|
|
85
|
+
| Continue | `.continue/rules/` | `~/.continue/rules/` | `.md` |
|
|
86
|
+
| Amp | `.amp/rules/` | `~/.config/amp/rules/` | `.md` |
|
|
63
87
|
|
|
64
88
|
### No-Node fallback: `install.sh`
|
|
65
89
|
|
|
@@ -68,6 +92,7 @@ If you can't use npm, the bundled `install.sh` mirrors the CLI over `curl`:
|
|
|
68
92
|
```bash
|
|
69
93
|
# from a clone
|
|
70
94
|
./install.sh --both
|
|
95
|
+
./install.sh remove --both # uninstall
|
|
71
96
|
|
|
72
97
|
# remote
|
|
73
98
|
curl -fsSL https://raw.githubusercontent.com/spirerise/spirewise/main/install.sh | bash -s -- --both
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# f6s-copywriting
|
|
2
|
+
|
|
3
|
+
Generate complete, ready-to-paste copy for an **F6S (f6s.com)** startup/company
|
|
4
|
+
profile — written like a senior unicorn-startup marketer: humanized,
|
|
5
|
+
attention-grabbing, and conversion-focused, with **every field kept under its
|
|
6
|
+
character limit**.
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npx spirewise install -s f6s-copywriting # pick agents + scope
|
|
12
|
+
npx spirewise install -s f6s-copywriting -a claude,cursor -sc workspace
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Remove
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npx spirewise remove -s f6s-copywriting # pick agents + scope
|
|
19
|
+
npx spirewise remove -s f6s-copywriting -a claude,cursor -sc both
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
(No Node? `./install.sh -s f6s-copywriting` and `./install.sh remove -s f6s-copywriting`.)
|
|
23
|
+
|
|
24
|
+
## Use
|
|
25
|
+
|
|
26
|
+
After installing, ask your agent:
|
|
27
|
+
|
|
28
|
+
> "Write our F6S profile copy"
|
|
29
|
+
|
|
30
|
+
It gathers your company details, then writes **`f6s/f6s-profile-copy.txt`** in
|
|
31
|
+
your project root.
|
|
32
|
+
|
|
33
|
+
## Output
|
|
34
|
+
|
|
35
|
+
`f6s/f6s-profile-copy.txt` — every F6S field (name, tagline, short/full
|
|
36
|
+
description, product, business model, traction, needs, team, etc.) with a live
|
|
37
|
+
`(count/limit)` next to each length-limited field.
|
|
38
|
+
|
|
39
|
+
## Character limits (kept under, ~10% headroom)
|
|
40
|
+
|
|
41
|
+
| Field | Limit |
|
|
42
|
+
|---|---|
|
|
43
|
+
| Company name | 50 |
|
|
44
|
+
| Tagline / one-liner | 140 |
|
|
45
|
+
| Short description | 255 |
|
|
46
|
+
| Full description | 2000 |
|
|
47
|
+
| Product description | 1000 |
|
|
48
|
+
| Business model | 500 |
|
|
49
|
+
| Traction / achievements | 1000 |
|
|
50
|
+
| Needs / seeking | 500 |
|
|
51
|
+
| Team member bio (each) | 500 |
|
|
52
|
+
|
|
53
|
+
See `SKILL.md` for the full voice/quality standard and output template.
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# linkedin-copywriting
|
|
2
|
+
|
|
3
|
+
Generate complete, ready-to-paste copy for a **LinkedIn Company Page** — written
|
|
4
|
+
like a senior unicorn-startup marketer: humanized, attention-grabbing, and
|
|
5
|
+
conversion-focused, with **every field kept under its character limit**.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx spirewise install -s linkedin-copywriting # pick agents + scope
|
|
11
|
+
npx spirewise install -s linkedin-copywriting -a claude,cursor -sc workspace
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Remove
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npx spirewise remove -s linkedin-copywriting # pick agents + scope
|
|
18
|
+
npx spirewise remove -s linkedin-copywriting -a claude,cursor -sc both
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
(No Node? `./install.sh -s linkedin-copywriting` and `./install.sh remove -s linkedin-copywriting`.)
|
|
22
|
+
|
|
23
|
+
## Use
|
|
24
|
+
|
|
25
|
+
After installing, ask your agent:
|
|
26
|
+
|
|
27
|
+
> "Create the LinkedIn company page copy"
|
|
28
|
+
|
|
29
|
+
It gathers your company details, then writes
|
|
30
|
+
**`linkedin copywriting/linkedin-page-copy.txt`** in your project root.
|
|
31
|
+
|
|
32
|
+
## Output
|
|
33
|
+
|
|
34
|
+
`linkedin copywriting/linkedin-page-copy.txt` — company name, tagline, About /
|
|
35
|
+
Overview, specialties, industry, size, HQ, founded, and an optional intro post,
|
|
36
|
+
each with a live `(count/limit)`.
|
|
37
|
+
|
|
38
|
+
## Character limits (kept under, ~10% headroom)
|
|
39
|
+
|
|
40
|
+
| Field | Limit |
|
|
41
|
+
|---|---|
|
|
42
|
+
| Company name | 100 |
|
|
43
|
+
| Tagline | 120 |
|
|
44
|
+
| About / Overview | 2000 (first ~150 chars = preview hook) |
|
|
45
|
+
| Specialty (each) | 30 |
|
|
46
|
+
| Specialties (total) | 20 items |
|
|
47
|
+
| Intro/launch post | 3000 |
|
|
48
|
+
|
|
49
|
+
See `SKILL.md` for the full voice/quality standard and output template.
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# nvidia-inception-idea-booster
|
|
2
|
+
|
|
3
|
+
Reads your **existing startup-idea files** in the project and elevates the idea
|
|
4
|
+
into a stronger, defensible, **NVIDIA-Inception-ready** version — using exactly
|
|
5
|
+
the traits NVIDIA prefers (deep tech, physical/agentic AI, essential GPU
|
|
6
|
+
acceleration, defensibility, large markets, NVIDIA ecosystem fit). It elevates
|
|
7
|
+
your real idea; it does not invent a different company.
|
|
8
|
+
|
|
9
|
+
> Pairs with **`nvidia-inception-starter`**: boost the idea here, then score and
|
|
10
|
+
> audit it there.
|
|
11
|
+
|
|
12
|
+
## Install
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npx spirewise install -s nvidia-inception-idea-booster # pick agents + scope
|
|
16
|
+
npx spirewise install -s nvidia-inception-idea-booster -a claude,cursor -sc workspace
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Remove
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npx spirewise remove -s nvidia-inception-idea-booster # pick agents + scope
|
|
23
|
+
npx spirewise remove -s nvidia-inception-idea-booster -a claude,cursor -sc both
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
(No Node? `./install.sh -s nvidia-inception-idea-booster` and `./install.sh remove -s nvidia-inception-idea-booster`.)
|
|
27
|
+
|
|
28
|
+
## Use
|
|
29
|
+
|
|
30
|
+
Put your idea notes anywhere in the project (`idea.md`, `README`, `pitch`,
|
|
31
|
+
`vision`, `notes`, a one-pager, etc.), then ask your agent:
|
|
32
|
+
|
|
33
|
+
> "Make my startup idea stronger for NVIDIA Inception"
|
|
34
|
+
|
|
35
|
+
It reads those files and writes **`nvidia-inception/elevated-idea.md`**.
|
|
36
|
+
|
|
37
|
+
## Output
|
|
38
|
+
|
|
39
|
+
`nvidia-inception/elevated-idea.md` — original idea (restated), an elevated
|
|
40
|
+
one-liner and pitch, a **before → after** upgrade table across every
|
|
41
|
+
NVIDIA-preference lever, a recommended NVIDIA stack (tech → use case → reason),
|
|
42
|
+
a moat plan, a beachhead→expansion market path, a proof plan, and honest gaps.
|
|
43
|
+
|
|
44
|
+
## NVIDIA-preference levers it optimizes
|
|
45
|
+
|
|
46
|
+
| Lever | What it pushes for |
|
|
47
|
+
|---|---|
|
|
48
|
+
| Deep tech / IP | Real model/system/hardware differentiation, not an AI wrapper |
|
|
49
|
+
| Physical / Agentic AI | Robotics, autonomy, embodied/edge, action-taking agents |
|
|
50
|
+
| GPU essential | Workloads that genuinely require accelerated compute |
|
|
51
|
+
| Defensibility | Proprietary data/model/hardware or NVIDIA-stack integration |
|
|
52
|
+
| Market & why-now | Large TAM, clear beachhead, commercialization path |
|
|
53
|
+
| Ecosystem fit | Authentic use of CUDA, Isaac, Omniverse, Jetson, NIM, etc. |
|
|
54
|
+
|
|
55
|
+
See `SKILL.md` for the full method and output template.
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: nvidia-inception-idea-booster
|
|
3
|
+
description: >-
|
|
4
|
+
Read a startup's existing idea/notes files in the project and elevate the idea
|
|
5
|
+
into a far stronger, NVIDIA-Inception-ready version — leaning on exactly the
|
|
6
|
+
traits NVIDIA prefers (deep tech, physical/agentic AI, essential GPU
|
|
7
|
+
acceleration, defensibility, large markets, NVIDIA ecosystem fit). Use when the
|
|
8
|
+
user asks to "make my startup idea stronger for NVIDIA", "elevate my idea",
|
|
9
|
+
"improve my startup for Inception", or "rewrite my idea to fit NVIDIA". Writes
|
|
10
|
+
an elevated idea document to an `nvidia-inception/` folder in the project root.
|
|
11
|
+
For scoring/auditing an existing company, use nvidia-inception-starter instead.
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
# NVIDIA Inception Idea Booster
|
|
15
|
+
|
|
16
|
+
Take whatever startup idea already exists in the project, understand it deeply,
|
|
17
|
+
then **transform it into a stronger, defensible, NVIDIA-aligned idea** that maps
|
|
18
|
+
to what NVIDIA Inception actually rewards — without inventing a different company.
|
|
19
|
+
|
|
20
|
+
## When to use vs. the sibling skill
|
|
21
|
+
|
|
22
|
+
- **This skill** reshapes and strengthens the *idea* itself (positioning, wedge,
|
|
23
|
+
tech depth, NVIDIA fit), starting from the user's existing files.
|
|
24
|
+
- **`nvidia-inception-starter`** scores and audits an existing company against
|
|
25
|
+
acceptance criteria and writes a readiness report.
|
|
26
|
+
|
|
27
|
+
Use both together: boost the idea here, then score it there.
|
|
28
|
+
|
|
29
|
+
## Step 1 — Read the existing idea
|
|
30
|
+
|
|
31
|
+
Discover and read the startup-related files already in the project. Look for:
|
|
32
|
+
- `idea*.md/.txt`, `README*`, `pitch*`, `business-plan*`, `vision*`, `notes*`,
|
|
33
|
+
`one-pager*`, `deck*`, `prd*`, `concept*`, `startup*`, and any `docs/` content.
|
|
34
|
+
- Prefer Markdown/text/PDF-exported notes. Scan the repo for whatever describes
|
|
35
|
+
the problem, product, market, and tech.
|
|
36
|
+
|
|
37
|
+
Extract and restate, in your own words:
|
|
38
|
+
- Problem, who has it, and current alternatives
|
|
39
|
+
- Proposed product/solution and how it works
|
|
40
|
+
- Target market and business model
|
|
41
|
+
- Any AI/ML, data, or compute involved
|
|
42
|
+
- Team, stage, traction, and named tech stack
|
|
43
|
+
|
|
44
|
+
If little exists, ask 3–5 focused questions before boosting. **Never discard the
|
|
45
|
+
founder's core intent** — elevate it, don't replace it. Flag unknowns as
|
|
46
|
+
`[UNKNOWN]` rather than inventing facts.
|
|
47
|
+
|
|
48
|
+
## What NVIDIA prefers (the levers you optimize for)
|
|
49
|
+
|
|
50
|
+
Pull the idea toward these — but only where it's authentic to the product:
|
|
51
|
+
|
|
52
|
+
1. **Deep tech / novel IP** — real algorithmic, model, system, or hardware
|
|
53
|
+
differentiation; not an "AI wrapper" over someone else's API.
|
|
54
|
+
2. **Physical & agentic AI** — robotics, autonomy, embodied/edge AI, perception
|
|
55
|
+
+ navigation + actuation, or agents that take real actions. NVIDIA is leaning
|
|
56
|
+
hard into Physical AI.
|
|
57
|
+
3. **GPU acceleration is essential** — the workload genuinely needs accelerated
|
|
58
|
+
compute (training/fine-tuning, large-scale inference, simulation, 3D, RL,
|
|
59
|
+
vision, LLMs) — GPUs are a *must-have*, not a nice-to-have.
|
|
60
|
+
4. **Defensibility / moat** — proprietary models, a unique/proprietary dataset,
|
|
61
|
+
custom hardware, or deep integration with the NVIDIA stack for stickiness.
|
|
62
|
+
5. **Large, impactful market** — autonomy, robotics, healthcare AI, advanced
|
|
63
|
+
manufacturing, smart cities, enterprise AI — clear, massive TAM and a path to
|
|
64
|
+
commercialize and scale globally.
|
|
65
|
+
6. **Technical rigor & momentum** — prototypes, benchmarks, pilots, publications;
|
|
66
|
+
a credible, technical founding team.
|
|
67
|
+
7. **NVIDIA ecosystem synergy** — would clearly use and benefit from NVIDIA
|
|
68
|
+
platforms (CUDA, TensorRT, Triton, NIM, NeMo, Riva, Metropolis, Holoscan,
|
|
69
|
+
Omniverse, Isaac, Jetson, DGX / NVIDIA AI Enterprise), and could collaborate
|
|
70
|
+
on reference designs / whitepapers / joint GTM.
|
|
71
|
+
|
|
72
|
+
Excluded/weak profiles to steer away from: consulting/outsourcing, crypto
|
|
73
|
+
mining/trading, pure reselling, thin AI wrappers with no real compute need.
|
|
74
|
+
|
|
75
|
+
## Step 2 — Elevate the idea
|
|
76
|
+
|
|
77
|
+
For each lever, produce a concrete upgrade to the existing idea:
|
|
78
|
+
- **Sharpen the wedge:** a specific, painful, narrow beachhead use case where
|
|
79
|
+
the product wins decisively before expanding.
|
|
80
|
+
- **Deepen the tech:** identify where to add genuine deep-tech depth (a
|
|
81
|
+
proprietary model, a data flywheel, a simulation/edge component) so GPUs become
|
|
82
|
+
essential. Be honest about what is real vs. aspirational.
|
|
83
|
+
- **Add a Physical/Agentic angle where credible:** reframe toward embodied/edge
|
|
84
|
+
or agentic execution if it fits the problem — don't force it.
|
|
85
|
+
- **Build the moat:** name the defensible asset (data, model, hardware,
|
|
86
|
+
integration) and how it compounds over time.
|
|
87
|
+
- **Right-size the market:** beachhead → adjacent expansion → full TAM, with the
|
|
88
|
+
"why now."
|
|
89
|
+
- **Map NVIDIA tech authentically:** for each technical need, the specific NVIDIA
|
|
90
|
+
technology that serves it and why — tied to a real use case, never as buzzwords.
|
|
91
|
+
|
|
92
|
+
Always keep two views: the **original idea** and the **elevated idea**, so the
|
|
93
|
+
founder sees exactly what changed and why it raises acceptance odds.
|
|
94
|
+
|
|
95
|
+
## Output — write the elevated idea
|
|
96
|
+
|
|
97
|
+
1. Create an `nvidia-inception/` folder in the project root if missing.
|
|
98
|
+
2. Write `nvidia-inception/elevated-idea.md` (UTF-8 Markdown):
|
|
99
|
+
|
|
100
|
+
```
|
|
101
|
+
# Elevated Startup Idea — <Company / Working Name>
|
|
102
|
+
Generated: <YYYY-MM-DD>
|
|
103
|
+
Sources read: <list the files you ingested>
|
|
104
|
+
|
|
105
|
+
## Original Idea (as understood)
|
|
106
|
+
<faithful restatement of the founder's current idea>
|
|
107
|
+
|
|
108
|
+
## Elevated One-Liner
|
|
109
|
+
<one sharp sentence, NVIDIA-aligned, no hype>
|
|
110
|
+
|
|
111
|
+
## Elevated Pitch (problem → wedge → solution → why now)
|
|
112
|
+
|
|
113
|
+
## NVIDIA-Preference Upgrades
|
|
114
|
+
| Lever | Before | After (elevated) | Why it helps acceptance |
|
|
115
|
+
|---|---|---|---|
|
|
116
|
+
| Deep tech / IP | … | … | … |
|
|
117
|
+
| Physical / Agentic AI | … | … | … |
|
|
118
|
+
| GPU essential | … | … | … |
|
|
119
|
+
| Defensibility / moat | … | … | … |
|
|
120
|
+
| Market & why-now | … | … | … |
|
|
121
|
+
| NVIDIA ecosystem fit | … | … | … |
|
|
122
|
+
|
|
123
|
+
## Recommended NVIDIA Stack (tech → use case → reason)
|
|
124
|
+
|
|
125
|
+
## Defensibility / Moat Plan
|
|
126
|
+
|
|
127
|
+
## Beachhead → Expansion Market Path
|
|
128
|
+
|
|
129
|
+
## Proof Plan (prototype, benchmark, pilot, publication)
|
|
130
|
+
|
|
131
|
+
## Risks & Honest Gaps (incl. anything still [UNKNOWN])
|
|
132
|
+
|
|
133
|
+
## Next Steps (so it's ready for nvidia-inception-starter scoring)
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
## Quality bar
|
|
137
|
+
|
|
138
|
+
- **Elevate, don't fabricate.** Strengthen the real idea; never swap it for a
|
|
139
|
+
trendier one or claim capabilities that don't exist.
|
|
140
|
+
- Make GPU dependence and the moat *believable*, with specifics.
|
|
141
|
+
- Recommend NVIDIA tech only where it authentically fits a stated need.
|
|
142
|
+
- Keep the before/after explicit so the founder can choose what to adopt.
|
|
143
|
+
|
|
144
|
+
## Verification checklist (run before finishing)
|
|
145
|
+
|
|
146
|
+
1. You actually read the existing idea files and listed them under "Sources read".
|
|
147
|
+
2. `nvidia-inception/elevated-idea.md` exists with every section above.
|
|
148
|
+
3. The elevated idea preserves the founder's core intent.
|
|
149
|
+
4. Every NVIDIA-preference lever has a concrete before → after upgrade.
|
|
150
|
+
5. NVIDIA tech recommendations are tied to real use cases, not buzzwords.
|
|
151
|
+
6. Honest gaps and `[UNKNOWN]`s are stated, not hidden.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# nvidia-inception-starter
|
|
2
|
+
|
|
3
|
+
An expert advisor that prepares, evaluates, and optimizes your startup for
|
|
4
|
+
**NVIDIA Inception** acceptance — it researches the program and accepted
|
|
5
|
+
companies, scores you **0–100**, audits website/product/AI/architecture/NVIDIA
|
|
6
|
+
alignment, and writes a full readiness report with a 90-day plan.
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npx spirewise install -s nvidia-inception-starter # pick agents + scope
|
|
12
|
+
npx spirewise install -s nvidia-inception-starter -a claude,cursor -sc workspace
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Remove
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npx spirewise remove -s nvidia-inception-starter # pick agents + scope
|
|
19
|
+
npx spirewise remove -s nvidia-inception-starter -a claude,cursor -sc both
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
(No Node? `./install.sh -s nvidia-inception-starter` and `./install.sh remove -s nvidia-inception-starter`.)
|
|
23
|
+
|
|
24
|
+
## Use
|
|
25
|
+
|
|
26
|
+
After installing, ask your agent:
|
|
27
|
+
|
|
28
|
+
> "Assess my startup for NVIDIA Inception"
|
|
29
|
+
|
|
30
|
+
It collects your company details (and researches the program + accepted
|
|
31
|
+
startups), then writes
|
|
32
|
+
**`nvidia-inception/inception-readiness-report.md`** in your project root.
|
|
33
|
+
|
|
34
|
+
## Output
|
|
35
|
+
|
|
36
|
+
`nvidia-inception/inception-readiness-report.md` — Executive summary, Acceptance
|
|
37
|
+
Score (0–100), Acceptance Probability, Strength/Weakness analysis, Competitive
|
|
38
|
+
analysis, Website / Product / AI / Architecture / NVIDIA-alignment audits, an
|
|
39
|
+
Improvement Roadmap, a 90-Day Action Plan, and an Application Readiness report.
|
|
40
|
+
|
|
41
|
+
## Scoring weights
|
|
42
|
+
|
|
43
|
+
| Category | Weight |
|
|
44
|
+
|---|---|
|
|
45
|
+
| AI Strength | 20 |
|
|
46
|
+
| Technical Innovation | 15 |
|
|
47
|
+
| NVIDIA Alignment | 15 |
|
|
48
|
+
| Market Opportunity | 10 |
|
|
49
|
+
| Team Quality | 10 |
|
|
50
|
+
| Product Maturity | 10 |
|
|
51
|
+
| Website Quality | 5 |
|
|
52
|
+
| Pitch Readiness | 5 |
|
|
53
|
+
| Scalability | 5 |
|
|
54
|
+
| Competitive Advantage | 5 |
|
|
55
|
+
|
|
56
|
+
## Good to know
|
|
57
|
+
|
|
58
|
+
NVIDIA Inception is **free, equity-free**, has **no deadline**, and is open to
|
|
59
|
+
**all funding stages**. Core eligibility: incorporated, working website,
|
|
60
|
+
business email, ≥1 developer, generally <10 years old, building an **AI product**
|
|
61
|
+
(not consulting). See `SKILL.md` for the full method, facts, and report template.
|