agentme 0.1.3 → 0.1.5
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.
|
@@ -38,8 +38,7 @@ vibe coding, onboarding, and future feature development.
|
|
|
38
38
|
- BDRs capture product purpose, business rules, and consumer workflows.
|
|
39
39
|
- ADRs capture architectural context and cross-cutting patterns.
|
|
40
40
|
- EDRs capture concrete engineering decisions: tooling, structure, practices.
|
|
41
|
-
- Every non-trivial implementation decision MUST have a corresponding XDR entry
|
|
42
|
-
`agentme` scope before the implementation task is marked complete.
|
|
41
|
+
- Every non-trivial implementation decision MUST have a corresponding XDR entry before the implementation task is marked complete. Create new XDRs if necessary.
|
|
43
42
|
|
|
44
43
|
### II. Preset Integrity (NON-NEGOTIABLE)
|
|
45
44
|
|
|
@@ -15,7 +15,7 @@ compatibility: JavaScript/TypeScript, Node.js 18+
|
|
|
15
15
|
|
|
16
16
|
Creates a complete JavaScript/TypeScript library project from scratch. The layout separates
|
|
17
17
|
library source (`lib/`) from runnable usage examples (`examples/`), coordinated by root-level
|
|
18
|
-
Makefiles. Boilerplate is derived from the [
|
|
18
|
+
Makefiles. Boilerplate is derived from the [filedist](https://github.com/flaviostutz/filedist)
|
|
19
19
|
project.
|
|
20
20
|
|
|
21
21
|
Related EDR: [agentme-edr-003](../../003-javascript-project-tooling.md)
|
|
@@ -70,7 +70,7 @@ prepare:
|
|
|
70
70
|
node_modules/
|
|
71
71
|
dist/
|
|
72
72
|
*.tgz
|
|
73
|
-
.
|
|
73
|
+
.filedist
|
|
74
74
|
```
|
|
75
75
|
|
|
76
76
|
---
|
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ pnpm exec agentme check --output . --presets basic
|
|
|
22
22
|
|
|
23
23
|
## Overview
|
|
24
24
|
|
|
25
|
-
agentme is published as an npm package and consumed through `
|
|
25
|
+
agentme is published as an npm package and consumed through `filedist`-based extraction. It ships a curated set of reusable artifacts for other repositories:
|
|
26
26
|
|
|
27
27
|
- XDRs in `.xdrs/agentme/` for engineering, architecture, testing, tooling, and CI/CD standards.
|
|
28
28
|
- speckit agent files in `.github/`, `.specify/`, and `.vscode/` for specification-driven AI development workflows.
|
|
@@ -99,7 +99,7 @@ What these targets do:
|
|
|
99
99
|
├── AGENTS.md Project instructions for AI coding agents
|
|
100
100
|
├── Makefile Root build, lint, test, and publish entry point
|
|
101
101
|
├── .mise.toml Pinned tool versions (Node.js, pnpm)
|
|
102
|
-
├── bin/ CLI entrypoint delegated to
|
|
102
|
+
├── bin/ CLI entrypoint delegated to filedist
|
|
103
103
|
├── dist/ Generated npm package tarballs
|
|
104
104
|
├── examples/ Runnable verification of consumer extraction behavior
|
|
105
105
|
├── .github/ Shipped speckit agent and prompt files
|
|
@@ -116,4 +116,4 @@ Key folders:
|
|
|
116
116
|
|
|
117
117
|
## Release Notes
|
|
118
118
|
|
|
119
|
-
The published package exposes the `agentme` CLI through `bin/
|
|
119
|
+
The published package exposes the `agentme` CLI through `bin/filedist.js` and is released to npm using the root `publish` target. The examples install the locally packed tarball from `dist/` so they exercise the same package shape an external consumer receives.
|
package/bin/filedist.js
ADDED
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentme",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"
|
|
7
|
-
"xdrs-core": "^0.3.
|
|
6
|
+
"filedist": "^0.21.2",
|
|
7
|
+
"xdrs-core": "^0.3.8"
|
|
8
8
|
},
|
|
9
|
-
"bin": "bin/
|
|
9
|
+
"bin": "bin/filedist.js",
|
|
10
10
|
"files": [
|
|
11
11
|
"package.json",
|
|
12
|
-
"bin/
|
|
12
|
+
"bin/filedist.js",
|
|
13
13
|
".xdrs/agentme/**",
|
|
14
14
|
".xdrs/index.md",
|
|
15
15
|
".github/agents/speckit*",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"type": "git",
|
|
22
22
|
"url": "https://github.com/flaviostutz/agentme.git"
|
|
23
23
|
},
|
|
24
|
-
"
|
|
24
|
+
"filedist": {
|
|
25
25
|
"sets": [
|
|
26
26
|
{
|
|
27
27
|
"package": "xdrs-core",
|
package/bin/npmdata.js
DELETED