@saasontools/strauss-kb 0.2.0 → 0.3.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/dist/cli-main.cjs CHANGED
@@ -1918,7 +1918,6 @@ var KB_RECORD_TYPES = [
1918
1918
  "contract",
1919
1919
  "flow",
1920
1920
  "affected-system",
1921
- "test-obligation",
1922
1921
  "source-note"
1923
1922
  ];
1924
1923
  var KB_SLUG_PATTERN = /^[a-z0-9]+(?:-[a-z0-9]+)*$/;
@@ -2151,11 +2150,6 @@ var RECORD_TYPES = {
2151
2150
  sections: ["System", "How it is affected", "Blast radius"],
2152
2151
  initialStatus: "accepted"
2153
2152
  },
2154
- "test-obligation": {
2155
- purpose: "Behavior or contract that must be verified",
2156
- sections: ["Obligation", "Why it matters", "How to verify"],
2157
- initialStatus: "open"
2158
- },
2159
2153
  "source-note": {
2160
2154
  purpose: "Extracted note from source material",
2161
2155
  sections: ["Note", "Where it came from"],
@@ -14692,7 +14686,7 @@ var typesCommand = define({
14692
14686
  name: "types",
14693
14687
  tool: "kb_types",
14694
14688
  usage: "types",
14695
- description: "The twelve record types with their purpose, body sections, and starting status. Read this before writing rather than guessing headings \u2014 a section the type does not define is rejected.",
14689
+ description: "Every record type with its purpose, body sections, and starting status. Read this before writing rather than guessing headings \u2014 a section the type does not define is rejected.",
14696
14690
  input: import_zod40.z.object({}),
14697
14691
  fromArgv: () => ({}),
14698
14692
  run: () => Promise.resolve(RECORD_TYPES)
@@ -15957,7 +15951,7 @@ function assertActor(actor, { named = false } = {}) {
15957
15951
  }
15958
15952
 
15959
15953
  // src/version.ts
15960
- var VERSION = true ? "0.2.0" : "0.0.0-dev";
15954
+ var VERSION = true ? "0.3.0" : "0.0.0-dev";
15961
15955
 
15962
15956
  // src/cli.ts
15963
15957
  async function runKbCli(argv) {