xdrs-core 0.18.0 → 0.19.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.
@@ -48,12 +48,12 @@ Collectively, these are referred to as XDRs.
48
48
  - `_core-adr-004` defines article standards
49
49
  - `_core-adr-006` defines research standards
50
50
  - `_core-adr-007` defines plan standards
51
- - For simple structure, flow, layout, or relationship indications, documents SHOULD prefer plain Markdown, tables, or ASCII art instead of external assets.
52
- - Images and other supporting files SHOULD be used only when they are materially necessary to preserve clarity, fidelity, or evidence. When used, they SHOULD live in a sibling `assets/` folder next to the document.
53
- - XDRs in the subject root use `.xdrs/[scope]/[type]/[subject]/assets/`
54
- - Articles use `.xdrs/[scope]/[type]/[subject]/articles/assets/`
55
- - Research uses `.xdrs/[scope]/[type]/[subject]/researches/assets/`
56
- - Skills use `.xdrs/[scope]/[type]/[subject]/skills/[number]-[skill-name]/assets/`
51
+ - For simple structures, flows, layout, or relationship indications, documents SHOULD prefer plain Markdown, tables, Mermaid.js (sequence, state, activity, entity diagrams) or ASCII art instead of external assets.
52
+ - Images and other supporting files SHOULD be used only when they are materially necessary to preserve clarity, fidelity, or evidence. When used, they MUST live in a sibling `.assets/` folder next to the document.
53
+ - XDRs in the subject root use `.xdrs/[scope]/[type]/[subject]/.assets/`
54
+ - Articles use `.xdrs/[scope]/[type]/[subject]/articles/.assets/`
55
+ - Research uses `.xdrs/[scope]/[type]/[subject]/researches/.assets/`
56
+ - Skills use `.xdrs/[scope]/[type]/[subject]/skills/[number]-[skill-name]/.assets/`
57
57
  - **Scopes:**
58
58
  - Short name that defines a group or a package of xdrs
59
59
  - examples: `business-x`, `business-y`, `team-43`, `_core`
@@ -107,7 +107,7 @@ Collectively, these are referred to as XDRs.
107
107
  - `governance`: Engineering governance, risk controls, and compliance mechanics.
108
108
  - Examples: dependency governance, approval policies, mandatory quality checks.
109
109
  - Never use emojis
110
- - **Links:** Links that reference a parent folder MUST use absolute paths from the repository root with a leading `/` (e.g., `/.xdrs/_core/adrs/principles/001-xdrs-core.md`). Sibling files and child folder references SHOULD use relative paths (e.g., `002-other-doc.md`, `assets/image.png`, `subdir/file.md`). Never use relative paths that traverse up the directory tree (e.g., `../../assets/test.png`, `../other.md`); they break when files are moved and are harder to read.
110
+ - **Links:** Links that reference a parent folder MUST use absolute paths from the repository root with a leading `/` (e.g., `/.xdrs/_core/adrs/principles/001-xdrs-core.md`). Sibling files and child folder references SHOULD use relative paths (e.g., `002-other-doc.md`, `.assets/image.png`, `subdir/file.md`). Never use relative paths that traverse up the directory tree (e.g., `../../.assets/test.png`, `../other.md`); they break when files are moved and are harder to read.
111
111
  - **Indexes**
112
112
  - Keep a canonical index with all XDRs of a certain type+scope in `.xdrs/[scope]/[type]/index.md`
113
113
  - Canonical index requirements:
@@ -126,20 +126,20 @@ Collectively, these are referred to as XDRs.
126
126
  ```text
127
127
  subject/
128
128
  |-- 001-xdr.md
129
- |-- assets/
129
+ |-- .assets/
130
130
  |-- articles/
131
131
  | |-- 001-article.md
132
- | `-- assets/
132
+ | `-- .assets/
133
133
  |-- plans/
134
134
  | |-- 001-plan.md
135
- | `-- assets/
135
+ | `-- .assets/
136
136
  |-- researches/
137
137
  | |-- 001-study.md
138
- | `-- assets/
138
+ | `-- .assets/
139
139
  `-- skills/
140
140
  `-- 001-task/
141
141
  |-- SKILL.md
142
- `-- assets/
142
+ `-- .assets/
143
143
  ```
144
144
 
145
145
  ## References
@@ -109,7 +109,7 @@ Question: In the end, state explicitly the question that needs to be answered. E
109
109
  [Optional section with implementation specifics, applicability boundaries, rules, concise examples, or do/don't guidance. This is the answer to the question in the "Context and Problem Statement". (<1300 words)]
110
110
 
111
111
  ## Considered Options
112
- [this section is present ONLY if there was more than one option to choose from]
112
+ [this section is present ONLY if the user explicitely indicated that there were multiple options to choose from while making this decision.]
113
113
 
114
114
  * (CHOSEN) **Option 2** - Brief description of option 2
115
115
  * Reason: Brief description of why this option was accepted, containing the strengths, strategical motivations and it's differential over the other options.
@@ -63,7 +63,7 @@ Quick test:
63
63
  SKILL.md # required
64
64
  scripts/ # optional: executable scripts the agent may run
65
65
  references/ # optional: detailed reference material
66
- assets/ # optional: images, templates, data files, and other local resources
66
+ .assets/ # optional: images, templates, data files, and other local resources
67
67
  ```
68
68
 
69
69
  Examples:
@@ -114,9 +114,9 @@ Rules:
114
114
  - `## Overview` SHOULD state the task objective, expected outcome, and relevant prerequisites or tools when they matter.
115
115
  - `## Instructions` SHOULD include verification steps or acceptance criteria at the end of the task, or at the end of major phases when partial validation matters.
116
116
  - For simple structure, flow, layout, or relationship indications, `SKILL.md` SHOULD prefer plain Markdown, tables, or ASCII art instead of external assets.
117
- - Images and other local resource files referenced from `SKILL.md` SHOULD be used only when they are materially necessary and SHOULD live in `assets/` inside the same skill package.
117
+ - Images and other local resource files referenced from `SKILL.md` SHOULD be used only when they are materially necessary and MUST live in `.assets/` inside the same skill package.
118
118
  - Keep `SKILL.md` under 6500 words. Move lengthy reference material to `references/`.
119
- - Links that reference a parent folder MUST use absolute paths from the repository root with a leading `/`. Sibling files and child folder references SHOULD use relative paths (e.g., `assets/image.png`, `subdir/file.md`). Never use relative paths that traverse up the directory tree (e.g., `../other.md`).
119
+ - Links that reference a parent folder MUST use absolute paths from the repository root with a leading `/`. Sibling files and child folder references SHOULD use relative paths (e.g., `.assets/image.png`, `subdir/file.md`). Never use relative paths that traverse up the directory tree (e.g., `../other.md`).
120
120
  - Always use lowercase file names.
121
121
  - Never use emojis in skill content.
122
122
 
@@ -28,7 +28,7 @@ Articles are Markdown documents placed inside a subject folder alongside decisio
28
28
  - Articles must remain consistent with the XDRs, Research documents, and Skills they reference. When a referenced artifact changes, the article must be reviewed and updated.
29
29
  - Place an article in the subject folder that best matches its topic using the required list of subjects per type defined in `_core-adr-001`. If an article spans more than one subject, place it in `principles`.
30
30
  - For simple structure, flow, layout, or relationship indications, articles SHOULD prefer plain Markdown, tables, or ASCII art instead of external assets.
31
- - Images and other local resource files referenced by an article SHOULD be used only when they are materially necessary and SHOULD live in `articles/assets/` next to the article files.
31
+ - Images and other local resource files referenced by an article SHOULD be used only when they are materially necessary and MUST live in `articles/.assets/` next to the article files.
32
32
  - Always use lowercase file names.
33
33
  - Never use emojis in article content.
34
34
  - Articles should be kept under 1950 words. Move detailed content to referenced XDRs or Skills.
@@ -42,7 +42,7 @@ Articles are Markdown documents placed inside a subject folder alongside decisio
42
42
  [subject]/
43
43
  articles/
44
44
  [number]-[short-title].md
45
- assets/
45
+ .assets/
46
46
  ```
47
47
 
48
48
  Examples:
@@ -48,7 +48,7 @@ Research documents are Markdown files placed inside a subject folder alongside d
48
48
  - Research documents SHOULD link in `## References` to the XDRs, skills, articles, discussions, and external references relevant to the subject or that later cite the work.
49
49
  - A 1:1 relationship between one research document and one decision will likely be common in practice, but it is not required.
50
50
  - One research document MAY also be referenced by multiple XDRs, including a mix of ADRs, BDRs, and EDRs, when the same investigation remains relevant across several decisions.
51
- - Images and other local resource files referenced by a research document SHOULD be used only when they are materially necessary and SHOULD live in `researches/assets/` next to the research files.
51
+ - Images and other local resource files referenced by a research document SHOULD be used only when they are materially necessary and MUST live in `researches/.assets/` next to the research files.
52
52
  - Research file names MUST be lowercase. Never use emojis.
53
53
  - A research document MAY exist before the related XDR is written, or remain after the XDR changes, as long as its status and references stay clear.
54
54
 
@@ -61,7 +61,7 @@ Research documents are Markdown files placed inside a subject folder alongside d
61
61
  [subject]/
62
62
  researches/
63
63
  [number]-[short-title].md
64
- assets/
64
+ .assets/
65
65
  ```
66
66
 
67
67
  Examples:
@@ -31,7 +31,7 @@ Plans are Markdown documents placed inside a subject folder alongside decision r
31
31
  - Plans MUST include an `Expected end date:` field in ISO format (YYYY-MM-DD) inside the `## Proposed Solution` section.
32
32
  - Always use lowercase file names.
33
33
  - Never use emojis in plan content.
34
- - Images and other local resource files referenced by a plan SHOULD live in `plans/assets/` next to the plan files.
34
+ - Images and other local resource files referenced by a plan MUST live in `plans/.assets/` next to the plan files.
35
35
 
36
36
  **Folder layout**
37
37
 
@@ -42,7 +42,7 @@ Plans are Markdown documents placed inside a subject folder alongside decision r
42
42
  [subject]/
43
43
  plans/
44
44
  [number]-[short-title].md
45
- assets/
45
+ .assets/
46
46
  ```
47
47
 
48
48
  Examples:
@@ -123,7 +123,7 @@ valid-from: [Optional. ISO date YYYY-MM-DD from when enforcement begins]
123
123
  ### Implementation Details
124
124
  [Rules, applicability boundaries, concise examples, and optional do/don't guidance — under 1300 words]
125
125
 
126
- ## Considered Options (if meaningful options exist)
126
+ ## Considered Options (only if the user explicitly indicated multiple options)
127
127
 
128
128
  ## Conflicts (mandatory if conflicts found in Phase 3)
129
129
 
@@ -140,9 +140,9 @@ Mandatory rules to apply while drafting:
140
140
  - Keep the decision itself authoritative in the XDR. Supporting artifacts may elaborate, but they should not restate the full decision when a short reference is enough.
141
141
  - Make clear when the decision applies and any important exception boundaries.
142
142
  - Keep exploratory option analysis in a related Research document when it would distract from the final decision text.
143
- - Prefer plain Markdown, tables, or ASCII art for simple structure, flow, layout, or relationship indications.
144
- - If the XDR genuinely needs local images or supporting files, store them in `.xdrs/[scope]/[type]/[subject]/assets/` and link them using a same-folder relative path (e.g., `assets/image.png`).
145
- - Links that reference a parent folder MUST use absolute paths from the repository root with a leading `/` (e.g., `/.xdrs/_core/adrs/principles/001-xdrs-core.md`). Sibling files and child folder references SHOULD use relative paths (e.g., `002-other-doc.md`, `assets/image.png`, `subdir/file.md`). Never use relative paths that traverse up the directory tree (e.g., `../../assets/test.png`, `../other.md`).
143
+ - Prefer plain Markdown, tables, Mermaid.js (sequence, state, activity, entity diagrams), or ASCII art for simple structure, flow, layout, or relationship indications.
144
+ - If the XDR genuinely needs local images or supporting files, store them in `.xdrs/[scope]/[type]/[subject]/.assets/` and link them using a same-folder relative path (e.g., `.assets/image.png`).
145
+ - Links that reference a parent folder MUST use absolute paths from the repository root with a leading `/` (e.g., `/.xdrs/_core/adrs/principles/001-xdrs-core.md`). Sibling files and child folder references SHOULD use relative paths (e.g., `002-other-doc.md`, `.assets/image.png`, `subdir/file.md`). Never use relative paths that traverse up the directory tree (e.g., `../../.assets/test.png`, `../other.md`).
146
146
  - No emojis. Lowercase filenames.
147
147
  - Target under 1300 words total; under 2600 words for complex decisions.
148
148
 
@@ -97,9 +97,9 @@ Rules:
97
97
  - Do not duplicate content from referenced XDRs — link instead.
98
98
  - Do not present the skill itself as policy; mandatory behavior must come from referenced XDRs or other policy artifacts.
99
99
  - When the skill depends on XDRs, make the activation logic and instructions consistent with the XDR metadata so the skill does not operationalize inactive or out-of-scope decisions.
100
- - Prefer plain Markdown, tables, or ASCII art for simple structure, flow, layout, or relationship indications.
101
- - If `SKILL.md` genuinely needs local images or supporting files, store them in `.xdrs/[scope]/[type]/[subject]/skills/[number]-[skill-name]/assets/` and link them using a same-folder relative path (e.g., `assets/image.png`).
102
- - Links that reference a parent folder MUST use absolute paths from the repository root with a leading `/` (e.g., `/.xdrs/_core/adrs/principles/001-xdrs-core.md`). Sibling files and child folder references SHOULD use relative paths (e.g., `002-other-doc.md`, `assets/image.png`, `subdir/file.md`). Never use relative paths that traverse up the directory tree (e.g., `../../assets/test.png`, `../other.md`).
100
+ - Prefer plain Markdown, tables, Mermaid.js (sequence, state, activity, entity diagrams), or ASCII art for simple structure, flow, layout, or relationship indications.
101
+ - If `SKILL.md` genuinely needs local images or supporting files, store them in `.xdrs/[scope]/[type]/[subject]/skills/[number]-[skill-name]/.assets/` and link them using a same-folder relative path (e.g., `.assets/image.png`).
102
+ - Links that reference a parent folder MUST use absolute paths from the repository root with a leading `/` (e.g., `/.xdrs/_core/adrs/principles/001-xdrs-core.md`). Sibling files and child folder references SHOULD use relative paths (e.g., `002-other-doc.md`, `.assets/image.png`, `subdir/file.md`). Never use relative paths that traverse up the directory tree (e.g., `../../.assets/test.png`, `../other.md`).
103
103
  - No emojis. Lowercase filenames. Target under 6500 words.
104
104
 
105
105
  ### Phase 5: Review the Draft
@@ -93,9 +93,9 @@ Rules to apply while drafting:
93
93
  - Every factual claim must link back to the authoritative XDR or Skill.
94
94
  - If the article advises readers what to do, clearly separate active/applicable XDRs from background, historical, or out-of-scope ones.
95
95
  - Never reproduce decision text verbatim; summarize and link.
96
- - Prefer plain Markdown, tables, or ASCII art for simple structure, flow, layout, or relationship indications.
97
- - If the article genuinely needs local images or supporting files, store them in `.xdrs/[scope]/[type]/[subject]/articles/assets/` and link them using a same-folder relative path (e.g., `assets/image.png`).
98
- - Links that reference a parent folder MUST use absolute paths from the repository root with a leading `/` (e.g., `/.xdrs/_core/adrs/principles/001-xdrs-core.md`). Sibling files and child folder references SHOULD use relative paths (e.g., `002-other-doc.md`, `assets/image.png`, `subdir/file.md`). Never use relative paths that traverse up the directory tree (e.g., `../../assets/test.png`, `../other.md`).
96
+ - Prefer plain Markdown, tables, Mermaid.js (sequence, state, activity, entity diagrams), or ASCII art for simple structure, flow, layout, or relationship indications.
97
+ - If the article genuinely needs local images or supporting files, store them in `.xdrs/[scope]/[type]/[subject]/articles/.assets/` and link them using a same-folder relative path (e.g., `.assets/image.png`).
98
+ - Links that reference a parent folder MUST use absolute paths from the repository root with a leading `/` (e.g., `/.xdrs/_core/adrs/principles/001-xdrs-core.md`). Sibling files and child folder references SHOULD use relative paths (e.g., `002-other-doc.md`, `.assets/image.png`, `subdir/file.md`). Never use relative paths that traverse up the directory tree (e.g., `../../.assets/test.png`, `../other.md`).
99
99
  - Keep the article under 1950 words; move detailed content to XDRs or Skills.
100
100
  - Use lowercase file names. Never use emojis.
101
101
  - If a conflict exists between the article and a Decision Record, note it and defer to the XDR.
@@ -134,9 +134,9 @@ Rules:
134
134
  - Keep traceability to related XDRs, skills, articles, discussions, and external sources primarily in `## References`.
135
135
  - Use good-enough evidence. Experienced professional judgment is allowed, but the conclusions still need support that other colleagues can inspect and learn from.
136
136
  - Ensure the methods and test conditions are reproducible enough for an experienced professional to rerun or evolve the critical parts later.
137
- - Prefer plain Markdown, bullet points, tables, or ASCII art for simple explanations and comparisons, especially in the introduction and results.
138
- - If the research genuinely needs local images or supporting files, store them in `.xdrs/[scope]/[type]/[subject]/researches/assets/` and link them using a same-folder relative path (e.g., `assets/image.png`).
139
- - Links that reference a parent folder MUST use absolute paths from the repository root with a leading `/` (e.g., `/.xdrs/_core/adrs/principles/001-xdrs-core.md`). Sibling files and child folder references SHOULD use relative paths (e.g., `002-other-doc.md`, `assets/image.png`, `subdir/file.md`). Never use relative paths that traverse up the directory tree (e.g., `../../assets/test.png`, `../other.md`).
137
+ - Prefer plain Markdown, tables, Mermaid.js (sequence, state, activity, entity diagrams), bullet points, or ASCII art for simple explanations and comparisons, especially in the introduction and results.
138
+ - If the research genuinely needs local images or supporting files, store them in `.xdrs/[scope]/[type]/[subject]/researches/.assets/` and link them using a same-folder relative path (e.g., `.assets/image.png`).
139
+ - Links that reference a parent folder MUST use absolute paths from the repository root with a leading `/` (e.g., `/.xdrs/_core/adrs/principles/001-xdrs-core.md`). Sibling files and child folder references SHOULD use relative paths (e.g., `002-other-doc.md`, `.assets/image.png`, `subdir/file.md`). Never use relative paths that traverse up the directory tree (e.g., `../../.assets/test.png`, `../other.md`).
140
140
  - Keep section word limits within the standard and keep the document under 5000 words total unless the introduction explicitly states that a very detailed analysis is required.
141
141
 
142
142
  ### Phase 8: Check Section Goals
@@ -114,8 +114,8 @@ Rules to apply while drafting:
114
114
  - If the plan scope is too large for 2 years, break it into multiple plans.
115
115
  - Remember that this plan must be deleted after full implementation. Write it with that ephemeral nature in mind.
116
116
  - Prefer plain Markdown, tables, or ASCII art for structure and flow.
117
- - If the plan genuinely needs local images or supporting files, store them in `.xdrs/[scope]/[type]/[subject]/plans/assets/` and link them using a same-folder relative path (e.g., `assets/image.png`).
118
- - Links that reference a parent folder MUST use absolute paths from the repository root with a leading `/` (e.g., `/.xdrs/_core/adrs/principles/001-xdrs-core.md`). Sibling files and child folder references SHOULD use relative paths (e.g., `002-other-doc.md`, `assets/image.png`, `subdir/file.md`). Never use relative paths that traverse up the directory tree (e.g., `../../assets/test.png`, `../other.md`).
117
+ - If the plan genuinely needs local images or supporting files, store them in `.xdrs/[scope]/[type]/[subject]/plans/.assets/` and link them using a same-folder relative path (e.g., `.assets/image.png`).
118
+ - Links that reference a parent folder MUST use absolute paths from the repository root with a leading `/` (e.g., `/.xdrs/_core/adrs/principles/001-xdrs-core.md`). Sibling files and child folder references SHOULD use relative paths (e.g., `002-other-doc.md`, `.assets/image.png`, `subdir/file.md`). Never use relative paths that traverse up the directory tree (e.g., `../../.assets/test.png`, `../other.md`).
119
119
  - Use lowercase file names. Never use emojis.
120
120
 
121
121
  ### Phase 6: Place and Register
package/README.md CHANGED
@@ -86,20 +86,20 @@ This is especially important for BDRs: because business rules govern decisions t
86
86
  index.md # canonical index for this scope+type
87
87
  [subject]/
88
88
  [number]-[short-title].md # individual decision record
89
- assets/ # optional local resources for subject-level XDR files
89
+ .assets/ # optional local resources for subject-level XDR files
90
90
  researches/ # optional decision-backing research documents
91
91
  [number]-[short-title].md
92
- assets/
92
+ .assets/
93
93
  skills/ # optional skill packages for humans and AI agents
94
94
  [number]-[skill-name]/
95
95
  SKILL.md
96
- assets/
96
+ .assets/
97
97
  articles/ # optional synthetic views over XDRs, Research, and Skills
98
98
  [number]-[short-title].md
99
- assets/
99
+ .assets/
100
100
  plans/ # optional ephemeral execution plans
101
101
  [number]-[short-title].md
102
- assets/
102
+ .assets/
103
103
  ```
104
104
 
105
105
  Document types:
@@ -129,7 +129,7 @@ Each scope manages its own set of XDR artifacts independently. Scope owners disc
129
129
 
130
130
  Once a set of decisions is ready to share, scope owners pack the relevant `.xdrs/[scope]/` folder into a versioned npm package using a tool such as [filedist](https://github.com/flaviostutz/filedist) and publish it to an npm registry, either public or a company-internal one. Versioning gives consumers explicit control over which revision of a scope's decisions they adopt, avoiding situations where a single breaking policy change is forced on all consumers at once.
131
131
 
132
- The same applies to Research documents, skills, articles, and any sibling `assets/` folders: because they live alongside XDRs inside the scope folder, they are included in the same package and published together.
132
+ The same applies to Research documents, skills, articles, and any sibling `.assets/` folders: because they live alongside XDRs inside the scope folder, they are included in the same package and published together.
133
133
 
134
134
  ### Usage
135
135
 
@@ -168,7 +168,7 @@ The `lint` command reads `./.xdrs/**` from the given workspace path and checks c
168
168
  - root index coverage for all discovered canonical indexes
169
169
  - XDR metadata section placement and `valid-from` / `applied-to` field format
170
170
  - local markdown links between XDR documents, skills, articles, researches, and plans (excluding fenced code blocks)
171
- - local image and `assets/` links resolving inside the sibling `assets/` folder for each document
171
+ - local image and `.assets/` links resolving inside the sibling `.assets/` folder for each document
172
172
 
173
173
  Examples:
174
174
 
package/lib/lint.js CHANGED
@@ -22,7 +22,7 @@ const NUMBERED_FILE_RE = /^(\d{3,})-([a-z0-9-]+)\.md$/;
22
22
  const NUMBERED_DIR_RE = /^(\d{3,})-([a-z0-9-]+)$/;
23
23
  const REQUIRED_ROOT_INDEX_TEXT = 'XDRs in scopes listed last override the ones listed first';
24
24
  const SUBJECT_ARTIFACT_DIRS = new Set(['skills', 'articles', 'researches', 'plans']);
25
- const RESOURCE_DIR_NAME = 'assets';
25
+ const RESOURCE_DIR_NAME = '.assets';
26
26
  const IMAGE_EXTENSIONS = new Set(['.png', '.jpg', '.jpeg', '.gif', '.svg', '.webp', '.bmp']);
27
27
 
28
28
  function runLintCli(args) {
package/lib/lint.test.js CHANGED
@@ -243,9 +243,9 @@ test('allows relative asset links in XDR documents', () => {
243
243
  '.xdrs/_local/adrs/index.md': localAdrIndex([
244
244
  '- [001-main](principles/001-main.md) - Main decision'
245
245
  ]),
246
- '.xdrs/_local/adrs/principles/001-main.md': xdrDocument('See ![diagram](assets/diagram.png).'),
246
+ '.xdrs/_local/adrs/principles/001-main.md': xdrDocument('See ![diagram](.assets/diagram.png).'),
247
247
  });
248
- const assetsDir = path.join(workspaceRoot, '.xdrs/_local/adrs/principles/assets');
248
+ const assetsDir = path.join(workspaceRoot, '.xdrs/_local/adrs/principles/.assets');
249
249
  fs.mkdirSync(assetsDir, { recursive: true });
250
250
  fs.writeFileSync(path.join(assetsDir, 'diagram.png'), Buffer.alloc(0));
251
251
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xdrs-core",
3
- "version": "0.18.0",
3
+ "version": "0.19.0",
4
4
  "description": "A standard way to organize Decision Records (XDRs) across scopes, subjects, and teams so that AI agents can reliably query and follow them.",
5
5
  "repository": {
6
6
  "type": "git",