agentme 0.8.0 → 0.8.2

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.
Files changed (25) hide show
  1. package/.filedist-package.yml +77 -0
  2. package/.xdrs/agentme/edrs/application/003-javascript-project-tooling.md +4 -2
  3. package/.xdrs/agentme/edrs/application/010-golang-project-tooling.md +4 -2
  4. package/.xdrs/agentme/edrs/application/014-python-project-tooling.md +4 -2
  5. package/.xdrs/agentme/edrs/application/015-cli-tool-standards.md +4 -3
  6. package/.xdrs/agentme/edrs/application/skills/001-create-javascript-project/SKILL.md +1 -1
  7. package/.xdrs/agentme/edrs/application/skills/003-create-golang-project/SKILL.md +1 -1
  8. package/.xdrs/agentme/edrs/application/skills/004-select-relevant-xdrs/SKILL.md +1 -1
  9. package/.xdrs/agentme/edrs/application/skills/005-create-python-project/SKILL.md +1 -1
  10. package/.xdrs/agentme/edrs/devops/005-monorepo-structure.md +4 -2
  11. package/.xdrs/agentme/edrs/devops/006-github-pipelines.md +4 -2
  12. package/.xdrs/agentme/edrs/devops/008-common-targets.md +4 -2
  13. package/.xdrs/agentme/edrs/devops/017-tool-execution-and-scripting.md +4 -2
  14. package/.xdrs/agentme/edrs/devops/skills/002-monorepo-setup/SKILL.md +1 -1
  15. package/.xdrs/agentme/edrs/governance/013-contributing-guide-requirements.md +4 -2
  16. package/.xdrs/agentme/edrs/observability/011-service-health-check-endpoint.md +4 -2
  17. package/.xdrs/agentme/edrs/principles/002-coding-best-practices.md +4 -2
  18. package/.xdrs/agentme/edrs/principles/004-unit-test-requirements.md +4 -2
  19. package/.xdrs/agentme/edrs/principles/007-project-quality-standards.md +4 -2
  20. package/.xdrs/agentme/edrs/principles/009-error-handling.md +4 -2
  21. package/.xdrs/agentme/edrs/principles/012-continuous-xdr-enrichment.md +5 -3
  22. package/.xdrs/agentme/edrs/principles/016-cross-language-module-structure.md +4 -2
  23. package/.xdrs/agentme/edrs/principles/articles/001-continuous-xdr-improvement.md +3 -3
  24. package/.xdrs/index.md +2 -0
  25. package/package.json +5 -119
@@ -0,0 +1,77 @@
1
+ sets:
2
+ - package: xdrs-core@0.27.0
3
+ selector:
4
+ files:
5
+ - .xdrs/_core/**
6
+ - AGENTS.md
7
+ output:
8
+ path: .
9
+ gitignore: false
10
+ presets:
11
+ - core
12
+ - basic
13
+
14
+ - selector:
15
+ files:
16
+ - .xdrs/agentme/edrs/application/skills/004-select-relevant-xdrs/**
17
+ output:
18
+ path: .
19
+ gitignore: false
20
+ presets:
21
+ - core
22
+
23
+ - selector:
24
+ files:
25
+ - .xdrs/agentme/**
26
+ output:
27
+ path: .
28
+ gitignore: false
29
+ presets:
30
+ - basic
31
+
32
+ - selector:
33
+ files:
34
+ - .xdrs/index.md
35
+ output:
36
+ path: .
37
+ managed: false
38
+ skipIfExists: true
39
+ gitignore: false
40
+ presets:
41
+ - basic
42
+
43
+ - selector:
44
+ files:
45
+ - .github/agents/speckit*
46
+ - .github/prompts/speckit*
47
+ - .specify/**
48
+ exclude:
49
+ - .specify/templates/**
50
+ output:
51
+ path: .
52
+ gitignore: false
53
+ readonly: true
54
+ presets:
55
+ - speckit
56
+
57
+ - selector:
58
+ files:
59
+ - .specify/templates/**
60
+ output:
61
+ path: .
62
+ gitignore: false
63
+ readonly: false
64
+ presets:
65
+ - speckit
66
+
67
+ - selector:
68
+ files:
69
+ - .vscode/settings.json
70
+ output:
71
+ path: .
72
+ managed: false
73
+ skipIfExists: true
74
+ readonly: false
75
+ gitignore: false
76
+ presets:
77
+ - speckit
@@ -1,9 +1,11 @@
1
1
  ---
2
- name: agentme-edr-003-javascript-project-tooling-and-structure
2
+ name: agentme-edr-policy-003-javascript-project-tooling-and-structure
3
3
  description: Defines the standard JavaScript and TypeScript project toolchain and layout using Mise, pnpm, TypeScript, ESLint, Jest, and Makefiles. Use when scaffolding or reviewing JavaScript projects.
4
+ apply-to: JavaScript and TypeScript projects
5
+ valid-from: 2026-05-25
4
6
  ---
5
7
 
6
- # agentme-edr-003: JavaScript project tooling and structure
8
+ # agentme-edr-policy-003: JavaScript project tooling and structure
7
9
 
8
10
  ## Context and Problem Statement
9
11
 
@@ -1,9 +1,11 @@
1
1
  ---
2
- name: agentme-edr-010-go-project-tooling-and-structure
2
+ name: agentme-edr-policy-010-go-project-tooling-and-structure
3
3
  description: Defines the standard Go project toolchain, layout, and Makefile workflow using Mise for agentme-based projects. Use when scaffolding or reviewing Go projects.
4
+ apply-to: Go projects
5
+ valid-from: 2026-05-25
4
6
  ---
5
7
 
6
- # agentme-edr-010: Go project tooling and structure
8
+ # agentme-edr-policy-010: Go project tooling and structure
7
9
 
8
10
  ## Context and Problem Statement
9
11
 
@@ -1,9 +1,11 @@
1
1
  ---
2
- name: agentme-edr-014-python-project-tooling-and-structure
2
+ name: agentme-edr-policy-014-python-project-tooling-and-structure
3
3
  description: Defines the standard Python project toolchain, layout, and Makefile workflow using Mise, uv, ruff, pyright, pytest, and pip-audit. Use when scaffolding or reviewing Python projects.
4
+ apply-to: Python projects
5
+ valid-from: 2026-05-25
4
6
  ---
5
7
 
6
- # agentme-edr-014: Python project tooling and structure
8
+ # agentme-edr-policy-014: Python project tooling and structure
7
9
 
8
10
  ## Context and Problem Statement
9
11
 
@@ -1,10 +1,11 @@
1
1
  ---
2
- name: agentme-edr-015-cli-tool-standards
2
+ name: agentme-edr-policy-015-cli-tool-standards
3
3
  description: Defines how distributable CLI tools should separate command handling from library logic and expose consistent command behavior. Use when designing or reviewing CLI interfaces.
4
- applied-to: Distributable CLI tools and their standalone libraries
4
+ apply-to: Projects with distributable CLI tools
5
+ valid-from: 2026-05-25
5
6
  ---
6
7
 
7
- # agentme-edr-015: CLI tool standards
8
+ # agentme-edr-policy-015: CLI tool standards
8
9
 
9
10
  ## Context and Problem Statement
10
11
 
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: 001-create-javascript-project
2
+ name: agentme-edr-skill-001-create-javascript-project
3
3
  description: >
4
4
  Scaffolds the initial boilerplate structure for a JavaScript/TypeScript library project following
5
5
  the standard tooling and layout defined in agentme-edr-003. Activate this skill when the user
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: 003-create-golang-project
2
+ name: agentme-edr-skill-003-create-golang-project
3
3
  description: >
4
4
  Scaffolds the initial boilerplate structure for a Go (Golang) CLI or library project following
5
5
  the standard tooling and layout defined in agentme-edr-010. Activate this skill when the user
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: 004-select-relevant-xdrs
2
+ name: agentme-edr-skill-004-select-relevant-xdrs
3
3
  description: >
4
4
  Analyzes a client repository, extracts the full agentme XDR set, and excludes the records that do
5
5
  not fit the project's structure and workflow needs. Activate this skill when the user asks to
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: 005-create-python-project
2
+ name: agentme-edr-skill-005-create-python-project
3
3
  description: >
4
4
  Scaffolds the initial boilerplate structure for a Python library or CLI project following the
5
5
  standard tooling and layout defined in agentme-edr-014. Activate this skill when the user asks
@@ -1,9 +1,11 @@
1
1
  ---
2
- name: agentme-edr-005-monorepo-structure
2
+ name: agentme-edr-policy-005-monorepo-structure
3
3
  description: Defines the standard monorepo layout, naming, and build conventions using shared areas, Mise, and Makefiles. Use when creating or reviewing monorepos.
4
+ apply-to: Monorepo projects
5
+ valid-from: 2026-05-25
4
6
  ---
5
7
 
6
- # agentme-edr-005: Monorepo structure
8
+ # agentme-edr-policy-005: Monorepo structure
7
9
 
8
10
  ## Context and Problem Statement
9
11
 
@@ -1,9 +1,11 @@
1
1
  ---
2
- name: agentme-edr-006-github-ci-cd-pipelines
2
+ name: agentme-edr-policy-006-github-ci-cd-pipelines
3
3
  description: Defines the standard GitHub Actions workflow split for CI, release tagging, and publishing. Use when configuring project automation.
4
+ apply-to: Projects using GitHub Actions
5
+ valid-from: 2026-05-25
4
6
  ---
5
7
 
6
- # agentme-edr-006: GitHub CI/CD pipelines
8
+ # agentme-edr-policy-006: GitHub CI/CD pipelines
7
9
 
8
10
  ## Context and Problem Statement
9
11
 
@@ -1,9 +1,11 @@
1
1
  ---
2
- name: agentme-edr-008-common-development-script-names
2
+ name: agentme-edr-policy-008-common-development-script-names
3
3
  description: Defines standard Makefile target names and the mandatory tool-execution flow using Mise. Use when designing build, lint, test, and release entry points.
4
+ apply-to: All projects with Makefiles
5
+ valid-from: 2026-05-25
4
6
  ---
5
7
 
6
- # agentme-edr-008: Common development script names
8
+ # agentme-edr-policy-008: Common development script names
7
9
 
8
10
  ## Context and Problem Statement
9
11
 
@@ -1,9 +1,11 @@
1
1
  ---
2
- name: agentme-edr-017-tool-execution-and-scripting
2
+ name: agentme-edr-policy-017-tool-execution-and-scripting
3
3
  description: Defines how Makefiles, CI pipelines, and optional wrapper scripts execute project commands. Use when designing project automation or command entry points.
4
+ apply-to: All projects with Makefiles and CI pipelines
5
+ valid-from: 2026-05-25
4
6
  ---
5
7
 
6
- # agentme-edr-017: Tool execution and scripting
8
+ # agentme-edr-policy-017: Tool execution and scripting
7
9
 
8
10
  ## Context and Problem Statement
9
11
 
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: 002-monorepo-setup
2
+ name: agentme-edr-skill-002-monorepo-setup
3
3
  description: >
4
4
  Step-by-step instructions for setting up and scaffolding a new monorepo following the standard
5
5
  layout, naming conventions, Makefiles, Mise tooling, and README requirements defined in
@@ -1,9 +1,11 @@
1
1
  ---
2
- name: agentme-edr-013-contributing-guide-requirements
2
+ name: agentme-edr-policy-013-contributing-guide-requirements
3
3
  description: Defines the minimum contributor workflow guidance required in root CONTRIBUTING.md files. Use when scaffolding or reviewing contribution processes.
4
+ apply-to: Projects with open-source contributions
5
+ valid-from: 2026-05-25
4
6
  ---
5
7
 
6
- # agentme-edr-013: Contributing guide requirements
8
+ # agentme-edr-policy-013: Contributing guide requirements
7
9
 
8
10
  ## Context and Problem Statement
9
11
 
@@ -1,9 +1,11 @@
1
1
  ---
2
- name: agentme-edr-011-service-health-check-endpoint
2
+ name: agentme-edr-policy-011-service-health-check-endpoint
3
3
  description: Defines the required health endpoint contract for service availability and dependency readiness checks. Use when implementing or reviewing service health endpoints.
4
+ apply-to: Service projects with health endpoints
5
+ valid-from: 2026-05-25
4
6
  ---
5
7
 
6
- # agentme-edr-011: Service health check endpoint
8
+ # agentme-edr-policy-011: Service health check endpoint
7
9
 
8
10
  ## Context and Problem Statement
9
11
 
@@ -1,9 +1,11 @@
1
1
  ---
2
- name: agentme-edr-002-coding-best-practices
2
+ name: agentme-edr-policy-002-coding-best-practices
3
3
  description: Defines cross-language coding practices for keeping code readable, modular, and synchronized with tests and documentation. Apply across projects adopting agentme engineering standards.
4
+ apply-to: All software projects
5
+ valid-from: 2026-05-25
4
6
  ---
5
7
 
6
- # agentme-edr-002: Coding best practices
8
+ # agentme-edr-policy-002: Coding best practices
7
9
 
8
10
  ## Context and Problem Statement
9
11
 
@@ -1,9 +1,11 @@
1
1
  ---
2
- name: agentme-edr-004-unit-test-requirements
2
+ name: agentme-edr-policy-004-unit-test-requirements
3
3
  description: Defines unit test requirements for assertions, offline execution, coverage, shared setup, and real-code preference. Use when writing or reviewing tests.
4
+ apply-to: All projects with unit tests
5
+ valid-from: 2026-05-25
4
6
  ---
5
7
 
6
- # agentme-edr-004: Unit test requirements
8
+ # agentme-edr-policy-004: Unit test requirements
7
9
 
8
10
  ## Context and Problem Statement
9
11
 
@@ -1,9 +1,11 @@
1
1
  ---
2
- name: agentme-edr-007-project-quality-standards
2
+ name: agentme-edr-policy-007-project-quality-standards
3
3
  description: Defines minimum project quality standards for README onboarding, testing, linting, XDR compliance, and runnable examples. Use when scaffolding or reviewing projects.
4
+ apply-to: All projects
5
+ valid-from: 2026-05-25
4
6
  ---
5
7
 
6
- # agentme-edr-007: Project quality standards
8
+ # agentme-edr-policy-007: Project quality standards
7
9
 
8
10
  ## Context and Problem Statement
9
11
 
@@ -1,9 +1,11 @@
1
1
  ---
2
- name: agentme-edr-009-error-handling
2
+ name: agentme-edr-policy-009-error-handling
3
3
  description: Defines error handling practices for catching, propagating, surfacing, and testing failures consistently across projects. Use when implementing interfaces and failure paths.
4
+ apply-to: All software projects
5
+ valid-from: 2026-05-25
4
6
  ---
5
7
 
6
- # agentme-edr-009: Error handling
8
+ # agentme-edr-policy-009: Error handling
7
9
 
8
10
  ## Context and Problem Statement
9
11
 
@@ -1,9 +1,11 @@
1
1
  ---
2
- name: agentme-edr-012-continuous-xdr-improvement-policy
2
+ name: agentme-edr-policy-012-continuous-xdr-improvement-policy
3
3
  description: Defines how teams should promote reusable implementation guidance into shared XDRs instead of keeping it in prompts or local habits. Use when recurring decisions surface during delivery.
4
+ apply-to: All projects using XDR framework
5
+ valid-from: 2026-05-25
4
6
  ---
5
7
 
6
- # agentme-edr-012: Continuous xdr improvement policy
8
+ # agentme-edr-policy-012: Continuous xdr improvement policy
7
9
 
8
10
  ## Context and Problem Statement
9
11
 
@@ -41,4 +43,4 @@ Developers must treat reusable missing guidance discovered during implementation
41
43
  - [_core-adr-001](../../../_core/adrs/principles/001-xdrs-core.md)
42
44
  - [_core-article-001](../../../_core/adrs/principles/articles/001-xdrs-overview.md)
43
45
  - [agentme-article-001](articles/001-continuous-xdr-improvement.md)
44
- - [002-write-xdr skill](../../../../.github/skills/002-write-xdr/SKILL.md)
46
+ - [002-write-policy skill](../../../../.github/skills/002-write-policy/SKILL.md)
@@ -1,9 +1,11 @@
1
1
  ---
2
- name: agentme-edr-016-cross-language-module-structure
2
+ name: agentme-edr-policy-016-cross-language-module-structure
3
3
  description: Defines the baseline module-root structure, artifact locations, cache placement, README expectations, examples layout, and test folder conventions across languages. Use when creating or reviewing buildable modules.
4
+ apply-to: All buildable modules
5
+ valid-from: 2026-05-25
4
6
  ---
5
7
 
6
- # agentme-edr-016: Cross-language module structure
8
+ # agentme-edr-policy-016: Cross-language module structure
7
9
 
8
10
  ## Context and Problem Statement
9
11
 
@@ -1,4 +1,4 @@
1
- # agentme-article-001: Continuous XDR improvement
1
+ # agentme-edr-article-001: Continuous XDR improvement
2
2
 
3
3
  ## Overview
4
4
 
@@ -51,7 +51,7 @@ Good opening questions:
51
51
 
52
52
  ### How should you organize the XDR?
53
53
 
54
- Follow the XDR template from [_core-adr-002](../../../../_core/adrs/principles/002-xdr-standards.md). Keep the document small, explicit, and decision-focused.
54
+ Follow the XDR template from [_core-adr-002](../../../../_core/adrs/principles/002-policy-standards.md). Keep the document small, explicit, and decision-focused.
55
55
 
56
56
  Use this checklist:
57
57
 
@@ -90,4 +90,4 @@ If the same clarification would likely be needed in another feature, by another
90
90
  - [_core-adr-001](../../../../_core/adrs/principles/001-xdrs-core.md) - XDR structure, numbering, and mandatory template
91
91
  - [_core-article-001](../../../../_core/adrs/principles/articles/001-xdrs-overview.md) - XDR introduction and general adoption guidance
92
92
  - [agentme-edr-012](../012-continuous-xdr-enrichment.md) - Shared-first XDR enrichment policy and 80% coverage target
93
- - [002-write-xdr skill](../../../../../.github/skills/002-write-xdr/SKILL.md) - Step-by-step procedure for drafting new XDRs
93
+ - [002-write-policy skill](../../../../../.github/skills/002-write-policy/SKILL.md) - Step-by-step procedure for drafting new XDRs
package/.xdrs/index.md CHANGED
@@ -6,6 +6,8 @@ This index points to all type- and scope-specific XDR indexes. XDRs (Decision Re
6
6
 
7
7
  XDRs in scopes listed last override the ones listed first
8
8
 
9
+ XDRS scopes listed last override the ones listed first
10
+
9
11
  ### _core
10
12
 
11
13
  Decisions about how XDRs work
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "agentme",
3
- "version": "0.8.0",
3
+ "version": "0.8.2",
4
4
  "description": "",
5
5
  "dependencies": {
6
- "filedist": "^0.28.1",
7
- "xdrs-core": "^0.21.1"
6
+ "filedist": "^0.33.0"
8
7
  },
9
8
  "bin": "bin/filedist.js",
10
9
  "files": [
11
10
  "package.json",
12
11
  "bin/filedist.js",
12
+ ".filedist-package.yml",
13
13
  ".xdrs/agentme/**",
14
14
  ".xdrs/index.md",
15
15
  ".github/agents/speckit*",
@@ -21,121 +21,7 @@
21
21
  "type": "git",
22
22
  "url": "https://github.com/flaviostutz/agentme.git"
23
23
  },
24
- "filedist": {
25
- "sets": [
26
- {
27
- "package": "xdrs-core@latest",
28
- "selector": {
29
- "files": [
30
- ".xdrs/_core/**",
31
- "AGENTS.md"
32
- ]
33
- },
34
- "output": {
35
- "path": ".",
36
- "gitignore": false
37
- },
38
- "presets": [
39
- "core",
40
- "basic"
41
- ]
42
- },
43
- {
44
- "selector": {
45
- "files": [
46
- ".xdrs/agentme/edrs/application/skills/004-select-relevant-xdrs/**"
47
- ]
48
- },
49
- "output": {
50
- "path": ".",
51
- "gitignore": false
52
- },
53
- "presets": [
54
- "core"
55
- ]
56
- },
57
- {
58
- "selector": {
59
- "files": [
60
- ".xdrs/agentme/**"
61
- ]
62
- },
63
- "output": {
64
- "path": ".",
65
- "gitignore": false
66
- },
67
- "presets": [
68
- "basic"
69
- ]
70
- },
71
- {
72
- "selector": {
73
- "files": [
74
- ".xdrs/index.md"
75
- ]
76
- },
77
- "output": {
78
- "path": ".",
79
- "managed": false,
80
- "skipIfExists": true,
81
- "gitignore": false
82
- },
83
- "presets": [
84
- "basic"
85
- ]
86
- },
87
- {
88
- "selector": {
89
- "files": [
90
- ".github/agents/speckit*",
91
- ".github/prompts/speckit*",
92
- ".specify/**"
93
- ],
94
- "exclude": [
95
- ".specify/templates/**"
96
- ]
97
- },
98
- "output": {
99
- "path": ".",
100
- "gitignore": false,
101
- "readonly": true
102
- },
103
- "presets": [
104
- "speckit"
105
- ]
106
- },
107
- {
108
- "selector": {
109
- "files": [
110
- ".specify/templates/**"
111
- ]
112
- },
113
- "output": {
114
- "path": ".",
115
- "gitignore": false,
116
- "readonly": false
117
- },
118
- "presets": [
119
- "speckit"
120
- ]
121
- },
122
- {
123
- "selector": {
124
- "files": [
125
- ".vscode/settings.json"
126
- ]
127
- },
128
- "output": {
129
- "path": ".",
130
- "managed": false,
131
- "skipIfExists": true,
132
- "readonly": false,
133
- "gitignore": false
134
- },
135
- "presets": [
136
- "speckit"
137
- ]
138
- }
139
- ]
24
+ "devDependencies": {
25
+ "xdrs-core": "^0.27.0"
140
26
  }
141
27
  }