@aikdna/kdna-cli 0.16.8 → 0.16.10
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/package.json +2 -2
- package/src/install.js +1 -1
- package/src/registry.js +1 -1
- package/src/setup.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aikdna/kdna-cli",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.10",
|
|
4
4
|
"description": "KDNA CLI — create, validate, install, and manage domain cognition packages for AI agents.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"bin": {
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
"homepage": "https://aikdna.com",
|
|
43
43
|
"bugs": {
|
|
44
|
-
"url": "https://github.com/
|
|
44
|
+
"url": "https://github.com/aikdna/kdna-cli/issues"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": ">=18"
|
package/src/install.js
CHANGED
|
@@ -96,7 +96,7 @@ function ensureLoaderSkill() {
|
|
|
96
96
|
// This must come FIRST so we don't ship stale local copies to users.
|
|
97
97
|
sources.push({
|
|
98
98
|
type: 'remote',
|
|
99
|
-
url: 'https://raw.githubusercontent.com/
|
|
99
|
+
url: 'https://raw.githubusercontent.com/aikdna/kdna-skills/main/kdna-loader/SKILL.md',
|
|
100
100
|
});
|
|
101
101
|
|
|
102
102
|
// Source 2: offline fallback — KDNA repo local checkout, only used if the
|
package/src/registry.js
CHANGED
|
@@ -21,7 +21,7 @@ const CONFIG_FILE = path.join(USER_KDNA_DIR, 'config.json');
|
|
|
21
21
|
const DEFAULT_OFFICIAL_SCOPE = '@aikdna';
|
|
22
22
|
const CANONICAL_REGISTRY_URL =
|
|
23
23
|
process.env.KDNA_REGISTRY_URL ||
|
|
24
|
-
'https://raw.githubusercontent.com/
|
|
24
|
+
'https://raw.githubusercontent.com/aikdna/kdna-registry/main/domains.json';
|
|
25
25
|
|
|
26
26
|
const NAME_RE = /^@([a-z][a-z0-9-]*)\/([a-z][a-z0-9_]*)$/;
|
|
27
27
|
const BARE_NAME_RE = /^[a-z][a-z0-9_]*$/;
|
package/src/setup.js
CHANGED
|
@@ -18,7 +18,7 @@ const path = require('path');
|
|
|
18
18
|
const USER_KDNA_DIR = path.join(process.env.HOME || process.env.USERPROFILE || '.', '.kdna');
|
|
19
19
|
const DOMAINS_DIR = path.join(USER_KDNA_DIR, 'domains');
|
|
20
20
|
const CLUSTERS_DIR = path.join(USER_KDNA_DIR, 'clusters');
|
|
21
|
-
const SKILLS_REPO = 'https://raw.githubusercontent.com/
|
|
21
|
+
const SKILLS_REPO = 'https://raw.githubusercontent.com/aikdna/kdna-skills/main';
|
|
22
22
|
|
|
23
23
|
const AGENTS = [
|
|
24
24
|
{
|