quavil 3.0.7 → 4.0.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.
Files changed (2) hide show
  1. package/README.md +50 -0
  2. package/package.json +5 -5
package/README.md ADDED
@@ -0,0 +1,50 @@
1
+ # quavil
2
+
3
+ `quavil` is the npm launcher package for the Quavil CLI.
4
+
5
+ Installing it places the `qvl` binary on your PATH and pulls in the correct
6
+ platform-specific package through `optionalDependencies`.
7
+
8
+ ## Install
9
+
10
+ ```bash
11
+ npm install -g quavil
12
+ ```
13
+
14
+ After installation:
15
+
16
+ ```bash
17
+ qvl --version
18
+ qvl
19
+ ```
20
+
21
+ ## Package Layout
22
+
23
+ This package contains:
24
+
25
+ - `bin/qvl` as the launcher entrypoint
26
+ - `README.md`
27
+ - `optionalDependencies` on the platform packages:
28
+ - `qvl-darwin-arm64`
29
+ - `qvl-darwin-x64`
30
+ - `qvl-linux-arm64`
31
+ - `qvl-linux-x64`
32
+
33
+ ## Release Model
34
+
35
+ The npm packages are published by `.github/workflows/release.yml`.
36
+
37
+ That workflow:
38
+
39
+ 1. builds and packages release binaries
40
+ 2. extracts the platform binary into each platform package
41
+ 3. updates the package versions from the release tag
42
+ 4. publishes the platform packages
43
+ 5. publishes the `quavil` meta-package with matching optional dependency
44
+ versions
45
+
46
+ ## Notes
47
+
48
+ - the executable name is `qvl`
49
+ - this package targets macOS and Linux on x64 and arm64
50
+ - source and issue tracking live at <https://github.com/Quavil/code>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quavil",
3
- "version": "3.0.7",
3
+ "version": "4.0.1",
4
4
  "description": "AI coding agent for the terminal",
5
5
  "license": "GPL-3.0-or-later",
6
6
  "repository": {
@@ -24,10 +24,10 @@
24
24
  "README.md"
25
25
  ],
26
26
  "optionalDependencies": {
27
- "qvl-darwin-arm64": "3.0.7",
28
- "qvl-darwin-x64": "3.0.7",
29
- "qvl-linux-x64": "3.0.7",
30
- "qvl-linux-arm64": "3.0.7"
27
+ "qvl-darwin-arm64": "4.0.1",
28
+ "qvl-darwin-x64": "4.0.1",
29
+ "qvl-linux-x64": "4.0.1",
30
+ "qvl-linux-arm64": "4.0.1"
31
31
  },
32
32
  "os": [
33
33
  "darwin",