create-loadout 1.0.2 → 1.0.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.
- package/README.md +1 -1
- package/dist/bin-paths.d.ts +2 -0
- package/dist/bin-paths.js +7 -0
- package/dist/claude-md.js +504 -333
- package/dist/cli.js +2 -2
- package/dist/create-next.js +2 -1
- package/dist/engine.js +26 -25
- package/dist/env.js +12 -25
- package/dist/generate-readme.js +123 -120
- package/dist/index.js +4 -1
- package/dist/integrations/index.js +3 -2
- package/dist/mcp-server.d.ts +1 -1
- package/dist/mcp-server.js +5 -1
- package/dist/setup-shadcn.js +3 -4
- package/dist/templates/neon-drizzle.js +329 -327
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -167,7 +167,7 @@ Loadout ships an MCP server so Claude Code agents can scaffold and extend projec
|
|
|
167
167
|
### Register
|
|
168
168
|
|
|
169
169
|
```bash
|
|
170
|
-
claude mcp add create-loadout -- npx -y create-loadout-mcp
|
|
170
|
+
claude mcp add create-loadout -- npx -y -p create-loadout create-loadout-mcp
|
|
171
171
|
```
|
|
172
172
|
|
|
173
173
|
### Available Tools
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import path from 'path';
|
|
2
|
+
const nodeBinDir = path.dirname(process.execPath);
|
|
3
|
+
export const NPX = path.join(nodeBinDir, 'npx');
|
|
4
|
+
export const NPM = path.join(nodeBinDir, 'npm');
|
|
5
|
+
if (!process.env.PATH?.includes(nodeBinDir)) {
|
|
6
|
+
process.env.PATH = `${nodeBinDir}:${process.env.PATH || ''}`;
|
|
7
|
+
}
|