agentme 0.8.1 → 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.
@@ -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,6 +1,8 @@
1
1
  ---
2
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
8
  # agentme-edr-policy-003: JavaScript project tooling and structure
@@ -1,6 +1,8 @@
1
1
  ---
2
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
8
  # agentme-edr-policy-010: Go project tooling and structure
@@ -1,6 +1,8 @@
1
1
  ---
2
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
8
  # agentme-edr-policy-014: Python project tooling and structure
@@ -1,6 +1,8 @@
1
1
  ---
2
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
+ apply-to: Projects with distributable CLI tools
5
+ valid-from: 2026-05-25
4
6
  ---
5
7
 
6
8
  # agentme-edr-policy-015: CLI tool standards
@@ -1,6 +1,8 @@
1
1
  ---
2
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
8
  # agentme-edr-policy-005: Monorepo structure
@@ -1,6 +1,8 @@
1
1
  ---
2
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
8
  # agentme-edr-policy-006: GitHub CI/CD pipelines
@@ -1,6 +1,8 @@
1
1
  ---
2
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
8
  # agentme-edr-policy-008: Common development script names
@@ -1,6 +1,8 @@
1
1
  ---
2
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
8
  # agentme-edr-policy-017: Tool execution and scripting
@@ -1,6 +1,8 @@
1
1
  ---
2
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
8
  # agentme-edr-policy-013: Contributing guide requirements
@@ -1,6 +1,8 @@
1
1
  ---
2
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
8
  # agentme-edr-policy-011: Service health check endpoint
@@ -1,6 +1,8 @@
1
1
  ---
2
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
8
  # agentme-edr-policy-002: Coding best practices
@@ -1,6 +1,8 @@
1
1
  ---
2
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
8
  # agentme-edr-policy-004: Unit test requirements
@@ -1,6 +1,8 @@
1
1
  ---
2
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
8
  # agentme-edr-policy-007: Project quality standards
@@ -1,6 +1,8 @@
1
1
  ---
2
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
8
  # agentme-edr-policy-009: Error handling
@@ -1,6 +1,8 @@
1
1
  ---
2
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
8
  # agentme-edr-policy-012: Continuous xdr improvement policy
@@ -1,6 +1,8 @@
1
1
  ---
2
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
8
  # agentme-edr-policy-016: Cross-language module structure
@@ -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
 
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "agentme",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "",
5
5
  "dependencies": {
6
- "filedist": "^0.31.0",
7
- "xdrs-core": "^0.26.0"
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
  }