@team-attention/hoyeon-cli 1.1.0 → 1.1.2
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/cli.js
CHANGED
|
@@ -8116,9 +8116,11 @@ var dev_spec_v4_schema_default = {
|
|
|
8116
8116
|
ts: { type: "string" },
|
|
8117
8117
|
type: {
|
|
8118
8118
|
type: "string",
|
|
8119
|
-
enum: ["spec_created", "task_start", "task_done", "tasks_changed", "spec_updated"]
|
|
8119
|
+
enum: ["spec_created", "task_start", "task_done", "tasks_changed", "spec_updated", "scenario_verified"]
|
|
8120
8120
|
},
|
|
8121
8121
|
task: { type: "string" },
|
|
8122
|
+
scenario: { type: "string" },
|
|
8123
|
+
status: { type: "string" },
|
|
8122
8124
|
summary: { type: "string" },
|
|
8123
8125
|
detail: { type: "string" }
|
|
8124
8126
|
}
|
|
@@ -8685,6 +8687,21 @@ var dev_spec_v5_schema_default = {
|
|
|
8685
8687
|
reason: { type: "string" }
|
|
8686
8688
|
}
|
|
8687
8689
|
}
|
|
8690
|
+
},
|
|
8691
|
+
implications: {
|
|
8692
|
+
type: "array",
|
|
8693
|
+
description: "Downstream behaviors/constraints this decision creates. Populated post-decision by orchestrator or L2.5 derivation step.",
|
|
8694
|
+
items: {
|
|
8695
|
+
type: "object",
|
|
8696
|
+
required: ["implication", "type"],
|
|
8697
|
+
additionalProperties: false,
|
|
8698
|
+
properties: {
|
|
8699
|
+
implication: { type: "string", description: "Concrete downstream behavior or constraint" },
|
|
8700
|
+
type: { type: "string", enum: ["deterministic", "context-dependent", "intent-dependent"], description: "deterministic: always true given decision. context-dependent: true given decision + project context. intent-dependent: depends on user preference (requires confirmation)." },
|
|
8701
|
+
status: { type: "string", enum: ["confirmed", "pending", "rejected"], default: "pending", description: "confirmed: user verified. pending: agent-derived, awaiting confirmation. rejected: user overrode." },
|
|
8702
|
+
conditional_on: { type: "string", description: "Other decision ID this implication depends on (e.g., 'D2'). Omit if unconditional." }
|
|
8703
|
+
}
|
|
8704
|
+
}
|
|
8688
8705
|
}
|
|
8689
8706
|
}
|
|
8690
8707
|
}
|
|
@@ -8947,9 +8964,11 @@ var dev_spec_v5_schema_default = {
|
|
|
8947
8964
|
ts: { type: "string" },
|
|
8948
8965
|
type: {
|
|
8949
8966
|
type: "string",
|
|
8950
|
-
enum: ["spec_created", "task_start", "task_done", "tasks_changed", "spec_updated"]
|
|
8967
|
+
enum: ["spec_created", "task_start", "task_done", "tasks_changed", "spec_updated", "scenario_verified"]
|
|
8951
8968
|
},
|
|
8952
8969
|
task: { type: "string" },
|
|
8970
|
+
scenario: { type: "string" },
|
|
8971
|
+
status: { type: "string" },
|
|
8953
8972
|
summary: { type: "string" },
|
|
8954
8973
|
detail: { type: "string" }
|
|
8955
8974
|
}
|
|
@@ -12008,7 +12027,7 @@ async function main() {
|
|
|
12008
12027
|
process.exit(0);
|
|
12009
12028
|
}
|
|
12010
12029
|
if (args[0] === "--version") {
|
|
12011
|
-
const version = true ? "1.1.
|
|
12030
|
+
const version = true ? "1.1.2" : "dev";
|
|
12012
12031
|
process.stdout.write(`hoyeon-cli v${version}
|
|
12013
12032
|
`);
|
|
12014
12033
|
process.exit(0);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@team-attention/hoyeon-cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Developer CLI for managing dev workflow state",
|
|
6
6
|
"bin": {
|
|
@@ -14,15 +14,15 @@
|
|
|
14
14
|
"publishConfig": {
|
|
15
15
|
"access": "public"
|
|
16
16
|
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "node build.mjs",
|
|
19
|
+
"test": "node --test tests/*.test.mjs"
|
|
20
|
+
},
|
|
17
21
|
"dependencies": {
|
|
18
22
|
"ajv": "^8.0.0",
|
|
19
23
|
"ajv-formats": "^3.0.0"
|
|
20
24
|
},
|
|
21
25
|
"devDependencies": {
|
|
22
26
|
"esbuild": "^0.27.3"
|
|
23
|
-
},
|
|
24
|
-
"scripts": {
|
|
25
|
-
"build": "node build.mjs",
|
|
26
|
-
"test": "node --test tests/*.test.mjs"
|
|
27
27
|
}
|
|
28
|
-
}
|
|
28
|
+
}
|
|
@@ -489,9 +489,11 @@
|
|
|
489
489
|
"ts": { "type": "string" },
|
|
490
490
|
"type": {
|
|
491
491
|
"type": "string",
|
|
492
|
-
"enum": ["spec_created", "task_start", "task_done", "tasks_changed", "spec_updated"]
|
|
492
|
+
"enum": ["spec_created", "task_start", "task_done", "tasks_changed", "spec_updated", "scenario_verified"]
|
|
493
493
|
},
|
|
494
494
|
"task": { "type": "string" },
|
|
495
|
+
"scenario": { "type": "string" },
|
|
496
|
+
"status": { "type": "string" },
|
|
495
497
|
"summary": { "type": "string" },
|
|
496
498
|
"detail": { "type": "string" }
|
|
497
499
|
}
|
|
@@ -306,6 +306,21 @@
|
|
|
306
306
|
"reason": { "type": "string" }
|
|
307
307
|
}
|
|
308
308
|
}
|
|
309
|
+
},
|
|
310
|
+
"implications": {
|
|
311
|
+
"type": "array",
|
|
312
|
+
"description": "Downstream behaviors/constraints this decision creates. Populated post-decision by orchestrator or L2.5 derivation step.",
|
|
313
|
+
"items": {
|
|
314
|
+
"type": "object",
|
|
315
|
+
"required": ["implication", "type"],
|
|
316
|
+
"additionalProperties": false,
|
|
317
|
+
"properties": {
|
|
318
|
+
"implication": { "type": "string", "description": "Concrete downstream behavior or constraint" },
|
|
319
|
+
"type": { "type": "string", "enum": ["deterministic", "context-dependent", "intent-dependent"], "description": "deterministic: always true given decision. context-dependent: true given decision + project context. intent-dependent: depends on user preference (requires confirmation)." },
|
|
320
|
+
"status": { "type": "string", "enum": ["confirmed", "pending", "rejected"], "default": "pending", "description": "confirmed: user verified. pending: agent-derived, awaiting confirmation. rejected: user overrode." },
|
|
321
|
+
"conditional_on": { "type": "string", "description": "Other decision ID this implication depends on (e.g., 'D2'). Omit if unconditional." }
|
|
322
|
+
}
|
|
323
|
+
}
|
|
309
324
|
}
|
|
310
325
|
}
|
|
311
326
|
}
|
|
@@ -568,9 +583,11 @@
|
|
|
568
583
|
"ts": { "type": "string" },
|
|
569
584
|
"type": {
|
|
570
585
|
"type": "string",
|
|
571
|
-
"enum": ["spec_created", "task_start", "task_done", "tasks_changed", "spec_updated"]
|
|
586
|
+
"enum": ["spec_created", "task_start", "task_done", "tasks_changed", "spec_updated", "scenario_verified"]
|
|
572
587
|
},
|
|
573
588
|
"task": { "type": "string" },
|
|
589
|
+
"scenario": { "type": "string" },
|
|
590
|
+
"status": { "type": "string" },
|
|
574
591
|
"summary": { "type": "string" },
|
|
575
592
|
"detail": { "type": "string" }
|
|
576
593
|
}
|