@executioncontrolprotocol/harnesses-browser-coding 0.10.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/README.md +21 -0
- package/dist/browser-coding-harness.d.ts +50 -0
- package/dist/browser-coding-harness.d.ts.map +1 -0
- package/dist/browser-coding-harness.js +76 -0
- package/dist/browser-coding-harness.js.map +1 -0
- package/dist/fluent-patch-hints.d.ts +18 -0
- package/dist/fluent-patch-hints.d.ts.map +1 -0
- package/dist/fluent-patch-hints.js +262 -0
- package/dist/fluent-patch-hints.js.map +1 -0
- package/dist/harness-coding-config.d.ts +45 -0
- package/dist/harness-coding-config.d.ts.map +1 -0
- package/dist/harness-coding-config.js +87 -0
- package/dist/harness-coding-config.js.map +1 -0
- package/dist/harness-ids.d.ts +6 -0
- package/dist/harness-ids.d.ts.map +1 -0
- package/dist/harness-ids.js +6 -0
- package/dist/harness-ids.js.map +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -0
- package/dist/intent-classification-coding.d.ts +8 -0
- package/dist/intent-classification-coding.d.ts.map +1 -0
- package/dist/intent-classification-coding.js +172 -0
- package/dist/intent-classification-coding.js.map +1 -0
- package/dist/prompts/build-coding-prompt.d.ts +11 -0
- package/dist/prompts/build-coding-prompt.d.ts.map +1 -0
- package/dist/prompts/build-coding-prompt.js +17 -0
- package/dist/prompts/build-coding-prompt.js.map +1 -0
- package/dist/prompts/coding-prompt-fixture-ids.d.ts +10 -0
- package/dist/prompts/coding-prompt-fixture-ids.d.ts.map +1 -0
- package/dist/prompts/coding-prompt-fixture-ids.js +8 -0
- package/dist/prompts/coding-prompt-fixture-ids.js.map +1 -0
- package/dist/prompts/fixtures-root.d.ts +5 -0
- package/dist/prompts/fixtures-root.d.ts.map +1 -0
- package/dist/prompts/fixtures-root.js +7 -0
- package/dist/prompts/fixtures-root.js.map +1 -0
- package/dist/prompts/index.d.ts +4 -0
- package/dist/prompts/index.d.ts.map +1 -0
- package/dist/prompts/index.js +4 -0
- package/dist/prompts/index.js.map +1 -0
- package/dist/prompts/load-harness-prompt.browser.d.ts +4 -0
- package/dist/prompts/load-harness-prompt.browser.d.ts.map +1 -0
- package/dist/prompts/load-harness-prompt.browser.js +32 -0
- package/dist/prompts/load-harness-prompt.browser.js.map +1 -0
- package/dist/prompts/load-harness-prompt.d.ts +2 -0
- package/dist/prompts/load-harness-prompt.d.ts.map +1 -0
- package/dist/prompts/load-harness-prompt.js +2 -0
- package/dist/prompts/load-harness-prompt.js.map +1 -0
- package/dist/prompts/load-harness-prompt.node.d.ts +4 -0
- package/dist/prompts/load-harness-prompt.node.d.ts.map +1 -0
- package/dist/prompts/load-harness-prompt.node.js +20 -0
- package/dist/prompts/load-harness-prompt.node.js.map +1 -0
- package/dist/register.d.ts +5 -0
- package/dist/register.d.ts.map +1 -0
- package/dist/register.js +14 -0
- package/dist/register.js.map +1 -0
- package/dist/workflow-assistant-coding.d.ts +9 -0
- package/dist/workflow-assistant-coding.d.ts.map +1 -0
- package/dist/workflow-assistant-coding.js +282 -0
- package/dist/workflow-assistant-coding.js.map +1 -0
- package/dist/workflow-authoring-coding.d.ts +9 -0
- package/dist/workflow-authoring-coding.d.ts.map +1 -0
- package/dist/workflow-authoring-coding.js +214 -0
- package/dist/workflow-authoring-coding.js.map +1 -0
- package/fixtures/eval-cases/assistant.cases.json +658 -0
- package/fixtures/eval-cases/intent.cases.json +587 -0
- package/fixtures/eval-cases/workflow-create.cases.json +493 -0
- package/fixtures/eval-cases/workflow-patch.cases.json +379 -0
- package/fixtures/harness-prompts/intent-classification-coding.prompt.json +56 -0
- package/fixtures/harness-prompts/workflow-assistant-coding.prompt.json +70 -0
- package/fixtures/harness-prompts/workflow-authoring-create-coding.prompt.json +42 -0
- package/fixtures/harness-prompts/workflow-authoring-patch-coding.prompt.json +50 -0
- package/fixtures/runs/completed-with-refs.json +18 -0
- package/fixtures/runs/failed-echo-step.json +29 -0
- package/fixtures/runs/running-pending.json +14 -0
- package/fixtures/workflows/echo-validate-reorder.json +26 -0
- package/fixtures/workflows/echo-workflow.json +20 -0
- package/fixtures/workflows/multi-cap-workflow.json +34 -0
- package/fixtures/workflows/two-step-chain.json +26 -0
- package/package.json +47 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"run": {
|
|
3
|
+
"schema": "@executioncontrolprotocol.run.result",
|
|
4
|
+
"version": "1.0",
|
|
5
|
+
"run": { "id": "run-started", "status": "started" },
|
|
6
|
+
"state": { "pendingStep": "echo" },
|
|
7
|
+
"history": {
|
|
8
|
+
"echo": {
|
|
9
|
+
"status": "started",
|
|
10
|
+
"attempts": 1
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "@executioncontrolprotocol.workflow",
|
|
3
|
+
"version": "1.0",
|
|
4
|
+
"workflow": {
|
|
5
|
+
"id": "echo-validate",
|
|
6
|
+
"label": "Echo validate reorder"
|
|
7
|
+
},
|
|
8
|
+
"steps": [
|
|
9
|
+
{
|
|
10
|
+
"type": "step",
|
|
11
|
+
"id": "echo",
|
|
12
|
+
"label": "Echo",
|
|
13
|
+
"uses": "@executioncontrolprotocol/test.echo",
|
|
14
|
+
"input": { "value": "before-validate" },
|
|
15
|
+
"as": "echo"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"type": "step",
|
|
19
|
+
"id": "validate",
|
|
20
|
+
"label": "Validate",
|
|
21
|
+
"uses": "@executioncontrolprotocol/test.validate",
|
|
22
|
+
"input": { "payload": { "ok": true } },
|
|
23
|
+
"as": "validated"
|
|
24
|
+
}
|
|
25
|
+
]
|
|
26
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "@executioncontrolprotocol.workflow",
|
|
3
|
+
"version": "1.0",
|
|
4
|
+
"workflow": {
|
|
5
|
+
"id": "echo-test",
|
|
6
|
+
"label": "Echo test"
|
|
7
|
+
},
|
|
8
|
+
"steps": [
|
|
9
|
+
{
|
|
10
|
+
"type": "step",
|
|
11
|
+
"id": "echo",
|
|
12
|
+
"label": "Echo",
|
|
13
|
+
"uses": "@executioncontrolprotocol/test.echo",
|
|
14
|
+
"input": {
|
|
15
|
+
"value": "hello from fluent API"
|
|
16
|
+
},
|
|
17
|
+
"as": "echo"
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "@executioncontrolprotocol.workflow",
|
|
3
|
+
"version": "1.0",
|
|
4
|
+
"workflow": {
|
|
5
|
+
"id": "multi-cap",
|
|
6
|
+
"label": "Multi capability"
|
|
7
|
+
},
|
|
8
|
+
"steps": [
|
|
9
|
+
{
|
|
10
|
+
"type": "step",
|
|
11
|
+
"id": "validate",
|
|
12
|
+
"label": "Validate",
|
|
13
|
+
"uses": "@executioncontrolprotocol/test.validate",
|
|
14
|
+
"input": { "payload": { "ok": true } },
|
|
15
|
+
"as": "validated"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"type": "step",
|
|
19
|
+
"id": "echo",
|
|
20
|
+
"label": "Echo",
|
|
21
|
+
"uses": "@executioncontrolprotocol/test.echo",
|
|
22
|
+
"input": { "value": "after-validate" },
|
|
23
|
+
"as": "echo"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"type": "step",
|
|
27
|
+
"id": "notify",
|
|
28
|
+
"label": "Notify",
|
|
29
|
+
"uses": "@executioncontrolprotocol/test.notify",
|
|
30
|
+
"input": { "payload": { "$ref": "state.echo.output" } },
|
|
31
|
+
"as": "notified"
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "@executioncontrolprotocol.workflow",
|
|
3
|
+
"version": "1.0",
|
|
4
|
+
"workflow": {
|
|
5
|
+
"id": "two-step-chain",
|
|
6
|
+
"label": "Two step chain"
|
|
7
|
+
},
|
|
8
|
+
"steps": [
|
|
9
|
+
{
|
|
10
|
+
"type": "step",
|
|
11
|
+
"id": "echo",
|
|
12
|
+
"label": "Echo",
|
|
13
|
+
"uses": "@executioncontrolprotocol/test.echo",
|
|
14
|
+
"input": { "value": "seed" },
|
|
15
|
+
"as": "echo"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"type": "step",
|
|
19
|
+
"id": "summarize",
|
|
20
|
+
"label": "Summarize",
|
|
21
|
+
"uses": "@executioncontrolprotocol/test.summarize",
|
|
22
|
+
"input": { "payload": { "$ref": "state.echo.output" } },
|
|
23
|
+
"as": "summary"
|
|
24
|
+
}
|
|
25
|
+
]
|
|
26
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@executioncontrolprotocol/harnesses-browser-coding",
|
|
3
|
+
"version": "0.10.0",
|
|
4
|
+
"description": "Browser Coding ECP harness for stronger local coding models (eval matrix)",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"sideEffects": false,
|
|
8
|
+
"main": "./dist/index.js",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./prompts": {
|
|
16
|
+
"types": "./dist/prompts/index.d.ts",
|
|
17
|
+
"import": "./dist/prompts/index.js"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist",
|
|
22
|
+
"fixtures",
|
|
23
|
+
"README.md"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "tsc -b",
|
|
27
|
+
"eval:matrix": "vitest run --config ../../../vitest.config.mts --project eval packages/harnesses/browser-coding/test/eval"
|
|
28
|
+
},
|
|
29
|
+
"peerDependencies": {
|
|
30
|
+
"@executioncontrolprotocol/core": "^0.10.0",
|
|
31
|
+
"@executioncontrolprotocol/types": "^0.10.0",
|
|
32
|
+
"zod": "^3.24.0"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@executioncontrolprotocol/harnesses-browser-nano": "0.10.0"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@executioncontrolprotocol/core": "0.10.0",
|
|
39
|
+
"@executioncontrolprotocol/evals": "0.10.0",
|
|
40
|
+
"@executioncontrolprotocol/extension-ollama": "0.10.0",
|
|
41
|
+
"@executioncontrolprotocol/format-toon": "0.10.0",
|
|
42
|
+
"@executioncontrolprotocol/node": "0.10.0",
|
|
43
|
+
"@executioncontrolprotocol/types": "0.10.0",
|
|
44
|
+
"typescript": "^5.7.0",
|
|
45
|
+
"zod": "^3.24.0"
|
|
46
|
+
}
|
|
47
|
+
}
|