@team-attention/hoyeon-cli 1.0.0 → 1.0.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 CHANGED
@@ -8721,6 +8721,23 @@ var dev_spec_v5_schema_default = {
8721
8721
  scenarios: {
8722
8722
  type: "array",
8723
8723
  items: { $ref: "#/$defs/scenario" }
8724
+ },
8725
+ source: {
8726
+ type: "object",
8727
+ required: ["type"],
8728
+ additionalProperties: false,
8729
+ description: "Traceability: where this requirement originated from",
8730
+ properties: {
8731
+ type: {
8732
+ type: "string",
8733
+ enum: ["goal", "decision", "gap", "implicit", "negative"],
8734
+ description: "Category of origin: goal=from project goal, decision=from a context decision, gap=from a known gap, implicit=inferred, negative=from non-goals"
8735
+ },
8736
+ ref: {
8737
+ type: "string",
8738
+ description: "Optional reference ID (e.g. 'D3', 'G1') pointing to a specific context entry"
8739
+ }
8740
+ }
8724
8741
  }
8725
8742
  }
8726
8743
  },
@@ -11631,7 +11648,7 @@ async function main() {
11631
11648
  process.exit(0);
11632
11649
  }
11633
11650
  if (args[0] === "--version") {
11634
- const version = true ? "1.0.0" : "dev";
11651
+ const version = true ? "1.0.1" : "dev";
11635
11652
  process.stdout.write(`hoyeon-cli v${version}
11636
11653
  `);
11637
11654
  process.exit(0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@team-attention/hoyeon-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "description": "Developer CLI for managing dev workflow state",
6
6
  "bin": {
@@ -342,6 +342,23 @@
342
342
  "scenarios": {
343
343
  "type": "array",
344
344
  "items": { "$ref": "#/$defs/scenario" }
345
+ },
346
+ "source": {
347
+ "type": "object",
348
+ "required": ["type"],
349
+ "additionalProperties": false,
350
+ "description": "Traceability: where this requirement originated from",
351
+ "properties": {
352
+ "type": {
353
+ "type": "string",
354
+ "enum": ["goal", "decision", "gap", "implicit", "negative"],
355
+ "description": "Category of origin: goal=from project goal, decision=from a context decision, gap=from a known gap, implicit=inferred, negative=from non-goals"
356
+ },
357
+ "ref": {
358
+ "type": "string",
359
+ "description": "Optional reference ID (e.g. 'D3', 'G1') pointing to a specific context entry"
360
+ }
361
+ }
345
362
  }
346
363
  }
347
364
  },