@higherdev/cli 0.1.3 → 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.
Files changed (3) hide show
  1. package/README.md +17 -6
  2. package/dist/index.js +4406 -3518
  3. 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
- pnpm --filter @higherdev/cli build
10
- cd apps/cli && npm link # puts `hd` on your PATH
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