@mr.dj2u/cli 0.1.16 → 0.1.18
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/bundles/claude-code/.claude-plugin/plugin.json +1 -1
- package/bundles/claude-code/.mcp.json +1 -1
- package/bundles/claude-code/commands/create-expo-super-stack.md +30 -3
- package/bundles/claude-code/skills/create-expo-super-stack/SKILL.md +31 -4
- package/bundles/codex/.codex-plugin/plugin.json +1 -1
- package/bundles/codex/.mcp.json +1 -1
- package/bundles/codex/README.md +14 -1
- package/bundles/codex/commands/create-expo-super-stack.md +30 -3
- package/bundles/codex/skills/workflow-create-expo-super-stack/SKILL.md +30 -3
- package/bundles/vscode-copilot/.github/prompts/create-expo-super-stack.prompt.md +30 -3
- package/bundles/vscode-copilot/.vscode/mcp.json +1 -1
- package/bundles/vscode-copilot/README.md +14 -0
- package/bundles/vscode-copilot/user/.copilot/skills/workflow-create-expo-super-stack/SKILL.md +30 -3
- package/dist/cess-intake.d.ts.map +1 -1
- package/dist/cess-intake.js +4 -5
- package/dist/cess-intake.js.map +1 -1
- package/dist/cli.js +0 -0
- package/dist/commands/mcp-install.d.ts +2 -2
- package/dist/commands/mcp-install.js +1 -1
- package/dist/project-memory.d.ts.map +1 -1
- package/dist/project-memory.js +18 -1
- package/dist/project-memory.js.map +1 -1
- package/dist/roadmap.d.ts +7 -2
- package/dist/roadmap.d.ts.map +1 -1
- package/dist/roadmap.js +294 -26
- package/dist/roadmap.js.map +1 -1
- package/package.json +75 -76
package/package.json
CHANGED
|
@@ -1,76 +1,75 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@mr.dj2u/cli",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "CLI entry point for mds commands (doctor, onboard, test-and-iterate)",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"mds": "dist/cli.js"
|
|
8
|
-
},
|
|
9
|
-
"files": [
|
|
10
|
-
"dist",
|
|
11
|
-
"templates",
|
|
12
|
-
"bundles"
|
|
13
|
-
],
|
|
14
|
-
"exports": {
|
|
15
|
-
".": {
|
|
16
|
-
"import": "./dist/cli.js",
|
|
17
|
-
"types": "./dist/cli.d.ts"
|
|
18
|
-
},
|
|
19
|
-
"./project-memory": {
|
|
20
|
-
"import": "./dist/project-memory.js",
|
|
21
|
-
"types": "./dist/project-memory.d.ts"
|
|
22
|
-
},
|
|
23
|
-
"./onboarding": {
|
|
24
|
-
"import": "./dist/commands/onboard.js",
|
|
25
|
-
"types": "./dist/commands/onboard.d.ts"
|
|
26
|
-
},
|
|
27
|
-
"./cess-intake": {
|
|
28
|
-
"import": "./dist/cess-intake.js",
|
|
29
|
-
"types": "./dist/cess-intake.d.ts"
|
|
30
|
-
},
|
|
31
|
-
"./continue": {
|
|
32
|
-
"import": "./dist/continue.js",
|
|
33
|
-
"types": "./dist/continue.d.ts"
|
|
34
|
-
},
|
|
35
|
-
"./roadmap": {
|
|
36
|
-
"import": "./dist/roadmap.js",
|
|
37
|
-
"types": "./dist/roadmap.d.ts"
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
"main": "./dist/cli.js",
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
},
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
"
|
|
61
|
-
|
|
62
|
-
"
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@mr.dj2u/cli",
|
|
3
|
+
"version": "0.1.18",
|
|
4
|
+
"description": "CLI entry point for mds commands (doctor, onboard, test-and-iterate)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"mds": "dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"templates",
|
|
12
|
+
"bundles"
|
|
13
|
+
],
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"import": "./dist/cli.js",
|
|
17
|
+
"types": "./dist/cli.d.ts"
|
|
18
|
+
},
|
|
19
|
+
"./project-memory": {
|
|
20
|
+
"import": "./dist/project-memory.js",
|
|
21
|
+
"types": "./dist/project-memory.d.ts"
|
|
22
|
+
},
|
|
23
|
+
"./onboarding": {
|
|
24
|
+
"import": "./dist/commands/onboard.js",
|
|
25
|
+
"types": "./dist/commands/onboard.d.ts"
|
|
26
|
+
},
|
|
27
|
+
"./cess-intake": {
|
|
28
|
+
"import": "./dist/cess-intake.js",
|
|
29
|
+
"types": "./dist/cess-intake.d.ts"
|
|
30
|
+
},
|
|
31
|
+
"./continue": {
|
|
32
|
+
"import": "./dist/continue.js",
|
|
33
|
+
"types": "./dist/continue.d.ts"
|
|
34
|
+
},
|
|
35
|
+
"./roadmap": {
|
|
36
|
+
"import": "./dist/roadmap.js",
|
|
37
|
+
"types": "./dist/roadmap.d.ts"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"main": "./dist/cli.js",
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@clack/prompts": "^0.11.0",
|
|
43
|
+
"@mr.dj2u/doctor": "^0.1.3",
|
|
44
|
+
"@mr.dj2u/knowledge": "^0.1.5",
|
|
45
|
+
"chalk": "^5.3.0",
|
|
46
|
+
"yargs": "^17.7.2"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@types/node": "^20.10.0",
|
|
50
|
+
"@types/yargs": "^17.0.24",
|
|
51
|
+
"typescript": "^5.9.0"
|
|
52
|
+
},
|
|
53
|
+
"keywords": [
|
|
54
|
+
"expo",
|
|
55
|
+
"cli",
|
|
56
|
+
"doctor",
|
|
57
|
+
"onboarding"
|
|
58
|
+
],
|
|
59
|
+
"author": "DJ",
|
|
60
|
+
"license": "MIT",
|
|
61
|
+
"publishConfig": {
|
|
62
|
+
"access": "public"
|
|
63
|
+
},
|
|
64
|
+
"scripts": {
|
|
65
|
+
"build": "tsc",
|
|
66
|
+
"type-check": "tsc --noEmit",
|
|
67
|
+
"lint": "eslint src",
|
|
68
|
+
"lint:fix": "eslint src --fix",
|
|
69
|
+
"test": "vitest run --passWithNoTests",
|
|
70
|
+
"sync:bundles": "node ./scripts/copy-agent-bundles.mjs",
|
|
71
|
+
"check:bundles": "node ./scripts/copy-agent-bundles.mjs --check",
|
|
72
|
+
"dev": "tsc --watch",
|
|
73
|
+
"clean": "node -e \"const fs=require('node:fs'); for (const p of ['dist','tsconfig.tsbuildinfo']) fs.rmSync(p,{recursive:true,force:true});\""
|
|
74
|
+
}
|
|
75
|
+
}
|