crewhaus 0.1.8 → 0.2.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 (136) hide show
  1. package/README.md +10 -3
  2. package/dist/advice-apply.d.ts +182 -0
  3. package/dist/advice-apply.js +286 -0
  4. package/dist/advise-rules.d.ts +348 -0
  5. package/dist/advise-rules.js +905 -0
  6. package/dist/alert-sink.d.ts +48 -0
  7. package/dist/alert-sink.js +86 -0
  8. package/dist/approval-gate.d.ts +127 -0
  9. package/dist/approval-gate.js +254 -0
  10. package/dist/audit-verify.d.ts +69 -0
  11. package/dist/audit-verify.js +97 -0
  12. package/dist/autodistill.d.ts +113 -0
  13. package/dist/autodistill.js +256 -0
  14. package/dist/channel-provision.d.ts +360 -0
  15. package/dist/channel-provision.js +881 -0
  16. package/dist/ci-scaffold.d.ts +31 -0
  17. package/dist/ci-scaffold.js +343 -0
  18. package/dist/compile-check.d.ts +90 -0
  19. package/dist/compile-check.js +285 -0
  20. package/dist/compliance-schedule.d.ts +35 -0
  21. package/dist/compliance-schedule.js +36 -0
  22. package/dist/context-pressure.d.ts +80 -0
  23. package/dist/context-pressure.js +166 -0
  24. package/dist/dataset-mine.d.ts +172 -0
  25. package/dist/dataset-mine.js +403 -0
  26. package/dist/datasets.d.ts +124 -0
  27. package/dist/datasets.js +260 -0
  28. package/dist/deploy-canary.d.ts +83 -0
  29. package/dist/deploy-canary.js +87 -0
  30. package/dist/doctor-checks.d.ts +33 -0
  31. package/dist/doctor-checks.js +92 -0
  32. package/dist/doctor-detect.d.ts +108 -0
  33. package/dist/doctor-detect.js +214 -0
  34. package/dist/doctor-fix.d.ts +81 -0
  35. package/dist/doctor-fix.js +164 -0
  36. package/dist/egress-triage.d.ts +121 -0
  37. package/dist/egress-triage.js +261 -0
  38. package/dist/eval-bridge.d.ts +114 -0
  39. package/dist/eval-bridge.js +158 -0
  40. package/dist/eval-coverage.d.ts +140 -0
  41. package/dist/eval-coverage.js +428 -0
  42. package/dist/eval-history.d.ts +48 -0
  43. package/dist/eval-history.js +157 -0
  44. package/dist/eval-matrix.d.ts +80 -0
  45. package/dist/eval-matrix.js +182 -0
  46. package/dist/eval-sentinel.d.ts +65 -0
  47. package/dist/eval-sentinel.js +132 -0
  48. package/dist/faq.d.ts +68 -0
  49. package/dist/faq.js +168 -0
  50. package/dist/feedback.d.ts +9 -2
  51. package/dist/feedback.js +17 -7
  52. package/dist/fewshot.d.ts +83 -0
  53. package/dist/fewshot.js +158 -0
  54. package/dist/fleet.d.ts +207 -0
  55. package/dist/fleet.js +488 -0
  56. package/dist/flywheel.d.ts +193 -0
  57. package/dist/flywheel.js +519 -0
  58. package/dist/graders-suggest.d.ts +186 -0
  59. package/dist/graders-suggest.js +658 -0
  60. package/dist/incident.d.ts +99 -0
  61. package/dist/incident.js +217 -0
  62. package/dist/index.d.ts +9 -1
  63. package/dist/index.js +11601 -964
  64. package/dist/init-interactive.d.ts +105 -0
  65. package/dist/init-interactive.js +208 -0
  66. package/dist/intents.d.ts +105 -0
  67. package/dist/intents.js +292 -0
  68. package/dist/judge-calibrate.d.ts +137 -0
  69. package/dist/judge-calibrate.js +247 -0
  70. package/dist/justification-calibrate.d.ts +150 -0
  71. package/dist/justification-calibrate.js +262 -0
  72. package/dist/justification-gate.d.ts +27 -6
  73. package/dist/justification-gate.js +30 -6
  74. package/dist/knowledge-sync.d.ts +179 -0
  75. package/dist/knowledge-sync.js +551 -0
  76. package/dist/lessons.d.ts +87 -0
  77. package/dist/lessons.js +207 -0
  78. package/dist/lint.d.ts +127 -0
  79. package/dist/lint.js +226 -0
  80. package/dist/loadtest.d.ts +114 -0
  81. package/dist/loadtest.js +196 -0
  82. package/dist/marketplace-cli.d.ts +110 -0
  83. package/dist/marketplace-cli.js +250 -0
  84. package/dist/mcp-doctor.d.ts +121 -0
  85. package/dist/mcp-doctor.js +249 -0
  86. package/dist/model-scan.d.ts +116 -0
  87. package/dist/model-scan.js +226 -0
  88. package/dist/onchain-tune.d.ts +164 -0
  89. package/dist/onchain-tune.js +346 -0
  90. package/dist/permissions-suggest.d.ts +126 -0
  91. package/dist/permissions-suggest.js +333 -0
  92. package/dist/pii-tune.d.ts +107 -0
  93. package/dist/pii-tune.js +122 -0
  94. package/dist/propose.d.ts +117 -0
  95. package/dist/propose.js +184 -0
  96. package/dist/refresh-goldens.d.ts +82 -0
  97. package/dist/refresh-goldens.js +221 -0
  98. package/dist/regression-pin.d.ts +160 -0
  99. package/dist/regression-pin.js +281 -0
  100. package/dist/retention.d.ts +193 -0
  101. package/dist/retention.js +607 -0
  102. package/dist/retire.d.ts +118 -0
  103. package/dist/retire.js +291 -0
  104. package/dist/right-size.d.ts +100 -0
  105. package/dist/right-size.js +123 -0
  106. package/dist/scaffold-evals.d.ts +138 -0
  107. package/dist/scaffold-evals.js +410 -0
  108. package/dist/scope-audit-drift.d.ts +139 -0
  109. package/dist/scope-audit-drift.js +260 -0
  110. package/dist/security-corpus.d.ts +237 -0
  111. package/dist/security-corpus.js +516 -0
  112. package/dist/security-digest.d.ts +173 -0
  113. package/dist/security-digest.js +650 -0
  114. package/dist/sessions-index.d.ts +27 -0
  115. package/dist/sessions-index.js +51 -0
  116. package/dist/slo-doctor.d.ts +67 -0
  117. package/dist/slo-doctor.js +119 -0
  118. package/dist/slo-sink.d.ts +96 -0
  119. package/dist/slo-sink.js +107 -0
  120. package/dist/spec-changelog.d.ts +102 -0
  121. package/dist/spec-changelog.js +237 -0
  122. package/dist/state-backup.d.ts +223 -0
  123. package/dist/state-backup.js +648 -0
  124. package/dist/tools-cli.d.ts +170 -0
  125. package/dist/tools-cli.js +298 -0
  126. package/dist/triage.d.ts +202 -0
  127. package/dist/triage.js +403 -0
  128. package/dist/upgrade.d.ts +57 -0
  129. package/dist/upgrade.js +113 -0
  130. package/dist/version.d.ts +6 -0
  131. package/dist/version.js +27 -0
  132. package/dist/voice-eval.d.ts +138 -0
  133. package/dist/voice-eval.js +309 -0
  134. package/dist/watch.d.ts +58 -0
  135. package/dist/watch.js +97 -0
  136. package/package.json +89 -65
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crewhaus",
3
- "version": "0.1.8",
3
+ "version": "0.2.0",
4
4
  "type": "module",
5
5
  "description": "CrewHaus — the meta-harness compiler for AI agents. Compile one crewhaus.yaml spec into a CLI agent, channel bot, RAG pipeline, multi-agent crew, eval harness, voice or browser agent, and more.",
6
6
  "keywords": [
@@ -31,70 +31,94 @@
31
31
  "test": "bun test src"
32
32
  },
33
33
  "dependencies": {
34
- "@crewhaus/adapter-anthropic": "0.1.8",
35
- "@crewhaus/agent-context-isolation": "0.1.8",
36
- "@crewhaus/audit-log": "0.1.8",
37
- "@crewhaus/eval-optimizer-orchestrator": "0.1.8",
38
- "@crewhaus/prompt-optimizer": "0.1.8",
39
- "@crewhaus/prompt-optimizer-claude": "0.1.8",
40
- "@crewhaus/justification-judge-claude": "0.1.8",
41
- "@crewhaus/spec-patch": "0.1.8",
42
- "@crewhaus/canary-controller": "0.1.8",
43
- "@crewhaus/compiler": "0.1.8",
44
- "@crewhaus/computer-use-driver": "0.1.8",
45
- "@crewhaus/context-bundle": "0.1.8",
46
- "@crewhaus/deployment-controller": "0.1.8",
47
- "@crewhaus/egress-classifier": "0.1.8",
48
- "@crewhaus/egress-matcher-semantic": "0.1.8",
49
- "@crewhaus/embedder": "0.1.8",
50
- "@crewhaus/errors": "0.1.8",
51
- "@crewhaus/eval-dataset": "0.1.8",
52
- "@crewhaus/eval-grader": "0.1.8",
53
- "@crewhaus/eval-report": "0.1.8",
54
- "@crewhaus/eval-runner": "0.1.8",
55
- "@crewhaus/event-log": "0.1.8",
56
- "@crewhaus/hooks-engine": "0.1.8",
57
- "@crewhaus/infra-utils": "0.1.8",
58
- "@crewhaus/ir": "0.1.8",
59
- "@crewhaus/logging": "0.1.8",
60
- "@crewhaus/mcp-host": "0.1.8",
61
- "@crewhaus/model-router": "0.1.8",
62
- "@crewhaus/migration-engine": "0.1.8",
63
- "@crewhaus/migration-runner": "0.1.8",
64
- "@crewhaus/permission-engine": "0.1.8",
65
- "@crewhaus/run-context": "0.1.8",
66
- "@crewhaus/runtime-core": "0.1.8",
67
- "@crewhaus/secrets-manager": "0.1.8",
68
- "@crewhaus/session-store": "0.1.8",
69
- "@crewhaus/spec-registry": "0.1.8",
70
- "@crewhaus/skills-registry": "0.1.8",
71
- "@crewhaus/slash-commands": "0.1.8",
72
- "@crewhaus/spec": "0.1.8",
73
- "@crewhaus/sub-agent-spawner": "0.1.8",
74
- "@crewhaus/trace-event-bus": "0.1.8",
75
- "@crewhaus/tool-bash": "0.1.8",
76
- "@crewhaus/tool-builder": "0.1.8",
77
- "@crewhaus/tool-catalog": "0.1.8",
78
- "@crewhaus/tool-codegraph": "0.1.8",
79
- "@crewhaus/tool-fetch": "0.1.8",
80
- "@crewhaus/tool-fs": "0.1.8",
81
- "@crewhaus/tool-image": "0.1.8",
82
- "@crewhaus/tool-image-generation": "0.1.8",
83
- "@crewhaus/tool-document-ingest": "0.1.8",
84
- "@crewhaus/tool-mcp": "0.1.8",
85
- "@crewhaus/tool-mouse-keyboard": "0.1.8",
86
- "@crewhaus/tool-navigate": "0.1.8",
87
- "@crewhaus/tool-screen-capture": "0.1.8",
88
- "@crewhaus/tool-task": "0.1.8",
89
- "@crewhaus/tool-todo": "0.1.8",
90
- "@crewhaus/tool-vision-grounding": "0.1.8",
91
- "@crewhaus/tool-web": "0.1.8",
92
- "@crewhaus/docker-images": "0.1.8",
93
- "@crewhaus/crewhaus-cloud": "0.1.8",
94
- "@crewhaus/federation-discovery": "0.1.8",
95
- "@crewhaus/sandbox": "0.1.8",
96
- "@crewhaus/sandbox-image-registry": "0.1.8",
97
- "@crewhaus/compliance-controls": "0.1.8"
34
+ "@crewhaus/adapter-anthropic": "0.2.0",
35
+ "@crewhaus/agent-context-isolation": "0.2.0",
36
+ "@crewhaus/audit-log": "0.2.0",
37
+ "@crewhaus/eval-optimizer-orchestrator": "0.2.0",
38
+ "@crewhaus/prompt-optimizer": "0.2.0",
39
+ "@crewhaus/prompt-optimizer-claude": "0.2.0",
40
+ "@crewhaus/justification-judge-claude": "0.2.0",
41
+ "@crewhaus/spec-patch": "0.2.0",
42
+ "@crewhaus/canary-controller": "0.2.0",
43
+ "@crewhaus/compiler": "0.2.0",
44
+ "@crewhaus/computer-use-driver": "0.2.0",
45
+ "@crewhaus/context-bundle": "0.2.0",
46
+ "@crewhaus/cost-tracker": "0.2.0",
47
+ "@crewhaus/data-retention-engine": "0.2.0",
48
+ "@crewhaus/dataset-registry": "0.2.0",
49
+ "@crewhaus/deployment-controller": "0.2.0",
50
+ "@crewhaus/egress-classifier": "0.2.0",
51
+ "@crewhaus/egress-matcher-semantic": "0.2.0",
52
+ "@crewhaus/embedder": "0.2.0",
53
+ "@crewhaus/errors": "0.2.0",
54
+ "@crewhaus/eval-dataset": "0.2.0",
55
+ "@crewhaus/eval-grader": "0.2.0",
56
+ "@crewhaus/eval-judge": "0.2.0",
57
+ "@crewhaus/eval-report": "0.2.0",
58
+ "@crewhaus/eval-runner": "0.2.0",
59
+ "@crewhaus/event-log": "0.2.0",
60
+ "@crewhaus/gateway-server": "0.2.0",
61
+ "@crewhaus/grader-safety-classifiers": "0.2.0",
62
+ "@crewhaus/hooks-engine": "0.2.0",
63
+ "@crewhaus/infra-utils": "0.2.0",
64
+ "@crewhaus/ir": "0.2.0",
65
+ "@crewhaus/ir-passes": "0.2.0",
66
+ "@crewhaus/logging": "0.2.0",
67
+ "@crewhaus/mcp-host": "0.2.0",
68
+ "@crewhaus/memory-store": "0.2.0",
69
+ "@crewhaus/model-router": "0.2.0",
70
+ "@crewhaus/module-marketplace-client": "0.2.0",
71
+ "@crewhaus/migration-engine": "0.2.0",
72
+ "@crewhaus/migration-runner": "0.2.0",
73
+ "@crewhaus/plugin-registry": "0.2.0",
74
+ "@crewhaus/plugin-sdk": "0.2.0",
75
+ "@crewhaus/permission-engine": "0.2.0",
76
+ "@crewhaus/pii-redactor": "0.2.0",
77
+ "@crewhaus/prompt-injection-detector": "0.2.0",
78
+ "@crewhaus/regression-runner": "0.2.0",
79
+ "@crewhaus/run-context": "0.2.0",
80
+ "@crewhaus/runtime-core": "0.2.0",
81
+ "@crewhaus/secrets-manager": "0.2.0",
82
+ "@crewhaus/session-store": "0.2.0",
83
+ "@crewhaus/spec-registry": "0.2.0",
84
+ "@crewhaus/skills-registry": "0.2.0",
85
+ "@crewhaus/slash-commands": "0.2.0",
86
+ "@crewhaus/smoke-harness": "0.2.0",
87
+ "@crewhaus/spec": "0.2.0",
88
+ "@crewhaus/sub-agent-spawner": "0.2.0",
89
+ "@crewhaus/template-marketplace-client": "0.2.0",
90
+ "@crewhaus/template-registry": "0.2.0",
91
+ "@crewhaus/tenancy": "0.2.0",
92
+ "@crewhaus/trace-event-bus": "0.2.0",
93
+ "@crewhaus/tool-bash": "0.2.0",
94
+ "@crewhaus/tool-builder": "0.2.0",
95
+ "@crewhaus/target-cli": "0.2.0",
96
+ "@crewhaus/target-eval-bundle": "0.2.0",
97
+ "@crewhaus/tool-catalog": "0.2.0",
98
+ "@crewhaus/tool-code-execution": "0.2.0",
99
+ "@crewhaus/tool-codegraph": "0.2.0",
100
+ "@crewhaus/tool-fetch": "0.2.0",
101
+ "@crewhaus/tool-fs": "0.2.0",
102
+ "@crewhaus/tool-image": "0.2.0",
103
+ "@crewhaus/tool-image-generation": "0.2.0",
104
+ "@crewhaus/tool-document-ingest": "0.2.0",
105
+ "@crewhaus/tool-mcp": "0.2.0",
106
+ "@crewhaus/tool-memory": "0.2.0",
107
+ "@crewhaus/tool-mouse-keyboard": "0.2.0",
108
+ "@crewhaus/tool-navigate": "0.2.0",
109
+ "@crewhaus/tool-permission-matcher": "0.2.0",
110
+ "@crewhaus/tool-screen-capture": "0.2.0",
111
+ "@crewhaus/tool-task": "0.2.0",
112
+ "@crewhaus/tool-todo": "0.2.0",
113
+ "@crewhaus/tool-vision-grounding": "0.2.0",
114
+ "@crewhaus/tool-web": "0.2.0",
115
+ "@crewhaus/docker-images": "0.2.0",
116
+ "@crewhaus/crewhaus-cloud": "0.2.0",
117
+ "@crewhaus/federation-discovery": "0.2.0",
118
+ "@crewhaus/sandbox": "0.2.0",
119
+ "@crewhaus/sandbox-image-registry": "0.2.0",
120
+ "@crewhaus/compliance-controls": "0.2.0",
121
+ "yaml": "^2.6.0"
98
122
  },
99
123
  "devDependencies": {
100
124
  "zod": "^3.23.8"