projectinator 0.1.3 → 0.1.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 +3 -3
- package/package.json +1 -1
- package/src/tui/App.tsx +2 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://www.npmjs.com/package/projectinator)
|
|
8
8
|

|
|
9
9
|

|
|
10
|
-

|
|
11
11
|

|
|
12
12
|

|
|
13
13
|
|
|
@@ -35,7 +35,7 @@ npm install -g projectinator # then just: projectinator
|
|
|
35
35
|
> `npm install -g projectinator`. (If `-g` installs but the command isn't found, npm's global
|
|
36
36
|
> bin dir isn't on your `PATH` — run `npm prefix -g` to locate it, or just use `npx`.)
|
|
37
37
|
|
|
38
|
-
Then, inside the app: **Settings → API keys** and paste an Anthropic, OpenAI, or
|
|
38
|
+
Then, inside the app: **Settings → API keys** and paste an Anthropic, OpenAI, Gemini, or OpenRouter key
|
|
39
39
|
(stored under `~/.projectinator`, never in the repo). That's it — pick **New build** and go.
|
|
40
40
|
|
|
41
41
|
<details>
|
|
@@ -121,7 +121,7 @@ npm run build -- --live --mini # cheap end-to-end proof (~$0.
|
|
|
121
121
|
npm run build -- --live --lock anthropic "idea" # full pipeline on one provider
|
|
122
122
|
npm run build -- --live --mini --resume # resume a halted/finished build (skips done tasks)
|
|
123
123
|
npm run bakeoff -- --capability design "Design a pricing page" # model bake-off
|
|
124
|
-
npm test #
|
|
124
|
+
npm test # 140 tests
|
|
125
125
|
npm run typecheck
|
|
126
126
|
```
|
|
127
127
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "projectinator",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
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,
|
package/src/tui/App.tsx
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
import React, { useEffect, useState } from "react";
|
|
5
5
|
import { Box, Text, useApp, useInput } from "ink";
|
|
6
6
|
import { Spinner, StatusMessage } from "@inkjs/ui";
|
|
7
|
+
import InkSpinner from "ink-spinner"; // a Text-based spinner, safe as an inline glyph inside <Text>
|
|
7
8
|
import type { Provider } from "../types.js";
|
|
8
9
|
import type { OrchestratorEvent } from "../orchestrator.js";
|
|
9
10
|
import { C, BudgetBar, Panel, Chip, Menu as SelectInput, GroupedMenu, KeyHint, useTermRows, TextField as TextInput, type TaskView, type MenuGroup } from "./components.js";
|
|
@@ -1586,7 +1587,7 @@ export default function App(): React.ReactElement {
|
|
|
1586
1587
|
return (
|
|
1587
1588
|
<Box flexDirection="column">
|
|
1588
1589
|
<Box>
|
|
1589
|
-
<Text color="cyan"><
|
|
1590
|
+
<Text color="cyan"><InkSpinner type="dots" /></Text>
|
|
1590
1591
|
<Text bold>{" "}Building</Text>
|
|
1591
1592
|
<Text color={C.textSubtle}>{` ${running} running`}</Text>
|
|
1592
1593
|
</Box>
|