xdrs-core 0.28.4 → 0.29.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/.filedist-package.yml
CHANGED
|
@@ -11,9 +11,9 @@ sets:
|
|
|
11
11
|
path: .
|
|
12
12
|
symlinks:
|
|
13
13
|
- source: .xdrs/**/skills/001-review
|
|
14
|
-
target: .
|
|
14
|
+
target: .agents/skills
|
|
15
15
|
- source: .xdrs/**/skills/008-write-xdrs-doc
|
|
16
|
-
target: .
|
|
16
|
+
target: .agents/skills
|
|
17
17
|
gitignore: false
|
|
18
18
|
|
|
19
19
|
- selector:
|
|
@@ -118,10 +118,10 @@ If any check fails, revise before continuing.
|
|
|
118
118
|
### Phase 6: Write Files
|
|
119
119
|
|
|
120
120
|
1. Create the skill file at `.xdrs/[scope]/[type]/[subject]/skills/[number]-[skill-name]/SKILL.md`.
|
|
121
|
-
2. Create a symlink at `.
|
|
121
|
+
2. Create a symlink at `.agents/skills/[number]-[skill-name]` so VS Code picks it up immediately:
|
|
122
122
|
```
|
|
123
|
-
mkdir -p .
|
|
124
|
-
ln -s ../../.xdrs/[scope]/[type]/[subject]/skills/[number]-[skill-name] .
|
|
123
|
+
mkdir -p .agents/skills
|
|
124
|
+
ln -s ../../.xdrs/[scope]/[type]/[subject]/skills/[number]-[skill-name] .agents/skills/[number]-[skill-name]
|
|
125
125
|
```
|
|
126
126
|
3. Evaluate whether the scope index at `.xdrs/[scope]/index.md` should be updated to reflect the new skill. If the scope index does not exist, create it following article standards and the scope index rules in `_core-adr-policy-001`.
|
|
127
127
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xdrs-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.29.0",
|
|
4
4
|
"description": "A framework to structure, compile and distribute Architectural (ADR), Business (BDR), and Engineering (EDR) decision records contents so that AI agents and humans can reliably find and use them with hierarchical scopes and controlled rollout in the format of distributable versioned packages.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|