xdrs-core 0.2.8-beta.0 → 0.2.10-beta.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.
@@ -111,7 +111,7 @@ In the end, state explicitly the question that needs to be answered. E.g: "Which
111
111
  **Examples:**
112
112
  - `.xdrs/business-x/edrs/devops/003-required-development-workflow.md`
113
113
  - `.xdrs/business-x/adrs/governance/010-security-and-secrets-management.md`
114
- - `.xdrs/general/adrs/devops/001-multi-repo.md`
114
+ - `.xdrs/_general/adrs/devops/001-multi-repo.md`
115
115
 
116
116
  **XDR ID Examples:**
117
117
  - `business-x-adr-001` (not `ADR-business-x-001` or `business-x-adr-1`)
@@ -39,8 +39,9 @@ Quick test:
39
39
  ```
40
40
 
41
41
  Examples:
42
- - `.xdrs/general/adrs/principles/skills/001-code-review/SKILL.md`
42
+ - `.xdrs/_general/adrs/principles/skills/001-code-review/SKILL.md`
43
43
  - `.xdrs/business-x/edrs/devops/skills/001-ci-pipeline-debug/SKILL.md`
44
+ - `.xdrs/_local/adrs/principles/skills/001-my-nice-skill/SKILL.md`
44
45
 
45
46
  **Skill numbering**
46
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xdrs-core",
3
- "version": "0.2.8-beta.0",
3
+ "version": "0.2.10-beta.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",
@@ -20,35 +20,37 @@
20
20
  "bin/npmdata.js"
21
21
  ],
22
22
  "dependencies": {
23
- "npmdata": "^0.10.3"
23
+ "npmdata": "^0.11.0"
24
+ },
25
+ "npmdata": {
26
+ "sets": [
27
+ {
28
+ "package": "xdrs-core",
29
+ "outputDir": ".",
30
+ "files": [
31
+ "AGENTS.md",
32
+ ".xdrs/**",
33
+ "!.xdrs/index.md"
34
+ ],
35
+ "symlinks": [
36
+ {
37
+ "source": ".xdrs/**/skills/*",
38
+ "target": "./.github/skills"
39
+ }
40
+ ],
41
+ "gitignore": false
42
+ },
43
+ {
44
+ "package": "xdrs-core",
45
+ "outputDir": ".",
46
+ "files": [
47
+ ".xdrs/index.md"
48
+ ],
49
+ "gitignore": false,
50
+ "unmanaged": true,
51
+ "keepExisting": true
52
+ }
53
+ ]
24
54
  },
25
- "npmdata": [
26
- {
27
- "package": "xdrs-core",
28
- "outputDir": ".",
29
- "files": [
30
- "AGENTS.md",
31
- ".xdrs/**",
32
- "!.xdrs/index.md"
33
- ],
34
- "symlinks": [
35
- {
36
- "source": ".xdrs/**/skills/*",
37
- "target": "./.github/skills"
38
- }
39
- ],
40
- "gitignore": false
41
- },
42
- {
43
- "package": "xdrs-core",
44
- "outputDir": ".",
45
- "files": [
46
- ".xdrs/index.md"
47
- ],
48
- "gitignore": false,
49
- "unmanaged": true,
50
- "keepExisting": true
51
- }
52
- ],
53
55
  "bin": "bin/npmdata.js"
54
56
  }