noah-cursor 1.5.3 → 1.5.5

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 CHANGED
@@ -2,40 +2,131 @@
2
2
  <img src="https://cdn.jsdelivr.net/npm/noah-cursor@latest/assets/noah-cursor-banner.png" alt="Noah Cursor" width="100%" />
3
3
  </p>
4
4
 
5
- Install Noah's reusable Cursor assets — Skills, Rules, Prompts, MCP configs, and Presets — into your project.
5
+ <p align="center">
6
+ <strong>The CLI for shipping Cursor setups that actually work.</strong><br />
7
+ Install battle-tested Skills, Rules, and workflows into any project — in one command.
8
+ </p>
9
+
10
+ <p align="center">
11
+ <a href="https://www.npmjs.com/package/noah-cursor"><img src="https://img.shields.io/npm/v/noah-cursor.svg" alt="npm version" /></a>
12
+ <a href="https://www.npmjs.com/package/noah-cursor"><img src="https://img.shields.io/npm/dm/noah-cursor.svg" alt="npm downloads" /></a>
13
+ <a href="LICENSE"><img src="https://img.shields.io/npm/l/noah-cursor.svg" alt="license" /></a>
14
+ <img src="https://img.shields.io/node/v/noah-cursor.svg" alt="node" />
15
+ <a href="https://www.buymeacoffee.com/itsmenoahpoli"><img src="https://img.shields.io/badge/Buy%20Me%20a%20Coffee-FFDD00?style=flat&logo=buymeacoffee&logoColor=black" alt="Buy Me a Coffee" /></a>
16
+ </p>
6
17
 
7
18
  ```bash
8
- npx noah-cursor add --skill test
19
+ npx noah-cursor add --skill commit-push
9
20
  ```
10
21
 
11
- ## Install
22
+ Stop copy-pasting Cursor prompts between repos. **Noah Cursor** is a developer CLI + curated registry: reusable Skills, Rules, Prompts, MCP configs, and Presets that drop straight into `.cursor/` — no clone, no sign-in, no friction.
23
+
24
+ ## Built for your stack
25
+
26
+ <p align="center">
27
+ <img src="https://skillicons.dev/icons?i=nodejs,typescript,react,nextjs,vue,nuxtjs,nestjs,laravel,php,git&perline=10" alt="Tech stack" />
28
+ </p>
29
+
30
+ <p align="center">
31
+ <img src="https://img.shields.io/badge/Cursor-000000?style=flat-square&logo=cursor&logoColor=white" alt="Cursor" />
32
+ <img src="https://img.shields.io/badge/Node.js-339933?style=flat-square&logo=nodedotjs&logoColor=white" alt="Node.js" />
33
+ <img src="https://img.shields.io/badge/TypeScript-3178C6?style=flat-square&logo=typescript&logoColor=white" alt="TypeScript" />
34
+ <img src="https://img.shields.io/badge/React-61DAFB?style=flat-square&logo=react&logoColor=black" alt="React" />
35
+ <img src="https://img.shields.io/badge/Next.js-000000?style=flat-square&logo=nextdotjs&logoColor=white" alt="Next.js" />
36
+ <img src="https://img.shields.io/badge/Nuxt-00DC82?style=flat-square&logo=nuxt&logoColor=black" alt="Nuxt" />
37
+ <img src="https://img.shields.io/badge/NestJS-E0234E?style=flat-square&logo=nestjs&logoColor=white" alt="NestJS" />
38
+ <img src="https://img.shields.io/badge/Laravel-FF2D20?style=flat-square&logo=laravel&logoColor=white" alt="Laravel" />
39
+ </p>
40
+
41
+ Curated Skills & Rules for the stacks you already ship — React dashboards, Laravel APIs, Next/Nuxt marketing sites, NestJS, and Node.
42
+
43
+ ## Why developers use it
44
+
45
+ | Pain | Noah Cursor |
46
+ | ---- | ----------- |
47
+ | Rebuilding the same Cursor setup on every project | One command installs a full workflow |
48
+ | Vague AI prompts that drift between teammates | Versioned Skills & Rules from a real registry |
49
+ | Hunting docs every time you switch stacks | Stack-specific rules for React, Laravel, Next, Nuxt |
50
+ | Manual QA loops with lint/doctor tools | Fix Skills that run → fix → verify |
51
+
52
+ Built for people who live in the terminal and want Cursor to feel like a product, not a blank slate.
53
+
54
+ ## Demo
55
+
56
+ <p align="center">
57
+ <img src="assets/noah-cursor-demo.gif" alt="Noah Cursor CLI demo" width="100%" />
58
+ </p>
59
+
60
+ ## Quick start
61
+
62
+ Requires **Node.js 20+**.
12
63
 
13
64
  ```bash
14
- # One-shot (recommended)uses the registry bundled in the package
15
- npx noah-cursor add --skill <name>
65
+ # Try it instantly no global install
66
+ npx noah-cursor browse
16
67
 
17
- # Or install globally
68
+ # Or install once
18
69
  npm install -g noah-cursor
70
+ noah-cursor browse
19
71
  ```
20
72
 
21
- Requires **Node.js 20+**. The registry ships inside the package (no GitHub clone or sign-in).
73
+ The registry ships inside the package. Nothing to clone. Nothing to authenticate.
74
+
75
+ ### 30-second wins
76
+
77
+ ```bash
78
+ # Ship cleaner commits every time
79
+ npx noah-cursor add --skill commit-push
80
+
81
+ # Auto-generate a solid project README
82
+ npx noah-cursor add --skill generate-readme
83
+
84
+ # React health pass: run doctor → fix → verify
85
+ npx noah-cursor add --skill react-doctor-fix
86
+
87
+ # Stack rules for a Laravel API + React dashboard
88
+ npx noah-cursor add --rule laravel-api --rule react-spa-dashboard
89
+ ```
90
+
91
+ ## What you get
92
+
93
+ ### Skills — agent workflows you can reuse
94
+
95
+ | Skill | What it does |
96
+ | ----- | ------------ |
97
+ | <img src="https://skillicons.dev/icons?i=git" alt="Git" width="20" height="20" /> `commit-push` | Stage, group by category, draft a clean commit, push |
98
+ | <img src="https://skillicons.dev/icons?i=md" alt="Docs" width="20" height="20" /> `generate-readme` | Generate README with stack, deps, prerequisites, setup |
99
+ | <img src="https://skillicons.dev/icons?i=react" alt="React" width="20" height="20" /> `react-doctor-fix` | Run react-doctor, fix findings, verify no regressions |
100
+ | <img src="https://skillicons.dev/icons?i=laravel" alt="Laravel" width="20" height="20" /> `larastan-fix` | Run Larastan on Laravel, fix, verify |
101
+ | <img src="https://skillicons.dev/icons?i=nestjs" alt="NestJS" width="20" height="20" /> `nestjs-knip-fix` | Knip on NestJS — unused code/deps out, features intact |
102
+ | <img src="https://skillicons.dev/icons?i=nodejs" alt="Node.js" width="20" height="20" /> `node-doctor-fix` | Bundled node-doctor (Knip + hygiene) for generic Node |
103
+
104
+ ### Rules — stack guidance baked into Cursor
105
+
106
+ | Rule | For |
107
+ | ---- | --- |
108
+ | <img src="https://skillicons.dev/icons?i=react,laravel,nextjs,nuxtjs" alt="Stacks" height="20" /> `stack-architecture` | Choosing React SPA vs Laravel API vs Next/Nuxt marketing |
109
+ | <img src="https://skillicons.dev/icons?i=react" alt="React" width="20" height="20" /> `react-spa-dashboard` | React + TypeScript + TanStack Query dashboards |
110
+ | <img src="https://skillicons.dev/icons?i=laravel" alt="Laravel" width="20" height="20" /> `laravel-api` | Headless Laravel APIs (Sanctum-ready) |
111
+ | <img src="https://skillicons.dev/icons?i=nextjs" alt="Next.js" width="20" height="20" /> `nextjs-marketing` | Next.js App Router marketing / branding sites |
112
+ | <img src="https://skillicons.dev/icons?i=nuxtjs" alt="Nuxt" width="20" height="20" /> `nuxt-marketing` | Nuxt 3+ marketing / branding sites |
113
+
114
+ Prompts, MCP configs, and Presets are supported by the CLI — more shipping soon.
22
115
 
23
116
  ## Commands
24
117
 
25
- | Command | Description |
26
- | -------- | --------------------------------------- |
27
- | `add` | Install assets from Noah's registry |
28
- | `browse` | Interactively browse and install assets |
29
- | `search` | Search assets in Noah's registry |
30
- | `list` | List all assets in Noah's registry |
31
- | `remove` | Remove an installed asset |
32
- | `update` | Re-fetch and update installed assets |
33
- | `doctor` | Diagnose environment health |
118
+ | Command | Description |
119
+ | ------- | ----------- |
120
+ | `browse` | Interactive TUI discover & install without memorizing ids |
121
+ | `add` | Install Skills, Rules, Prompts, MCP, or Presets |
122
+ | `search` | Search the registry |
123
+ | `list` | List registry or installed assets |
124
+ | `remove` | Uninstall an asset |
125
+ | `update` | Re-fetch and update installed assets |
126
+ | `doctor` | Diagnose environment health |
34
127
 
35
128
  ### browse
36
129
 
37
- Interactive TUI for discovering assets without knowing their ids:
38
-
39
130
  ```bash
40
131
  noah-cursor browse
41
132
  noah-cursor browse --browse-skills
@@ -45,18 +136,12 @@ noah-cursor browse --browse-mcp
45
136
  noah-cursor browse --browse-presets
46
137
  ```
47
138
 
48
- ```bash
49
- npx noah-cursor browse
50
- npx noah-cursor browse --browse-skills
51
- ```
52
-
53
139
  Controls: ↑↓ navigate · Space select · A toggle all · I invert · Enter confirm · Esc cancel
54
140
 
55
141
  ### add
56
142
 
57
143
  ```bash
58
144
  noah-cursor add
59
-
60
145
  --skill <name>
61
146
  --rule <name>
62
147
  --prompt <name>
@@ -69,21 +154,18 @@ noah-cursor add
69
154
  --verbose
70
155
  ```
71
156
 
72
- Always installs from **Noah's bundled registry** (no other registries).
73
-
74
- Examples:
157
+ Always installs from **Noah's bundled registry**.
75
158
 
76
159
  ```bash
77
- npx noah-cursor add --skill test
78
- npx noah-cursor add --rule test
79
- npx noah-cursor add --all
80
160
  npx noah-cursor add --skill commit-push
161
+ npx noah-cursor add --rule nextjs-marketing
162
+ npx noah-cursor add --all
81
163
  ```
82
164
 
83
165
  ### search / list / remove / update / doctor
84
166
 
85
167
  ```bash
86
- noah-cursor search test
168
+ noah-cursor search doctor
87
169
  noah-cursor list
88
170
  noah-cursor list --installed
89
171
  noah-cursor remove skill test --yes
@@ -91,7 +173,22 @@ noah-cursor update --yes
91
173
  noah-cursor doctor
92
174
  ```
93
175
 
94
- ## Registry specification
176
+ ## How it works
177
+
178
+ Assets land in your project under `.cursor/`:
179
+
180
+ ```
181
+ .cursor/
182
+ skills/
183
+ rules/
184
+ prompts/
185
+ mcp/
186
+ noah.json # tracks what you installed
187
+ ```
188
+
189
+ `noah.json` keeps versions and registry metadata so `update` and `remove` stay reliable across machines and teammates.
190
+
191
+ ## Build your own registry assets
95
192
 
96
193
  This repo is both the **CLI** and the **registry**. At the project root:
97
194
 
@@ -104,20 +201,7 @@ mcp/
104
201
  presets/
105
202
  ```
106
203
 
107
- ### Starter assets
108
-
109
- - **skill** `test`
110
- - **skill** `commit-push`
111
- - **skill** `react-doctor-fix` — run react-doctor, fix findings, verify no regressions
112
- - **skill** `larastan-fix` — run Larastan on Laravel, fix findings, verify no regressions
113
- - **skill** `nestjs-knip-fix` — run Knip on NestJS, fix unused code/deps, verify no regressions
114
- - **skill** `node-doctor-fix` — bundled node-doctor (Knip + package hygiene) for generic Node
115
- - **skill** `generate-readme` — generate project README (stack, deps, setup guide)
116
- - **rule** `test`
117
-
118
- Add curated Noah assets under those folders and register them in `manifest.json`. Presets are supported by the CLI but none are published in this registry yet.
119
-
120
- ### manifest.json
204
+ Add an asset folder, register it in `manifest.json`, ship. Each `id` maps to a folder under the matching directory (or set an explicit `path`).
121
205
 
122
206
  ```json
123
207
  {
@@ -126,66 +210,60 @@ Add curated Noah assets under those folders and register them in `manifest.json`
126
210
  "description": "My Cursor assets",
127
211
  "skills": [
128
212
  {
129
- "id": "test",
213
+ "id": "my-workflow",
130
214
  "version": "1.0.0",
131
- "description": "Sample skill",
132
- "tags": ["test"]
133
- }
134
- ],
135
- "rules": [
136
- {
137
- "id": "test",
138
- "version": "1.0.0",
139
- "description": "Sample rule"
215
+ "description": "What this skill does",
216
+ "tags": ["git"]
140
217
  }
141
218
  ],
219
+ "rules": [],
142
220
  "prompts": [],
143
221
  "mcp": [],
144
222
  "presets": []
145
223
  }
146
224
  ```
147
225
 
148
- Each asset `id` maps to a folder under the matching directory (e.g. `skills/test/`), unless an explicit `path` is set.
149
-
150
- ## Installation targets
151
-
152
- Assets are copied into your project:
153
-
154
- ```
155
- .cursor/
156
- skills/
157
- rules/
158
- prompts/
159
- mcp/
160
- noah.json
161
- ```
162
-
163
- ### .cursor/noah.json
164
-
165
- ```json
166
- {
167
- "registry": "https://github.com/itsmenoahpoli/noah-cursor",
168
- "installed": [
169
- {
170
- "type": "skill",
171
- "id": "test",
172
- "version": "1.0.0"
173
- }
174
- ]
175
- }
176
- ```
177
-
178
226
  ## Development
179
227
 
180
228
  ```bash
181
229
  npm install
182
- npm run build # compiles TypeScript and bundles registry → dist/registry
230
+ npm run build # TypeScript + bundle registry → dist
183
231
  npm test
184
232
  npm run dev -- doctor
185
233
  ```
186
234
 
187
- `npm run build` copies `manifest.json` plus `skills/`, `rules/`, `prompts/`, `mcp/`, and `presets/` into `dist/noah-registry/` so published installs never need to clone GitHub.
235
+ `npm run build` copies `manifest.json` plus `skills/`, `rules/`, `prompts/`, `mcp/`, and `presets/` into `dist/noah-registry/` so published installs never need GitHub access.
236
+
237
+ ## Contributing
238
+
239
+ Ideas for Skills, Rules, or MCP configs? Open an issue or PR. The best assets are ones you already use on real projects — share them so other developers can install them in one command.
240
+
241
+ ## Feedback & requests
242
+
243
+ Have feedback, suggestions, or feature requests? I'd love to hear from you.
244
+
245
+ 📧 **Email:** [patrickpolicarpio08@gmail.com](mailto:patrickpolicarpio08@gmail.com)
246
+
247
+ Whether it's a Skill you want added, a Rule for your stack, a bug report, or an idea to improve the CLI — send a note. Every message helps shape the product.
248
+
249
+ ## Support
250
+
251
+ If Noah Cursor saves you time, consider buying me a coffee — it helps keep the CLI and registry maintained.
252
+
253
+ <p align="center">
254
+ <a href="https://www.buymeacoffee.com/itsmenoahpoli">
255
+ <img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" height="50" />
256
+ </a>
257
+ </p>
258
+
259
+ <p align="center">
260
+ <a href="https://www.buymeacoffee.com/itsmenoahpoli">
261
+ <img src="assets/qr-code.png" alt="Buy Me a Coffee QR code" width="220" />
262
+ </a>
263
+ <br />
264
+ <sub>Scan to support on Buy Me a Coffee</sub>
265
+ </p>
188
266
 
189
267
  ## License
190
268
 
191
- MIT
269
+ MIT © [Noah Poli](https://github.com/itsmenoahpoli)
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "noah-cursor",
3
- "version": "1.5.3",
3
+ "version": "1.5.5",
4
4
  "description": "Install Noah's reusable Cursor assets (Skills, Rules, Prompts, MCP configs, Presets)",
5
5
  "type": "module",
6
6
  "bin": {