agent-md-generator 0.1.1 → 0.1.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 (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -99,6 +99,11 @@ Select which developer profiles you want to generate in a single run:
99
99
 
100
100
  The V2 release marks a major evolution, transitioning the project from a single web utility to a comprehensive, multi-platform monorepo architecture.
101
101
 
102
+ ### Version 0.1.2 Hotfix Release
103
+ A rapid hotfix patch released immediately after 0.1.1 to resolve a critical NPM monorepo packaging issue:
104
+ - **Workspace Dependency Resolution**: Moved `@agent-md/shared` from `dependencies` to `devDependencies` since it is fully static-bundled into the final `dist/cli.js` file at compile-time by `tsup`. This completely resolves the `EUNSUPPORTEDPROTOCOL: workspace:*` installation error when users ran the CLI via `npx`.
105
+ - **NPM Package Verification Fix**: Cleaned up the `"bin"` path definition in `package.json` to eliminate NPM registry warnings during publishing.
106
+
102
107
  ### What was in V1:
103
108
  - A standalone Next.js web application.
104
109
  - Basic form questions requiring manual input.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-md-generator",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Generate production-grade AGENT.md files via an interactive terminal wizard.",
5
5
  "keywords": ["agent", "ai", "claude", "cursor", "kiro", "copilot", "cli", "generator"],
6
6
  "homepage": "https://agent-md-generator.edwinfom.dev",
@@ -16,10 +16,10 @@
16
16
  "bin": "dist/cli.js",
17
17
  "scripts": {
18
18
  "build": "tsup",
19
- "dev": "tsup --watch"
19
+ "dev": "tsup --watch",
20
+ "test:local": "bun src/test-local.ts"
20
21
  },
21
22
  "dependencies": {
22
- "@agent-md/shared": "workspace:*",
23
23
  "@ai-sdk/deepseek": "^2.0.35",
24
24
  "@ai-sdk/google": "^1.0.0",
25
25
  "@ai-sdk/xai": "^1.0.0",
@@ -28,6 +28,7 @@
28
28
  "@clack/prompts": "^0.9.1"
29
29
  },
30
30
  "devDependencies": {
31
+ "@agent-md/shared": "workspace:*",
31
32
  "tsup": "^8.5.0",
32
33
  "typescript": "^5"
33
34
  }