agentme 0.1.4 → 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.
@@ -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 [npmdata](https://github.com/flaviostutz/npmdata)
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
- .npmdata
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 `npmdata`-based extraction. It ships a curated set of reusable artifacts for other repositories:
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 npmdata
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/npmdata.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.
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.
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ 'use strict';
3
+ require('filedist').binpkg(__dirname, process.argv.slice(2));
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "agentme",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "",
5
5
  "dependencies": {
6
- "npmdata": "^0.20.1",
7
- "xdrs-core": "^0.3.6"
6
+ "filedist": "^0.21.2",
7
+ "xdrs-core": "^0.3.8"
8
8
  },
9
- "bin": "bin/npmdata.js",
9
+ "bin": "bin/filedist.js",
10
10
  "files": [
11
11
  "package.json",
12
- "bin/npmdata.js",
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
- "npmdata": {
24
+ "filedist": {
25
25
  "sets": [
26
26
  {
27
27
  "package": "xdrs-core",
package/bin/npmdata.js DELETED
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env node
2
- 'use strict';
3
- require('npmdata').binpkg(__dirname, process.argv.slice(2));