@tplog/hasapi 0.1.0 → 0.1.1
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 +8 -6
- package/bin/hasapi.mjs +0 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,9 +5,12 @@ One command to set up the [Pi](https://github.com/earendil-works/pi-mono) coding
|
|
|
5
5
|
## Quick start
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npx @tplog/hasapi
|
|
8
|
+
npx -y @tplog/hasapi
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
+
The `-y` flag skips npx's first-run install confirmation. Without it, an uncached or
|
|
12
|
+
non-interactive run can fail with `sh: hasapi: command not found`.
|
|
13
|
+
|
|
11
14
|
It will:
|
|
12
15
|
|
|
13
16
|
1. Install `pi` for you if it isn't on PATH yet.
|
|
@@ -20,10 +23,10 @@ Install is **idempotent** — extensions already in your pi settings are skipped
|
|
|
20
23
|
|
|
21
24
|
| Command | What it does |
|
|
22
25
|
| --- | --- |
|
|
23
|
-
| `npx @tplog/hasapi` | Install everything (extensions + skills) |
|
|
24
|
-
| `npx @tplog/hasapi status` | Show which extensions/skills are installed |
|
|
25
|
-
| `npx @tplog/hasapi remove` | Remove the hasapi extensions and skills |
|
|
26
|
-
| `npx @tplog/hasapi doctor` | Check your environment for common problems |
|
|
26
|
+
| `npx -y @tplog/hasapi` | Install everything (extensions + skills) |
|
|
27
|
+
| `npx -y @tplog/hasapi status` | Show which extensions/skills are installed |
|
|
28
|
+
| `npx -y @tplog/hasapi remove` | Remove the hasapi extensions and skills |
|
|
29
|
+
| `npx -y @tplog/hasapi doctor` | Check your environment for common problems |
|
|
27
30
|
|
|
28
31
|
## What gets installed
|
|
29
32
|
|
|
@@ -41,7 +44,6 @@ Install is **idempotent** — extensions already in your pi settings are skipped
|
|
|
41
44
|
- `npm:pi-generative-ui` — generative UI
|
|
42
45
|
- `npm:glimpseui` — native UI widgets and dialogs
|
|
43
46
|
- `npm:pi-provider-kimi-code` — Kimi model provider
|
|
44
|
-
- `npm:pi-claude-bridge` — Claude Code provider bridge
|
|
45
47
|
- `npm:@narumitw/pi-chrome-devtools` — Chrome DevTools control
|
|
46
48
|
|
|
47
49
|
**Skills** — the `hasapi-skills/` bundle (diagnosis + implementation chain) copied to
|
package/bin/hasapi.mjs
CHANGED
|
@@ -31,7 +31,6 @@ const EXTENSIONS = [
|
|
|
31
31
|
{ id: "generative-ui", source: "npm:pi-generative-ui", description: "Generative UI" },
|
|
32
32
|
{ id: "glimpse", source: "npm:glimpseui", description: "Native UI widgets and dialogs" },
|
|
33
33
|
{ id: "provider-kimi-code", source: "npm:pi-provider-kimi-code", description: "Kimi model provider" },
|
|
34
|
-
{ id: "claude-bridge", source: "npm:pi-claude-bridge", description: "Claude Code provider bridge" },
|
|
35
34
|
{ id: "chrome-devtools", source: "npm:@narumitw/pi-chrome-devtools", description: "Chrome DevTools control" },
|
|
36
35
|
];
|
|
37
36
|
|