agents-md-gen 0.4.0 → 0.4.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/package.json +3 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,38 @@
1
+ # Changelog
2
+
3
+ ## 0.4.1
4
+
5
+ - Ship `CHANGELOG.md` inside the published package.
6
+ - First release published via npm's OIDC trusted publishing from GitHub
7
+ Actions instead of a manually-generated token.
8
+
9
+ ## 0.4.0
10
+
11
+ - Detect monorepos (Turborepo, Nx, Lerna, npm/yarn/pnpm workspaces) and
12
+ list their sub-packages by name.
13
+
14
+ ## 0.3.0
15
+
16
+ - Add `--check`: exits 1 if the output file is missing or out of date,
17
+ without writing anything. Meant for CI.
18
+ - Fix: the tool's own output file (`AGENTS.md`/`CLAUDE.md`) could appear
19
+ inconsistently in its own "Structure" section depending on whether it
20
+ already existed when the repo was scanned, which would have made
21
+ `--check` report false positives forever after the first run. Both
22
+ files are now excluded from the structure listing.
23
+
24
+ ## 0.2.0
25
+
26
+ - Detect Java/Kotlin projects (Maven, Gradle, including wrapper scripts).
27
+
28
+ ## 0.1.1
29
+
30
+ - Broaden npm keywords for discoverability.
31
+ - Add a real example output to the README.
32
+
33
+ ## 0.1.0
34
+
35
+ - Initial release. Detects Node.js/TypeScript, Python, Rust, Go, and Ruby
36
+ projects and generates `AGENTS.md`/`CLAUDE.md` from what it finds:
37
+ package manager, framework, test runner, build/test/lint commands,
38
+ top-level structure, CI, and license.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agents-md-gen",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Generate a solid AGENTS.md / CLAUDE.md for any repo by detecting its stack, commands, and structure",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -9,7 +9,8 @@
9
9
  "main": "src/index.js",
10
10
  "files": [
11
11
  "bin",
12
- "src"
12
+ "src",
13
+ "CHANGELOG.md"
13
14
  ],
14
15
  "engines": {
15
16
  "node": ">=18.3.0"