@skastr0/quasar-cli-darwin-x64 0.1.0 → 0.1.3

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 +32 -14
  2. package/bin/quasar +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,7 +1,11 @@
1
1
  # Quasar CLI
2
2
 
3
- The Quasar CLI imports local AI agent session histories, validates ingestion
4
- plans, and sends sanitized batches to a Quasar control server.
3
+ The Quasar CLI discovers, parses, ingests, and queries local AI-agent session
4
+ histories.
5
+
6
+ The production control surface is the Effect local server with SQLite truth,
7
+ durable worker queues, and LanceDB search. The npm package ships that production
8
+ CLI as a prebuilt Bun standalone binary behind a small Node launcher.
5
9
 
6
10
  ## Install
7
11
 
@@ -19,20 +23,34 @@ pnpm --package @skastr0/quasar-cli dlx quasar --help
19
23
  ```
20
24
 
21
25
  The npm package ships a Node launcher plus prebuilt Bun standalone binaries for
22
- macOS and Linux on arm64/x64. The Convex control app and dashboard are not
23
- published to npm.
26
+ macOS and Linux on arm64/x64.
27
+
28
+ ## Connect to a Mac mini Quasar server
24
29
 
25
- ## Configuration
30
+ Use the Mac mini's direct Tailscale IP, not MagicDNS, as the proof boundary:
26
31
 
27
- Server-backed commands read `QUASAR_CONTROL_URL` and `QUASAR_CONTROL_TOKEN`, or
28
- `~/.config/quasar/config.json` with:
32
+ ```bash
33
+ export QUASAR_LOCAL_SERVER_URL=http://<mac-mini-tailscale-ip>:6180
34
+ export QUASAR_INGEST_TOKEN=<same-token-configured-on-the-mac-mini-server>
29
35
 
30
- ```json
31
- {
32
- "url": "http://127.0.0.1:3218",
33
- "token": "..."
34
- }
36
+ quasar stats
37
+ quasar search --mode fusion --query "quasar local server" --limit 3
38
+ quasar ingest --provider all --summary
39
+ quasar workers
35
40
  ```
36
41
 
37
- Local discovery and planning commands are read-only against native agent
38
- history folders.
42
+ `ingest` reads native local history folders on the machine running the CLI and
43
+ POSTs mapped sessions to the configured server. The server owns idempotent SQLite
44
+ writes, embedding cache lookup, and search-index queue draining.
45
+ Remote ingest requires `QUASAR_INGEST_TOKEN` or `--ingest-token <token>`; read
46
+ and search commands do not.
47
+
48
+ Override provider roots when needed:
49
+
50
+ ```bash
51
+ export QUASAR_CODEX_ROOT="$HOME/.codex"
52
+ export QUASAR_CLAUDE_ROOT="$HOME/.claude"
53
+ export QUASAR_OPENCODE_ROOT="$HOME/.local/share/opencode"
54
+ export QUASAR_GROK_ROOT="$HOME/.grok"
55
+ export QUASAR_HERMES_ROOT="$HOME/.hermes"
56
+ ```
package/bin/quasar CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skastr0/quasar-cli-darwin-x64",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "description": "Command line importer and client for Quasar AI agent sessions. (darwin-x64 binary).",
5
5
  "license": "MIT",
6
6
  "type": "module",