@kici-dev/compiler 0.8.0 → 0.9.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.
Files changed (40) hide show
  1. package/dist/cli.js +4 -3
  2. package/dist/commands/docs.js +2 -2
  3. package/dist/commands/feedback.d.ts +23 -1
  4. package/dist/commands/feedback.js +86 -9
  5. package/dist/commands/index.d.ts +2 -2
  6. package/dist/commands/index.js +2 -2
  7. package/dist/commands/local.d.ts +4 -3
  8. package/dist/commands/local.js +5 -4
  9. package/dist/commands/report/identity.js +1 -1
  10. package/dist/commands/run-banner.d.ts +1 -1
  11. package/dist/commands/run-banner.js +1 -1
  12. package/dist/commands/verify-attestation.js +1 -1
  13. package/dist/llm-context/llms-architecture.txt +8 -6
  14. package/dist/llm-context/llms-cli-remote.txt +14 -11
  15. package/dist/llm-context/llms-cli.txt +2 -2
  16. package/dist/llm-context/llms-features-execution.txt +8 -8
  17. package/dist/llm-context/llms-features.txt +452 -133
  18. package/dist/llm-context/llms-full.txt +529 -190
  19. package/dist/llm-context/llms-getting-started.txt +32 -15
  20. package/dist/llm-context/llms-providers.txt +2 -2
  21. package/dist/llm-context/llms-sdk-runtime.txt +5 -2
  22. package/dist/llm-context/llms-sdk.txt +7 -12
  23. package/dist/llm-context/llms.txt +6 -5
  24. package/dist/local-plane/orchestrator-process.d.ts +4 -5
  25. package/dist/local-plane/orchestrator-process.js +2 -1
  26. package/dist/local-plane/plane-manager.js +2 -2
  27. package/dist/templates/agents-md.d.ts +1 -1
  28. package/dist/templates/agents-md.js +9 -7
  29. package/dist/templates/package-json.js +1 -1
  30. package/dist/templates/workflows/hello-world.ts +1 -1
  31. package/dist/templates/workflows/pr-checks.ts +2 -2
  32. package/dist/test-runner/job-executor.js +3 -2
  33. package/dist/types.d.ts +12 -35
  34. package/dist/types.js +2 -12
  35. package/dist/types.test-d.d.ts +2 -0
  36. package/dist/types.test-d.js +63 -0
  37. package/dist/workflows/hello-world.ts +1 -1
  38. package/dist/workflows/pr-checks.ts +2 -2
  39. package/package.json +15 -15
  40. package/sbom.spdx.json +1303 -1483
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kici-dev/compiler",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "description": "Compiler and CLI for KiCI workflows. Compiles `.kici/workflows/*.ts` to a `kici.lock.json` file consumed by the orchestrator and agents, and runs workflows locally or against a remote orchestrator.",
5
5
  "keywords": [
6
6
  "ci",
@@ -45,38 +45,38 @@
45
45
  "./cli": "./dist/cli.js"
46
46
  },
47
47
  "dependencies": {
48
- "@inquirer/prompts": "^8.7.0",
48
+ "@inquirer/prompts": "^8.7.2",
49
49
  "archiver": "^8.0.0",
50
50
  "chokidar": "^5.0.0",
51
51
  "commander": "^15.0.0",
52
52
  "embedded-postgres": "18.4.0-beta.17",
53
53
  "fast-glob": "^3.3.3",
54
- "open": "11.0.0",
54
+ "open": "11.0.4",
55
55
  "picocolors": "^1.1.1",
56
56
  "picomatch": "^4.0.7",
57
57
  "tar": "^7.5.22",
58
- "typescript": "^6.0.3",
59
58
  "ws": "^8.21.3",
60
- "wsl-utils": "^0.3.0",
61
- "yaml": "^2.9.0",
62
- "zod": "^4.4.3",
59
+ "wsl-utils": "^1.0.0",
60
+ "yaml": "^2.9.1",
61
+ "zod": "^4.6.5",
63
62
  "zx": "^8.8.5",
64
- "@kici-dev/agent": "0.8.0",
65
- "@kici-dev/core": "0.8.0",
66
- "@kici-dev/engine": "0.8.0",
67
- "@kici-dev/orchestrator": "0.8.0"
63
+ "@kici-dev/agent": "0.9.0",
64
+ "@kici-dev/orchestrator": "0.9.0",
65
+ "@kici-dev/core": "0.9.0",
66
+ "@kici-dev/engine": "0.9.0"
68
67
  },
69
68
  "devDependencies": {
70
69
  "@types/archiver": "^8.0.0",
71
- "jszip": "^3.10.1"
70
+ "jszip": "^3.10.2",
71
+ "typescript": "npm:@typescript/typescript6@^6.0.2"
72
72
  },
73
73
  "peerDependencies": {
74
- "@kici-dev/sdk": "0.8.0"
74
+ "@kici-dev/sdk": "0.9.0"
75
75
  },
76
76
  "scripts": {
77
- "build": "node ../../scripts/build-ts.mjs && tsgo --emitDeclarationOnly",
77
+ "build": "node ../../scripts/build-ts.mjs && tsc --emitDeclarationOnly",
78
78
  "postbuild": "zx hack/postbuild.mjs",
79
- "typecheck": "tsgo --noEmit",
79
+ "typecheck": "tsc --noEmit",
80
80
  "test": "vitest run",
81
81
  "test:watch": "vitest"
82
82
  }