xdrs-core 0.3.0 → 0.3.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/AGENTS.md +5 -2
- package/package.json +2 -4
package/AGENTS.md
CHANGED
|
@@ -13,9 +13,12 @@
|
|
|
13
13
|
- Analyse your work against the XDRs and ensure implementation decisions follow guidelines and patterns
|
|
14
14
|
- Fix any issues
|
|
15
15
|
|
|
16
|
-
4. **
|
|
16
|
+
4. **Document decisions as XDRs when appropriate**
|
|
17
|
+
- Check if what is being performed shouldn't be documented as an XDR in _local scope (because the decision has potential to be reused in the future or the topic is complex and would benefit from a document for clarity). Create or update existing documents accordingly.
|
|
18
|
+
|
|
19
|
+
5. **Do not perform git operations unless explicitelly asked**
|
|
17
20
|
- The developer should be in control of possible destructive operations on the workspace
|
|
18
21
|
|
|
19
|
-
Check for additional instructions on [AGENTS
|
|
22
|
+
Check for additional instructions on [AGENTS.local.md](AGENTS.local.md).
|
|
20
23
|
|
|
21
24
|
**This AGENTS.md file was created with xdrs-core and shouldn't be changed**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xdrs-core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
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,12 +20,11 @@
|
|
|
20
20
|
"bin/npmdata.js"
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"npmdata": "^0.18.
|
|
23
|
+
"npmdata": "^0.18.12"
|
|
24
24
|
},
|
|
25
25
|
"npmdata": {
|
|
26
26
|
"sets": [
|
|
27
27
|
{
|
|
28
|
-
"package": "xdrs-core",
|
|
29
28
|
"selector": {
|
|
30
29
|
"files": [
|
|
31
30
|
"AGENTS.md",
|
|
@@ -47,7 +46,6 @@
|
|
|
47
46
|
}
|
|
48
47
|
},
|
|
49
48
|
{
|
|
50
|
-
"package": "xdrs-core",
|
|
51
49
|
"selector": {
|
|
52
50
|
"files": [
|
|
53
51
|
".xdrs/index.md"
|