projectinator 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -26,6 +26,11 @@ npx projectinator # run without installing
26
26
  npm install -g projectinator # then just: projectinator
27
27
  ```
28
28
 
29
+ > **It's a CLI, not a library.** `npm install projectinator` (without `-g`) only drops it into a
30
+ > project's `node_modules` — it won't create a runnable command. Use `npx projectinator` or
31
+ > `npm install -g projectinator`. (If `-g` installs but the command isn't found, npm's global
32
+ > bin dir isn't on your `PATH` — run `npm prefix -g` to locate it, or just use `npx`.)
33
+
29
34
  Then, inside the app: **Settings → API keys** and paste an Anthropic, OpenAI, or Gemini key
30
35
  (stored under `~/.projectinator`, never in the repo). That's it — pick **New build** and go.
31
36
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "projectinator",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Your AI build team in the terminal — hand it an app idea, a PM model plans a Scrum backlog, and the best model per role designs, codes, and tests it into working files. Bring your own API key.",
5
5
  "type": "module",
6
6
  "private": false,