@hunsu/codex-runner 0.1.0 → 0.1.1
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/index.js +2 -2
- package/package.json +3 -3
- package/src/index.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -1463,10 +1463,10 @@ export function buildHunsuDraftPrompt(input) {
|
|
|
1463
1463
|
"Do not edit .hunsu-request/executors.json unless the user explicitly asks to change Member definitions or Member config.",
|
|
1464
1464
|
"Do not edit .hunsu-request/resources.json unless the user explicitly asks to change Resource bindings or requirements.",
|
|
1465
1465
|
"Do not create, copy, or update Resource bindings or assignment entries for newly added Destinations; Team-planner routing and binding are handled outside Destination edits.",
|
|
1466
|
-
"After editing .hunsu-request files, run the supplied Draft check command. It creates a DiffArtifact in Hunsu
|
|
1466
|
+
"After editing .hunsu-request files, run the supplied Draft check command. It creates a DiffArtifact in Hunsu Bridge.",
|
|
1467
1467
|
"If the DiffArtifact passes, include this exact marker in your final reply: ::hunsu-diff{draftSessionId=\"<draftSessionId>\" diffArtifactId=\"<diffArtifactId>\" status=\"pass\"}",
|
|
1468
1468
|
"If the DiffArtifact fails, include the same marker with status=\"failed\" and explain the validation error briefly.",
|
|
1469
|
-
"Confirmation is handled by Hunsu
|
|
1469
|
+
"Confirmation is handled by Hunsu Bridge from the DiffArtifact id.",
|
|
1470
1470
|
"</role>",
|
|
1471
1471
|
"",
|
|
1472
1472
|
"<manager>",
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hunsu/codex-runner",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"private": false,
|
|
5
|
-
"description": "Codex app-server runner boundary for Hunsu
|
|
5
|
+
"description": "Codex app-server runner boundary for Hunsu Bridge.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"exports": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@openai/codex": "^0.129.0",
|
|
28
|
-
"@hunsu/protocol": "0.1.
|
|
28
|
+
"@hunsu/protocol": "0.1.1"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "tsc -p tsconfig.build.json",
|
package/src/index.ts
CHANGED
|
@@ -1919,10 +1919,10 @@ export function buildHunsuDraftPrompt(input: HunsuDraftTurnInput): string {
|
|
|
1919
1919
|
"Do not edit .hunsu-request/executors.json unless the user explicitly asks to change Member definitions or Member config.",
|
|
1920
1920
|
"Do not edit .hunsu-request/resources.json unless the user explicitly asks to change Resource bindings or requirements.",
|
|
1921
1921
|
"Do not create, copy, or update Resource bindings or assignment entries for newly added Destinations; Team-planner routing and binding are handled outside Destination edits.",
|
|
1922
|
-
"After editing .hunsu-request files, run the supplied Draft check command. It creates a DiffArtifact in Hunsu
|
|
1922
|
+
"After editing .hunsu-request files, run the supplied Draft check command. It creates a DiffArtifact in Hunsu Bridge.",
|
|
1923
1923
|
"If the DiffArtifact passes, include this exact marker in your final reply: ::hunsu-diff{draftSessionId=\"<draftSessionId>\" diffArtifactId=\"<diffArtifactId>\" status=\"pass\"}",
|
|
1924
1924
|
"If the DiffArtifact fails, include the same marker with status=\"failed\" and explain the validation error briefly.",
|
|
1925
|
-
"Confirmation is handled by Hunsu
|
|
1925
|
+
"Confirmation is handled by Hunsu Bridge from the DiffArtifact id.",
|
|
1926
1926
|
"</role>",
|
|
1927
1927
|
"",
|
|
1928
1928
|
"<manager>",
|