@higherdev/cli 0.1.2 → 0.1.4
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 +23 -10
- package/dist/index.js +4466 -3405
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,14 +6,25 @@ tickets, runs, and spend without a browser.
|
|
|
6
6
|
## Install
|
|
7
7
|
|
|
8
8
|
```bash
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
hd login # six-digit code, emailed
|
|
12
|
-
hd connect # connect Codex to your ChatGPT subscription
|
|
13
|
-
hd use test # pick a workspace
|
|
14
|
-
hd # the live dashboard
|
|
9
|
+
npm i -g @higherdev/cli
|
|
10
|
+
hd login # six-digit code, emailed, then HigherDEV opens
|
|
15
11
|
```
|
|
16
12
|
|
|
13
|
+
`hd` on its own opens it too. Inside, everything is a slash command:
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
/architect talk to your own model, which can do anything here
|
|
17
|
+
/orchestrator talk to the agent that finishes work in flight
|
|
18
|
+
/browse stop talking, look around
|
|
19
|
+
/workspace [slug] switch workspace, or list the ones you can reach
|
|
20
|
+
/board /agents /feed /inbox /ticket HD-12
|
|
21
|
+
/help /exit
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Anything not starting with `/` goes to whoever you are talking to. The header
|
|
25
|
+
always shows the workspace you are on, what is running, and which model is
|
|
26
|
+
answering. `hd login --no-launch` signs in without opening it.
|
|
27
|
+
|
|
17
28
|
Or from the registry: `npm i -g @higherdev/cli`, then the same commands.
|
|
18
29
|
`hd upgrade` updates it, `hd upgrade --check` only reports.
|
|
19
30
|
|
|
@@ -56,15 +67,17 @@ hd ask "why is HD-12 stuck?"
|
|
|
56
67
|
hd msg HD-12 --to builder "also rename the old column" --interrupt
|
|
57
68
|
```
|
|
58
69
|
|
|
59
|
-
`hd plan`
|
|
60
|
-
subscription. It
|
|
70
|
+
`hd plan` talks to **your own model**, here on your machine, on your ChatGPT
|
|
71
|
+
subscription. It is not a worker in a workspace and not a row in the agent
|
|
72
|
+
registry: nothing on the runner dispatches to it, and it reaches the whole
|
|
73
|
+
platform. `hd brain` shows which model it is and connects the subscription the
|
|
74
|
+
first time. It reads the repo, decides what should be built, files an epic,
|
|
61
75
|
and can tune the platform itself: models, effort, routing notes, prompt addenda,
|
|
62
76
|
conventions, budgets. Creating an epic fires `epic.created`, which the
|
|
63
77
|
orchestrator already triggers on, so the handoff needs no glue.
|
|
64
78
|
|
|
65
79
|
```bash
|
|
66
|
-
hd
|
|
67
|
-
hd doctor # what a run would cost, before it runs
|
|
80
|
+
hd brain # which model, and connect it the first time
|
|
68
81
|
hd plan # a conversation: type, it answers, keep going
|
|
69
82
|
```
|
|
70
83
|
|