crewhaus 0.1.6 → 0.1.8
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/dist/feedback.d.ts +239 -0
- package/dist/feedback.js +602 -0
- package/dist/index.js +403 -26
- package/package.json +65 -64
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crewhaus",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
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,69 +31,70 @@
|
|
|
31
31
|
"test": "bun test src"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@crewhaus/adapter-anthropic": "0.1.
|
|
35
|
-
"@crewhaus/agent-context-isolation": "0.1.
|
|
36
|
-
"@crewhaus/audit-log": "0.1.
|
|
37
|
-
"@crewhaus/eval-optimizer-orchestrator": "0.1.
|
|
38
|
-
"@crewhaus/prompt-optimizer": "0.1.
|
|
39
|
-
"@crewhaus/prompt-optimizer-claude": "0.1.
|
|
40
|
-
"@crewhaus/justification-judge-claude": "0.1.
|
|
41
|
-
"@crewhaus/spec-patch": "0.1.
|
|
42
|
-
"@crewhaus/canary-controller": "0.1.
|
|
43
|
-
"@crewhaus/compiler": "0.1.
|
|
44
|
-
"@crewhaus/computer-use-driver": "0.1.
|
|
45
|
-
"@crewhaus/context-bundle": "0.1.
|
|
46
|
-
"@crewhaus/deployment-controller": "0.1.
|
|
47
|
-
"@crewhaus/egress-classifier": "0.1.
|
|
48
|
-
"@crewhaus/egress-matcher-semantic": "0.1.
|
|
49
|
-
"@crewhaus/embedder": "0.1.
|
|
50
|
-
"@crewhaus/errors": "0.1.
|
|
51
|
-
"@crewhaus/eval-dataset": "0.1.
|
|
52
|
-
"@crewhaus/eval-grader": "0.1.
|
|
53
|
-
"@crewhaus/eval-report": "0.1.
|
|
54
|
-
"@crewhaus/eval-runner": "0.1.
|
|
55
|
-
"@crewhaus/
|
|
56
|
-
"@crewhaus/
|
|
57
|
-
"@crewhaus/
|
|
58
|
-
"@crewhaus/
|
|
59
|
-
"@crewhaus/
|
|
60
|
-
"@crewhaus/
|
|
61
|
-
"@crewhaus/
|
|
62
|
-
"@crewhaus/migration-
|
|
63
|
-
"@crewhaus/
|
|
64
|
-
"@crewhaus/
|
|
65
|
-
"@crewhaus/
|
|
66
|
-
"@crewhaus/
|
|
67
|
-
"@crewhaus/
|
|
68
|
-
"@crewhaus/
|
|
69
|
-
"@crewhaus/
|
|
70
|
-
"@crewhaus/
|
|
71
|
-
"@crewhaus/
|
|
72
|
-
"@crewhaus/
|
|
73
|
-
"@crewhaus/
|
|
74
|
-
"@crewhaus/
|
|
75
|
-
"@crewhaus/tool-
|
|
76
|
-
"@crewhaus/tool-
|
|
77
|
-
"@crewhaus/tool-
|
|
78
|
-
"@crewhaus/tool-
|
|
79
|
-
"@crewhaus/tool-
|
|
80
|
-
"@crewhaus/tool-
|
|
81
|
-
"@crewhaus/tool-image
|
|
82
|
-
"@crewhaus/tool-
|
|
83
|
-
"@crewhaus/tool-
|
|
84
|
-
"@crewhaus/tool-
|
|
85
|
-
"@crewhaus/tool-
|
|
86
|
-
"@crewhaus/tool-
|
|
87
|
-
"@crewhaus/tool-
|
|
88
|
-
"@crewhaus/tool-
|
|
89
|
-
"@crewhaus/tool-
|
|
90
|
-
"@crewhaus/tool-
|
|
91
|
-
"@crewhaus/
|
|
92
|
-
"@crewhaus/
|
|
93
|
-
"@crewhaus/
|
|
94
|
-
"@crewhaus/
|
|
95
|
-
"@crewhaus/sandbox
|
|
96
|
-
"@crewhaus/
|
|
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"
|
|
97
98
|
},
|
|
98
99
|
"devDependencies": {
|
|
99
100
|
"zod": "^3.23.8"
|