@qvac/core 0.1.1 → 0.1.2
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 +2 -2
- package/dist/assistant.bundle +5 -5
- package/package.json +7 -4
- package/tui/README.md +133 -0
- package/tui/app.mjs +4179 -0
- package/tui/index.mjs +650 -0
- package/tui/lib/boot-timing.mjs +41 -0
- package/tui/lib/busy-words.mjs +64 -0
- package/tui/lib/export.mjs +125 -0
- package/tui/lib/knowledge-command.mjs +144 -0
- package/tui/lib/knowledge-import.mjs +135 -0
- package/tui/lib/prebuilds.mjs +81 -0
- package/tui/lib/projection-env.mjs +24 -0
- package/tui/lib/render.mjs +136 -0
- package/tui/lib/save-file.mjs +71 -0
- package/tui/lib/select.mjs +63 -0
- package/tui/lib/setup.mjs +109 -0
- package/tui/lib/sidebar.mjs +52 -0
- package/tui/lib/splash-art.mjs +107 -0
- package/tui/lib/splash.mjs +19 -0
- package/tui/lib/upload-frames.mjs +10 -0
- package/tui/lib/wrap.mjs +114 -0
- package/ducks.png +0 -0
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="ducks.png" alt="" width="200">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/tetherto/qvac-core/main/ducks.png" alt="" width="200">
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<h1 align="center">@qvac/core</h1>
|
|
@@ -683,7 +683,7 @@ same replicated stream: load progress, thinking, tokens, tool approvals
|
|
|
683
683
|
```sh
|
|
684
684
|
npm test # node + bare suites
|
|
685
685
|
npm run build:schema # regenerate spec/ from schema/ (bare)
|
|
686
|
-
bun run duck # build the
|
|
686
|
+
bun run duck # build the assistant bundle, then run the TUI on it
|
|
687
687
|
bun run duck:warm # run the TUI against the last-built bundle
|
|
688
688
|
```
|
|
689
689
|
|