@habemus-papadum/aiui 0.3.0 → 0.6.0
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 +6 -1
- package/dist/cli.js +1121 -1149
- package/dist/cli.js.map +1 -1
- package/dist/commands/browser.d.ts +6 -4
- package/dist/commands/clean.d.ts +5 -4
- package/dist/commands/debug.d.ts +1 -9
- package/dist/commands/env.d.ts +36 -0
- package/dist/commands/extension.d.ts +46 -0
- package/dist/commands/mcp.d.ts +10 -0
- package/dist/commands/native-host.d.ts +16 -0
- package/dist/commands/pencil-url.d.ts +18 -0
- package/dist/commands/vite.d.ts +17 -29
- package/dist/config-xLcoLiLT.js +315 -0
- package/dist/config-xLcoLiLT.js.map +1 -0
- package/dist/index.d.ts +4 -6
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/util/aiui-args.d.ts +0 -14
- package/dist/util/channel-launch.d.ts +67 -0
- package/dist/util/channel-target.d.ts +33 -0
- package/dist/util/chrome.d.ts +70 -27
- package/dist/util/config-schema.d.ts +23 -1
- package/dist/util/config.d.ts +21 -11
- package/dist/util/gemini-preflight.d.ts +56 -0
- package/dist/util/managed-browser.d.ts +109 -0
- package/dist/util/openai-preflight.d.ts +1 -1
- package/package.json +9 -9
- package/dist/commands/demo.d.ts +0 -28
- package/dist/commands/paint.d.ts +0 -3
- package/dist/sidecars-BKlhUA0V.js +0 -48
- package/dist/sidecars-BKlhUA0V.js.map +0 -1
- package/dist/util/cft.d.ts +0 -79
- package/dist/util/sidecars.d.ts +0 -62
- package/templates/demo/CLAUDE.md +0 -16
- package/templates/demo/README.md +0 -36
- package/templates/demo/gitignore +0 -4
- package/templates/demo/index.html +0 -11
- package/templates/demo/package.json +0 -23
- package/templates/demo/src/main.ts +0 -51
- package/templates/demo/tsconfig.json +0 -11
- package/templates/demo/vite.config.ts +0 -17
package/README.md
CHANGED
|
@@ -13,7 +13,6 @@ npm install @habemus-papadum/aiui
|
|
|
13
13
|
## CLI
|
|
14
14
|
|
|
15
15
|
```sh
|
|
16
|
-
aiui demo # scaffold a disposable demo playground (safe to re-run — it continues)
|
|
17
16
|
aiui claude # launch Claude Code wired with the aiui channel, plugin, and browser MCP
|
|
18
17
|
aiui vite # launch Vite against the running channel (sets VITE_AIUI_PORT)
|
|
19
18
|
aiui browser # start (or find) the shared session browser; --tunnel <host> = remote-dev local half
|
|
@@ -23,6 +22,12 @@ aiui mcp # forward to the aiui-claude-channel CLI (e.g. `aiui mcp quick`)
|
|
|
23
22
|
aiui --help
|
|
24
23
|
```
|
|
25
24
|
|
|
25
|
+
To create an app to point all of this at, use the scaffolder rather than the CLI:
|
|
26
|
+
|
|
27
|
+
```sh
|
|
28
|
+
npm create @habemus-papadum/aiui@latest my-app
|
|
29
|
+
```
|
|
30
|
+
|
|
26
31
|
Flags for `aiui claude` beginning with `--aiui-` are consumed by aiui (`--aiui-no-chrome`,
|
|
27
32
|
`--aiui-chrome-profile <name>`, `--aiui-tag <tag>`, …); everything else forwards to `claude`
|
|
28
33
|
verbatim. `--help`/`--version` are inert: aiui prints its own answer, then the wrapped tool's
|