kannaka 0.16.0 → 0.16.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.
Files changed (3) hide show
  1. package/README.md +2 -2
  2. package/install.js +1 -1
  3. package/package.json +4 -4
package/README.md CHANGED
@@ -17,7 +17,7 @@ kannaka recall "what frequency" --top-k 5
17
17
 
18
18
  This package ships a tiny launcher. On install, its `postinstall` step
19
19
  downloads the native `kannaka` binary for your platform from the matching
20
- [GitHub release](https://github.com/NickFlach/kannaka-memory/releases),
20
+ [GitHub release](https://github.com/kannaka-labs/kannaka-memory/releases),
21
21
  verifies its published `sha256`, and places it next to the launcher. No native
22
22
  binary is bundled in the tarball, so one small package serves every platform.
23
23
 
@@ -35,6 +35,6 @@ Supported platforms: **linux**, **macOS**, **windows** on **x86_64** and
35
35
 
36
36
  - Direct install script: `curl -sSf https://install.ninja-portal.com/kannaka | sh`
37
37
  - Docker: `docker run --rm ghcr.io/nickflach/kannaka --version`
38
- - Build from source: <https://github.com/NickFlach/kannaka-memory>
38
+ - Build from source: <https://github.com/kannaka-labs/kannaka-memory>
39
39
 
40
40
  MIT licensed. The version of this package tracks the kannaka release it installs.
package/install.js CHANGED
@@ -18,7 +18,7 @@ const crypto = require("crypto");
18
18
 
19
19
  const pkg = require("./package.json");
20
20
  const VERSION = pkg.version;
21
- const REPO = "NickFlach/kannaka-memory";
21
+ const REPO = "kannaka-labs/kannaka-memory";
22
22
 
23
23
  const OS_MAP = { linux: "linux", darwin: "macos", win32: "windows" };
24
24
  const ARCH_MAP = { x64: "x86_64", arm64: "aarch64" };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kannaka",
3
- "version": "0.16.0",
3
+ "version": "0.16.2",
4
4
  "description": "Kannaka — wave-interference (Holographic Resonance Medium) memory for AI agents. Installs the native `kannaka` CLI.",
5
5
  "bin": {
6
6
  "kannaka": "bin/kannaka.js"
@@ -24,13 +24,13 @@
24
24
  "vector",
25
25
  "cli"
26
26
  ],
27
- "homepage": "https://github.com/NickFlach/kannaka-memory#readme",
27
+ "homepage": "https://github.com/kannaka-labs/kannaka-memory#readme",
28
28
  "repository": {
29
29
  "type": "git",
30
- "url": "git+https://github.com/NickFlach/kannaka-memory.git"
30
+ "url": "git+https://github.com/kannaka-labs/kannaka-memory.git"
31
31
  },
32
32
  "bugs": {
33
- "url": "https://github.com/NickFlach/kannaka-memory/issues"
33
+ "url": "https://github.com/kannaka-labs/kannaka-memory/issues"
34
34
  },
35
35
  "license": "MIT",
36
36
  "engines": {