kraken-code 1.4.0 → 1.5.0
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/assets/kraken-code.schema.json +2 -2
- package/dist/cli/index.js +20 -20
- package/dist/index.js +105 -128
- package/dist/kraken-code.schema.json +2 -2
- package/package.json +5 -3
|
@@ -1074,7 +1074,7 @@
|
|
|
1074
1074
|
}
|
|
1075
1075
|
}
|
|
1076
1076
|
},
|
|
1077
|
-
"Poseidon
|
|
1077
|
+
"Poseidon": {
|
|
1078
1078
|
"type": "object",
|
|
1079
1079
|
"properties": {
|
|
1080
1080
|
"model": {
|
|
@@ -1202,7 +1202,7 @@
|
|
|
1202
1202
|
}
|
|
1203
1203
|
}
|
|
1204
1204
|
},
|
|
1205
|
-
"Scylla
|
|
1205
|
+
"Scylla": {
|
|
1206
1206
|
"type": "object",
|
|
1207
1207
|
"properties": {
|
|
1208
1208
|
"model": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kraken-code",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "Kraken Code - Transforms OpenCode into an autonomous, high-density development environment",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -33,10 +33,11 @@
|
|
|
33
33
|
"build:schema": "bun run script/build-schema.ts && mkdir -p dist && cp assets/kraken-code.schema.json dist/kraken-code.schema.json",
|
|
34
34
|
"build:binary": "bun build --compile src/cli/index.ts --outfile bin/kraken-code",
|
|
35
35
|
"clean": "rm -rf dist bin",
|
|
36
|
-
"prepublishOnly": "bun run clean && bun run build && bun run typecheck",
|
|
36
|
+
"prepublishOnly": "bun run clean && bun run build && bun run typecheck && npx skill-compiler compile --silent",
|
|
37
37
|
"typecheck": "tsc --noEmit",
|
|
38
38
|
"lint": "eslint src/**/*.ts",
|
|
39
39
|
"lint:fix": "eslint src/**/*.ts --fix",
|
|
40
|
+
"lint:console-check": "node scripts/pre-commit-check-console.js",
|
|
40
41
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
41
42
|
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
42
43
|
"test": "bun test",
|
|
@@ -47,7 +48,8 @@
|
|
|
47
48
|
"agent:docs:check": "npx skill-compiler compile --check",
|
|
48
49
|
"agent:docs:suggest": "npx skill-compiler suggest",
|
|
49
50
|
"agent:docs:sync": "npx skill-compiler sync",
|
|
50
|
-
"
|
|
51
|
+
"lint:unguarded-console": "eslint --config .eslintrc.no-unguarded-console.js",
|
|
52
|
+
"precommit": "node scripts/pre-commit-check-console.js"
|
|
51
53
|
},
|
|
52
54
|
"keywords": [
|
|
53
55
|
"opencode",
|