@team-attention/hoyeon-cli 1.1.0 → 1.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/cli.js +16 -1
- package/package.json +1 -1
- package/schemas/dev-spec-v5.schema.json +15 -0
package/dist/cli.js
CHANGED
|
@@ -8685,6 +8685,21 @@ var dev_spec_v5_schema_default = {
|
|
|
8685
8685
|
reason: { type: "string" }
|
|
8686
8686
|
}
|
|
8687
8687
|
}
|
|
8688
|
+
},
|
|
8689
|
+
implications: {
|
|
8690
|
+
type: "array",
|
|
8691
|
+
description: "Downstream behaviors/constraints this decision creates. Populated post-decision by orchestrator or L2.5 derivation step.",
|
|
8692
|
+
items: {
|
|
8693
|
+
type: "object",
|
|
8694
|
+
required: ["implication", "type"],
|
|
8695
|
+
additionalProperties: false,
|
|
8696
|
+
properties: {
|
|
8697
|
+
implication: { type: "string", description: "Concrete downstream behavior or constraint" },
|
|
8698
|
+
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)." },
|
|
8699
|
+
status: { type: "string", enum: ["confirmed", "pending", "rejected"], default: "pending", description: "confirmed: user verified. pending: agent-derived, awaiting confirmation. rejected: user overrode." },
|
|
8700
|
+
conditional_on: { type: "string", description: "Other decision ID this implication depends on (e.g., 'D2'). Omit if unconditional." }
|
|
8701
|
+
}
|
|
8702
|
+
}
|
|
8688
8703
|
}
|
|
8689
8704
|
}
|
|
8690
8705
|
}
|
|
@@ -12008,7 +12023,7 @@ async function main() {
|
|
|
12008
12023
|
process.exit(0);
|
|
12009
12024
|
}
|
|
12010
12025
|
if (args[0] === "--version") {
|
|
12011
|
-
const version = true ? "1.1.
|
|
12026
|
+
const version = true ? "1.1.1" : "dev";
|
|
12012
12027
|
process.stdout.write(`hoyeon-cli v${version}
|
|
12013
12028
|
`);
|
|
12014
12029
|
process.exit(0);
|
package/package.json
CHANGED
|
@@ -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
|
}
|