@mr.dj2u/cli 0.1.15 → 0.1.16
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 +8 -10
- package/bundles/claude-code/skills/create-expo-super-stack/SKILL.md +8 -10
- package/bundles/codex/.codex-plugin/plugin.json +1 -1
- package/bundles/codex/.mcp.json +1 -1
- package/bundles/codex/commands/create-expo-super-stack.md +8 -10
- package/bundles/codex/skills/workflow-create-expo-super-stack/SKILL.md +8 -10
- package/bundles/vscode-copilot/.github/prompts/create-expo-super-stack.prompt.md +8 -10
- package/bundles/vscode-copilot/.vscode/mcp.json +1 -1
- package/bundles/vscode-copilot/user/.copilot/skills/workflow-create-expo-super-stack/SKILL.md +8 -10
- package/dist/cess-intake.d.ts +1 -1
- package/dist/cess-intake.d.ts.map +1 -1
- package/dist/cess-intake.js +298 -23
- 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/commands/onboard.d.ts +1 -1
- package/dist/commands/onboard.d.ts.map +1 -1
- package/dist/project-memory.d.ts +1 -1
- package/dist/project-memory.d.ts.map +1 -1
- package/dist/project-memory.js +93 -194
- package/dist/project-memory.js.map +1 -1
- package/dist/roadmap.d.ts.map +1 -1
- package/dist/roadmap.js +15 -11
- package/dist/roadmap.js.map +1 -1
- package/package.json +76 -75
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mr-djs-dev-suite",
|
|
3
3
|
"displayName": "Mr. DJ's Dev Suite",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.11",
|
|
5
5
|
"description": "Expo review, Doctor, onboarding, deployment readiness, and project continuation workflows for Claude Code, backed by callable MDS MCP tools.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "DJ Grimsley",
|
|
@@ -9,16 +9,14 @@ Create a new Expo app with the MDS Super Stack flow, using the published CESS CL
|
|
|
9
9
|
|
|
10
10
|
## Required MDS MCP Tool Flow
|
|
11
11
|
|
|
12
|
-
1.
|
|
13
|
-
2. If the user pasted or attached `info.md` / project memory, call `
|
|
14
|
-
3.
|
|
15
|
-
4. Ask exactly one question per turn
|
|
16
|
-
5.
|
|
17
|
-
6.
|
|
18
|
-
7.
|
|
19
|
-
8.
|
|
20
|
-
9. After explicit confirmation, set `answers.confirmed=true`, call the intake tool again, and proceed only when it returns `ready`.
|
|
21
|
-
10. Then call `create_expo_super_stack_generate` with `confirmed: true`.
|
|
12
|
+
1. Call `mds_runtime_versions` first and warn if the MCP server, CLI, or wrapper looks stale.
|
|
13
|
+
2. If the user pasted or attached `info.md` / project memory, call `create_expo_super_stack_resolve_info` once with `parentDir`, `appName`, `infoMarkdown`, optional `styleMarkdown`, and any explicit user overrides.
|
|
14
|
+
3. Treat the resolver `answers` object as the canonical accumulated answers object.
|
|
15
|
+
4. Ask exactly one question per turn only for `missingQuestionIds` or `ambiguousQuestionIds`.
|
|
16
|
+
5. Do not restart intake with one answer at a time after a successful resolve call.
|
|
17
|
+
6. If no `info.md` is available, fall back to `create_expo_super_stack_intake_step` and always pass the full accumulated `answers` object.
|
|
18
|
+
7. When the resolver returns `confirm`, summarize `summaryLines` and ask the user for one final confirmation.
|
|
19
|
+
8. After explicit confirmation, call `create_expo_super_stack_generate` with the resolver `generateInput` and `confirmed: true`.
|
|
22
20
|
|
|
23
21
|
## Failure Behavior
|
|
24
22
|
|
|
@@ -14,16 +14,14 @@ Create a new Expo app with the MDS Super Stack flow, using the published CESS CL
|
|
|
14
14
|
|
|
15
15
|
## Required MDS MCP Tool Flow
|
|
16
16
|
|
|
17
|
-
1.
|
|
18
|
-
2. If the user pasted or attached `info.md` / project memory, call `
|
|
19
|
-
3.
|
|
20
|
-
4. Ask exactly one question per turn
|
|
21
|
-
5.
|
|
22
|
-
6.
|
|
23
|
-
7.
|
|
24
|
-
8.
|
|
25
|
-
9. After explicit confirmation, set `answers.confirmed=true`, call the intake tool again, and proceed only when it returns `ready`.
|
|
26
|
-
10. Then call `create_expo_super_stack_generate` with `confirmed: true`.
|
|
17
|
+
1. Call `mds_runtime_versions` first and warn if the MCP server, CLI, or wrapper looks stale.
|
|
18
|
+
2. If the user pasted or attached `info.md` / project memory, call `create_expo_super_stack_resolve_info` once with `parentDir`, `appName`, `infoMarkdown`, optional `styleMarkdown`, and any explicit user overrides.
|
|
19
|
+
3. Treat the resolver `answers` object as the canonical accumulated answers object.
|
|
20
|
+
4. Ask exactly one question per turn only for `missingQuestionIds` or `ambiguousQuestionIds`.
|
|
21
|
+
5. Do not restart intake with one answer at a time after a successful resolve call.
|
|
22
|
+
6. If no `info.md` is available, fall back to `create_expo_super_stack_intake_step` and always pass the full accumulated `answers` object.
|
|
23
|
+
7. When the resolver returns `confirm`, summarize `summaryLines` and ask the user for one final confirmation.
|
|
24
|
+
8. After explicit confirmation, call `create_expo_super_stack_generate` with the resolver `generateInput` and `confirmed: true`.
|
|
27
25
|
|
|
28
26
|
## Failure Behavior
|
|
29
27
|
|
package/bundles/codex/.mcp.json
CHANGED
|
@@ -9,16 +9,14 @@ Create a new Expo app with the MDS Super Stack flow, using the published CESS CL
|
|
|
9
9
|
|
|
10
10
|
## Required MDS MCP Tool Flow
|
|
11
11
|
|
|
12
|
-
1.
|
|
13
|
-
2. If the user pasted or attached `info.md` / project memory, call `
|
|
14
|
-
3.
|
|
15
|
-
4. Ask exactly one question per turn
|
|
16
|
-
5.
|
|
17
|
-
6.
|
|
18
|
-
7.
|
|
19
|
-
8.
|
|
20
|
-
9. After explicit confirmation, set `answers.confirmed=true`, call the intake tool again, and proceed only when it returns `ready`.
|
|
21
|
-
10. Then call `create_expo_super_stack_generate` with `confirmed: true`.
|
|
12
|
+
1. Call `mds_runtime_versions` first and warn if the MCP server, CLI, or wrapper looks stale.
|
|
13
|
+
2. If the user pasted or attached `info.md` / project memory, call `create_expo_super_stack_resolve_info` once with `parentDir`, `appName`, `infoMarkdown`, optional `styleMarkdown`, and any explicit user overrides.
|
|
14
|
+
3. Treat the resolver `answers` object as the canonical accumulated answers object.
|
|
15
|
+
4. Ask exactly one question per turn only for `missingQuestionIds` or `ambiguousQuestionIds`.
|
|
16
|
+
5. Do not restart intake with one answer at a time after a successful resolve call.
|
|
17
|
+
6. If no `info.md` is available, fall back to `create_expo_super_stack_intake_step` and always pass the full accumulated `answers` object.
|
|
18
|
+
7. When the resolver returns `confirm`, summarize `summaryLines` and ask the user for one final confirmation.
|
|
19
|
+
8. After explicit confirmation, call `create_expo_super_stack_generate` with the resolver `generateInput` and `confirmed: true`.
|
|
22
20
|
|
|
23
21
|
## Failure Behavior
|
|
24
22
|
|
|
@@ -22,16 +22,14 @@ Create a new Expo app with the MDS Super Stack flow, using the published CESS CL
|
|
|
22
22
|
|
|
23
23
|
## Required MDS MCP Tool Flow
|
|
24
24
|
|
|
25
|
-
1.
|
|
26
|
-
2. If the user pasted or attached `info.md` / project memory, call `
|
|
27
|
-
3.
|
|
28
|
-
4. Ask exactly one question per turn
|
|
29
|
-
5.
|
|
30
|
-
6.
|
|
31
|
-
7.
|
|
32
|
-
8.
|
|
33
|
-
9. After explicit confirmation, set `answers.confirmed=true`, call the intake tool again, and proceed only when it returns `ready`.
|
|
34
|
-
10. Then call `create_expo_super_stack_generate` with `confirmed: true`.
|
|
25
|
+
1. Call `mds_runtime_versions` first and warn if the MCP server, CLI, or wrapper looks stale.
|
|
26
|
+
2. If the user pasted or attached `info.md` / project memory, call `create_expo_super_stack_resolve_info` once with `parentDir`, `appName`, `infoMarkdown`, optional `styleMarkdown`, and any explicit user overrides.
|
|
27
|
+
3. Treat the resolver `answers` object as the canonical accumulated answers object.
|
|
28
|
+
4. Ask exactly one question per turn only for `missingQuestionIds` or `ambiguousQuestionIds`.
|
|
29
|
+
5. Do not restart intake with one answer at a time after a successful resolve call.
|
|
30
|
+
6. If no `info.md` is available, fall back to `create_expo_super_stack_intake_step` and always pass the full accumulated `answers` object.
|
|
31
|
+
7. When the resolver returns `confirm`, summarize `summaryLines` and ask the user for one final confirmation.
|
|
32
|
+
8. After explicit confirmation, call `create_expo_super_stack_generate` with the resolver `generateInput` and `confirmed: true`.
|
|
35
33
|
|
|
36
34
|
## Failure Behavior
|
|
37
35
|
|
|
@@ -14,16 +14,14 @@ Create a new Expo app with the MDS Super Stack flow, using the published CESS CL
|
|
|
14
14
|
|
|
15
15
|
## Required MDS MCP Tool Flow
|
|
16
16
|
|
|
17
|
-
1.
|
|
18
|
-
2. If the user pasted or attached `info.md` / project memory, call `
|
|
19
|
-
3.
|
|
20
|
-
4. Ask exactly one question per turn
|
|
21
|
-
5.
|
|
22
|
-
6.
|
|
23
|
-
7.
|
|
24
|
-
8.
|
|
25
|
-
9. After explicit confirmation, set `answers.confirmed=true`, call the intake tool again, and proceed only when it returns `ready`.
|
|
26
|
-
10. Then call `create_expo_super_stack_generate` with `confirmed: true`.
|
|
17
|
+
1. Call `mds_runtime_versions` first and warn if the MCP server, CLI, or wrapper looks stale.
|
|
18
|
+
2. If the user pasted or attached `info.md` / project memory, call `create_expo_super_stack_resolve_info` once with `parentDir`, `appName`, `infoMarkdown`, optional `styleMarkdown`, and any explicit user overrides.
|
|
19
|
+
3. Treat the resolver `answers` object as the canonical accumulated answers object.
|
|
20
|
+
4. Ask exactly one question per turn only for `missingQuestionIds` or `ambiguousQuestionIds`.
|
|
21
|
+
5. Do not restart intake with one answer at a time after a successful resolve call.
|
|
22
|
+
6. If no `info.md` is available, fall back to `create_expo_super_stack_intake_step` and always pass the full accumulated `answers` object.
|
|
23
|
+
7. When the resolver returns `confirm`, summarize `summaryLines` and ask the user for one final confirmation.
|
|
24
|
+
8. After explicit confirmation, call `create_expo_super_stack_generate` with the resolver `generateInput` and `confirmed: true`.
|
|
27
25
|
|
|
28
26
|
## Failure Behavior
|
|
29
27
|
|
package/bundles/vscode-copilot/user/.copilot/skills/workflow-create-expo-super-stack/SKILL.md
CHANGED
|
@@ -14,16 +14,14 @@ Create a new Expo app with the MDS Super Stack flow, using the published CESS CL
|
|
|
14
14
|
|
|
15
15
|
## Required MDS MCP Tool Flow
|
|
16
16
|
|
|
17
|
-
1.
|
|
18
|
-
2. If the user pasted or attached `info.md` / project memory, call `
|
|
19
|
-
3.
|
|
20
|
-
4. Ask exactly one question per turn
|
|
21
|
-
5.
|
|
22
|
-
6.
|
|
23
|
-
7.
|
|
24
|
-
8.
|
|
25
|
-
9. After explicit confirmation, set `answers.confirmed=true`, call the intake tool again, and proceed only when it returns `ready`.
|
|
26
|
-
10. Then call `create_expo_super_stack_generate` with `confirmed: true`.
|
|
17
|
+
1. Call `mds_runtime_versions` first and warn if the MCP server, CLI, or wrapper looks stale.
|
|
18
|
+
2. If the user pasted or attached `info.md` / project memory, call `create_expo_super_stack_resolve_info` once with `parentDir`, `appName`, `infoMarkdown`, optional `styleMarkdown`, and any explicit user overrides.
|
|
19
|
+
3. Treat the resolver `answers` object as the canonical accumulated answers object.
|
|
20
|
+
4. Ask exactly one question per turn only for `missingQuestionIds` or `ambiguousQuestionIds`.
|
|
21
|
+
5. Do not restart intake with one answer at a time after a successful resolve call.
|
|
22
|
+
6. If no `info.md` is available, fall back to `create_expo_super_stack_intake_step` and always pass the full accumulated `answers` object.
|
|
23
|
+
7. When the resolver returns `confirm`, summarize `summaryLines` and ask the user for one final confirmation.
|
|
24
|
+
8. After explicit confirmation, call `create_expo_super_stack_generate` with the resolver `generateInput` and `confirmed: true`.
|
|
27
25
|
|
|
28
26
|
## Failure Behavior
|
|
29
27
|
|
package/dist/cess-intake.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export type CessScriptLanguage = 'typescript' | 'javascript';
|
|
|
4
4
|
export type CessPackageManager = 'npm' | 'pnpm' | 'yarn' | 'bun';
|
|
5
5
|
export type CessNavigationLibrary = 'expo-router' | 'react-navigation';
|
|
6
6
|
export type CessReactNavigationLayout = 'stack' | 'tabs' | 'drawer';
|
|
7
|
-
export type CessStylingSystem = 'uniwind' | 'nativewind' | 'tamagui' | 'restyle' | 'stylesheet';
|
|
7
|
+
export type CessStylingSystem = 'uniwind' | 'nativewind' | 'nativewindui' | 'tamagui' | 'restyle' | 'stylesheet';
|
|
8
8
|
export type CessStateManagement = 'zustand' | 'none';
|
|
9
9
|
export type CessAuthBackend = 'none' | 'supabase' | 'firebase';
|
|
10
10
|
export type CessIntakeStatus = 'question' | 'confirm' | 'ready' | 'blocked';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cess-intake.d.ts","sourceRoot":"","sources":["../src/cess-intake.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"cess-intake.d.ts","sourceRoot":"","sources":["../src/cess-intake.ts"],"names":[],"mappings":"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"}
|