@mr.dj2u/cli 0.1.10 → 0.1.11

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 (45) hide show
  1. package/bundles/claude-code/.claude-plugin/plugin.json +2 -2
  2. package/bundles/claude-code/.mcp.json +1 -1
  3. package/bundles/claude-code/agents/mds.md +3 -2
  4. package/bundles/claude-code/commands/create-expo-super-stack.md +15 -14
  5. package/bundles/claude-code/skills/create-expo-super-stack/SKILL.md +16 -15
  6. package/bundles/codex/.codex-plugin/plugin.json +3 -3
  7. package/bundles/codex/.mcp.json +1 -1
  8. package/bundles/codex/README.md +4 -1
  9. package/bundles/codex/commands/create-expo-super-stack.md +15 -14
  10. package/bundles/codex/skills/workflow-continue-development/SKILL.md +4 -3
  11. package/bundles/codex/skills/workflow-create-expo-super-stack/SKILL.md +19 -17
  12. package/bundles/codex/skills/workflow-fix-seo/SKILL.md +4 -3
  13. package/bundles/codex/skills/workflow-prepare-deploy/SKILL.md +4 -3
  14. package/bundles/codex/skills/workflow-project-research-plan/SKILL.md +4 -3
  15. package/bundles/codex/skills/workflow-push-merge-loop/SKILL.md +4 -3
  16. package/bundles/codex/skills/workflow-review-expo-project/SKILL.md +4 -3
  17. package/bundles/codex/skills/workflow-run-doctor/SKILL.md +4 -3
  18. package/bundles/codex/skills/workflow-wrap-up/SKILL.md +4 -3
  19. package/bundles/vscode-copilot/.github/agents/mds.agent.md +1 -1
  20. package/bundles/vscode-copilot/.github/copilot-instructions.md +1 -1
  21. package/bundles/vscode-copilot/.github/prompts/continue-development.prompt.md +1 -1
  22. package/bundles/vscode-copilot/.github/prompts/create-expo-super-stack.prompt.md +16 -15
  23. package/bundles/vscode-copilot/.github/prompts/fix-seo.prompt.md +1 -1
  24. package/bundles/vscode-copilot/.github/prompts/prepare-deploy.prompt.md +1 -1
  25. package/bundles/vscode-copilot/.github/prompts/project-research-plan.prompt.md +1 -1
  26. package/bundles/vscode-copilot/.github/prompts/push-merge-loop.prompt.md +1 -1
  27. package/bundles/vscode-copilot/.github/prompts/review-expo-project.prompt.md +1 -1
  28. package/bundles/vscode-copilot/.github/prompts/run-doctor.prompt.md +1 -1
  29. package/bundles/vscode-copilot/.github/prompts/wrap-up.prompt.md +1 -1
  30. package/bundles/vscode-copilot/.vscode/mcp.json +1 -1
  31. package/bundles/vscode-copilot/user/.copilot/agents/mds.agent.md +1 -1
  32. package/bundles/vscode-copilot/user/.copilot/instructions.md +1 -1
  33. package/bundles/vscode-copilot/user/.copilot/skills/workflow-create-expo-super-stack/SKILL.md +15 -14
  34. package/dist/cess-intake.d.ts +107 -0
  35. package/dist/cess-intake.d.ts.map +1 -0
  36. package/dist/cess-intake.js +917 -0
  37. package/dist/cess-intake.js.map +1 -0
  38. package/dist/commands/mcp-install.d.ts +2 -2
  39. package/dist/commands/mcp-install.js +1 -1
  40. package/dist/commands/onboard.d.ts +9 -0
  41. package/dist/commands/onboard.d.ts.map +1 -1
  42. package/dist/commands/onboard.js +5 -5
  43. package/dist/commands/onboard.js.map +1 -1
  44. package/dist/project-memory.js +1 -1
  45. package/package.json +6 -2
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "mr-djs-dev-suite",
3
3
  "displayName": "Mr. DJ's Dev Suite",
4
- "version": "0.1.7",
5
- "description": "MCP-first Expo review, Doctor, onboarding, deployment readiness, and project continuation workflows for Claude Code.",
4
+ "version": "0.1.8",
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",
8
8
  "url": "https://davidjgrimsley.com"
@@ -4,7 +4,7 @@
4
4
  "command": "npx",
5
5
  "args": [
6
6
  "-y",
7
- "@mr.dj2u/mcp-server@0.1.4"
7
+ "@mr.dj2u/mcp-server@0.1.5"
8
8
  ]
9
9
  }
10
10
  }
@@ -15,7 +15,7 @@ skills:
15
15
 
16
16
  # MDS Agent
17
17
 
18
- You are the Mr. DJ's Dev Suite agent for Expo projects. Prefer MDS MCP tools first, then CLI fallbacks.
18
+ You are the Mr. DJ's Dev Suite agent for Expo projects. Treat callable MDS MCP tools as the runtime behavior surface and plugin markdown as guidance only.
19
19
 
20
20
  ## Tool Routing
21
21
 
@@ -32,4 +32,5 @@ You are the Mr. DJ's Dev Suite agent for Expo projects. Prefer MDS MCP tools fir
32
32
  - Keep route files thin, env secrets server-only, and release work gated by Doctor checks.
33
33
  - Prefer official Expo/React Native guidance for framework mechanics; MDS adds project memory, checks, defaults, and workflows.
34
34
  - Do not skip unresolved `# TodoForContext(optional):` markers before implementation.
35
- - When MCP is unavailable, use CLI fallbacks such as `mds doctor`, `mds continue`, and `mds report`.
35
+ - When a workflow specifically requires guided MDS MCP tools and they are unavailable, stop and tell the user to refresh or reinstall the MDS plugin/MCP server instead of inventing defaults.
36
+ - For ordinary CLI workflows that do allow fallback, use commands such as `mds doctor`, `mds continue`, and `mds report`.
@@ -1,30 +1,31 @@
1
1
  # /create-expo-super-stack
2
2
 
3
- Create a new Expo app with the MDS Super Stack flow, using this knowledge package as the shared source of truth for agent-facing text and the published CLI as the execution source of truth.
3
+ Create a new Expo app with the MDS Super Stack flow, using the published CESS CLI as the execution source of truth and callable MDS MCP tools as the guided intake surface.
4
4
 
5
5
  ## Arguments
6
6
 
7
7
  - `parentDir`: folder where the new app directory should be created.
8
8
  - `appName`: app folder name.
9
9
 
10
- ## MCP-First Workflow
10
+ ## Required MDS MCP Tool Flow
11
11
 
12
12
  1. Confirm the `mr-djs-dev-suite` MCP server is available.
13
- 2. Invoke the MCP prompt `create_expo_super_stack` from a parent directory when you want guided intake.
14
- 3. Keep the conversation one question per turn and summarize the captured choices before generation.
15
- 4. Treat the MCP prompt as the intake surface and the CLI as the generator, so CLI changes are picked up automatically when the published command changes.
16
- 5. After generation, move into the new app folder and invoke `continue_project` (or prompt `continue_mds_project`) for the first implementation session.
13
+ 2. Drive intake with `create_expo_super_stack_intake_step`.
14
+ 3. Ask exactly one question per turn.
15
+ 4. Always show the returned default and options.
16
+ 5. Never invent or silently accept defaults on the user's behalf.
17
+ 6. When the intake tool returns `confirm`, summarize the returned `summaryLines` and ask the user to confirm.
18
+ 7. After explicit confirmation, set `answers.confirmed=true`, call the intake tool again, and proceed only when it returns `ready`.
19
+ 8. Then call `create_expo_super_stack_generate` with `confirmed: true`.
17
20
 
18
- ## CLI / Manual Fallback
21
+ ## Failure Behavior
19
22
 
20
- 1. If MCP is not configured, install it manually:
21
- - `mds mcp install --client <client> --scope project`
22
- 2. Direct CLI generation:
23
- - `npx -y create-expo-super-stack <appName>`
24
- 3. Then onboard/continue from inside the generated app using the current CLI behavior:
25
- - `mds continue <new-app-path>`
23
+ 1. If the guided intake or generate tools are unavailable, stop.
24
+ 2. Call `mds_runtime_versions` to diagnose stale plugin or MCP installs.
25
+ 3. Tell the user to refresh or reinstall the MDS plugin/MCP server.
26
+ 4. Do not fall back to `--mds-yes` or direct CLI shortcuts unless the user explicitly asked for a fast non-interactive run.
26
27
 
27
28
  ## Verification And Output
28
29
 
29
30
  - Confirm generated app has `project/info.md`, `project/todo.md`, `project/style.md`, and `project/guidelines.md`.
30
- - Output: generated app path, onboarding status, and immediate next command.
31
+ - Output: generated app path, onboarding status, and the handoff to open a fresh agent session inside the new app folder and run `mds continue`.
@@ -1,35 +1,36 @@
1
1
  ---
2
- description: Create a new Expo app with the MDS Super Stack flow, using this knowledge package as the shared source of truth for agent-facing text and the published CLI as the execution source of truth.
2
+ description: Create a new Expo app with the MDS Super Stack flow, using the published CESS CLI as the execution source of truth and callable MDS MCP tools as the guided intake surface.
3
3
  disable-model-invocation: true
4
4
  ---
5
5
 
6
6
  # /create-expo-super-stack
7
7
 
8
- Create a new Expo app with the MDS Super Stack flow, using this knowledge package as the shared source of truth for agent-facing text and the published CLI as the execution source of truth.
8
+ Create a new Expo app with the MDS Super Stack flow, using the published CESS CLI as the execution source of truth and callable MDS MCP tools as the guided intake surface.
9
9
 
10
10
  ## Arguments
11
11
 
12
12
  - `parentDir`: folder where the new app directory should be created.
13
13
  - `appName`: app folder name.
14
14
 
15
- ## MCP-First Workflow
15
+ ## Required MDS MCP Tool Flow
16
16
 
17
17
  1. Confirm the `mr-djs-dev-suite` MCP server is available.
18
- 2. Invoke the MCP prompt `create_expo_super_stack` from a parent directory when you want guided intake.
19
- 3. Keep the conversation one question per turn and summarize the captured choices before generation.
20
- 4. Treat the MCP prompt as the intake surface and the CLI as the generator, so CLI changes are picked up automatically when the published command changes.
21
- 5. After generation, move into the new app folder and invoke `continue_project` (or prompt `continue_mds_project`) for the first implementation session.
18
+ 2. Drive intake with `create_expo_super_stack_intake_step`.
19
+ 3. Ask exactly one question per turn.
20
+ 4. Always show the returned default and options.
21
+ 5. Never invent or silently accept defaults on the user's behalf.
22
+ 6. When the intake tool returns `confirm`, summarize the returned `summaryLines` and ask the user to confirm.
23
+ 7. After explicit confirmation, set `answers.confirmed=true`, call the intake tool again, and proceed only when it returns `ready`.
24
+ 8. Then call `create_expo_super_stack_generate` with `confirmed: true`.
22
25
 
23
- ## CLI / Manual Fallback
26
+ ## Failure Behavior
24
27
 
25
- 1. If MCP is not configured, install it manually:
26
- - `mds mcp install --client <client> --scope project`
27
- 2. Direct CLI generation:
28
- - `npx -y create-expo-super-stack <appName>`
29
- 3. Then onboard/continue from inside the generated app using the current CLI behavior:
30
- - `mds continue <new-app-path>`
28
+ 1. If the guided intake or generate tools are unavailable, stop.
29
+ 2. Call `mds_runtime_versions` to diagnose stale plugin or MCP installs.
30
+ 3. Tell the user to refresh or reinstall the MDS plugin/MCP server.
31
+ 4. Do not fall back to `--mds-yes` or direct CLI shortcuts unless the user explicitly asked for a fast non-interactive run.
31
32
 
32
33
  ## Verification And Output
33
34
 
34
35
  - Confirm generated app has `project/info.md`, `project/todo.md`, `project/style.md`, and `project/guidelines.md`.
35
- - Output: generated app path, onboarding status, and immediate next command.
36
+ - Output: generated app path, onboarding status, and the handoff to open a fresh agent session inside the new app folder and run `mds continue`.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mr-djs-dev-suite",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "MDS Expo development workflows for review, onboarding, deployment readiness, and project continuation.",
5
5
  "author": {
6
6
  "name": "DJ Grimsley",
@@ -21,8 +21,8 @@
21
21
  "mcpServers": "./.mcp.json",
22
22
  "interface": {
23
23
  "displayName": "Mr. DJ's Dev Suite",
24
- "shortDescription": "MCP-first Expo review, doctor, onboarding, and deploy workflows",
25
- "longDescription": "Generate and use MDS skills plus command playbooks for Expo project review, onboarding, deployment prep, SEO fixes, and phase-based continuation with reliable MCP and CLI fallback paths.",
24
+ "shortDescription": "Expo review, doctor, onboarding, and deploy workflows powered by MDS MCP tools",
25
+ "longDescription": "Generate and use MDS skills plus command playbooks for Expo project review, onboarding, deployment prep, SEO fixes, and phase-based continuation, with callable MDS MCP tools for runtime behavior.",
26
26
  "developerName": "MDS",
27
27
  "category": "Coding",
28
28
  "capabilities": [
@@ -4,7 +4,7 @@
4
4
  "command": "npx",
5
5
  "args": [
6
6
  "-y",
7
- "@mr.dj2u/mcp-server@0.1.4"
7
+ "@mr.dj2u/mcp-server@0.1.5"
8
8
  ]
9
9
  }
10
10
  }
@@ -10,6 +10,7 @@ The Mr. DJ's Dev Suite Codex plugin bundle is generated from `packages/knowledge
10
10
  - Command prompt files: `commands/*.md`
11
11
 
12
12
  The source of truth for skills remains `packages/knowledge/src/content/skills`.
13
+ Runtime behavior comes from callable MDS MCP tools exposed by `@mr.dj2u/mcp-server`.
13
14
 
14
15
  ## One-Command Install
15
16
 
@@ -30,9 +31,11 @@ mds agent install --client codex --scope user --dry-run
30
31
 
31
32
  After install, restart Codex so it picks up the local marketplace. Then type `@Mr. DJ's Dev Suite` in chat to get the install pop-up, hit Install, and use `@Mr. DJ's Dev Suite` in Codex Desktop or the Codex extension for VS Code.
32
33
 
34
+ If Codex keeps using stale behavior after republish, refresh the local plugin cache, reinstall the MDS MCP server, then run `mds_runtime_versions` from the host surface to confirm which versions are active.
35
+
33
36
  ## MCP-Only Fallback
34
37
 
35
- Use this when you only want predictable MCP tools/prompts and not the plugin/skills bundle:
38
+ Use this when you only want the callable MDS MCP tools/prompts and not the plugin/skills bundle:
36
39
 
37
40
  ```sh
38
41
  mds mcp install --client codex --scope project --target /path/to/your/expo-app
@@ -1,30 +1,31 @@
1
1
  # /create-expo-super-stack
2
2
 
3
- Create a new Expo app with the MDS Super Stack flow, using this knowledge package as the shared source of truth for agent-facing text and the published CLI as the execution source of truth.
3
+ Create a new Expo app with the MDS Super Stack flow, using the published CESS CLI as the execution source of truth and callable MDS MCP tools as the guided intake surface.
4
4
 
5
5
  ## Arguments
6
6
 
7
7
  - `parentDir`: folder where the new app directory should be created.
8
8
  - `appName`: app folder name.
9
9
 
10
- ## MCP-First Workflow
10
+ ## Required MDS MCP Tool Flow
11
11
 
12
12
  1. Confirm the `mr-djs-dev-suite` MCP server is available.
13
- 2. Invoke the MCP prompt `create_expo_super_stack` from a parent directory when you want guided intake.
14
- 3. Keep the conversation one question per turn and summarize the captured choices before generation.
15
- 4. Treat the MCP prompt as the intake surface and the CLI as the generator, so CLI changes are picked up automatically when the published command changes.
16
- 5. After generation, move into the new app folder and invoke `continue_project` (or prompt `continue_mds_project`) for the first implementation session.
13
+ 2. Drive intake with `create_expo_super_stack_intake_step`.
14
+ 3. Ask exactly one question per turn.
15
+ 4. Always show the returned default and options.
16
+ 5. Never invent or silently accept defaults on the user's behalf.
17
+ 6. When the intake tool returns `confirm`, summarize the returned `summaryLines` and ask the user to confirm.
18
+ 7. After explicit confirmation, set `answers.confirmed=true`, call the intake tool again, and proceed only when it returns `ready`.
19
+ 8. Then call `create_expo_super_stack_generate` with `confirmed: true`.
17
20
 
18
- ## CLI / Manual Fallback
21
+ ## Failure Behavior
19
22
 
20
- 1. If MCP is not configured, install it manually:
21
- - `mds mcp install --client <client> --scope project`
22
- 2. Direct CLI generation:
23
- - `npx -y create-expo-super-stack <appName>`
24
- 3. Then onboard/continue from inside the generated app using the current CLI behavior:
25
- - `mds continue <new-app-path>`
23
+ 1. If the guided intake or generate tools are unavailable, stop.
24
+ 2. Call `mds_runtime_versions` to diagnose stale plugin or MCP installs.
25
+ 3. Tell the user to refresh or reinstall the MDS plugin/MCP server.
26
+ 4. Do not fall back to `--mds-yes` or direct CLI shortcuts unless the user explicitly asked for a fast non-interactive run.
26
27
 
27
28
  ## Verification And Output
28
29
 
29
30
  - Confirm generated app has `project/info.md`, `project/todo.md`, `project/style.md`, and `project/guidelines.md`.
30
- - Output: generated app path, onboarding status, and immediate next command.
31
+ - Output: generated app path, onboarding status, and the handoff to open a fresh agent session inside the new app folder and run `mds continue`.
@@ -5,10 +5,11 @@ description: "Use when the user asks Mr. DJ's Dev Suite to continue development,
5
5
 
6
6
  # Codex Workflow Routing
7
7
 
8
- - This is a Mr. DJ's Dev Suite plugin workflow. Prefer the bundled MCP tools before terminal fallbacks.
9
- - When an MCP tool named in this workflow is available, call that tool directly instead of running app-local npm scripts.
8
+ - This is a Mr. DJ's Dev Suite plugin workflow. Plugin skills and command markdown are guidance only.
9
+ - Prefer callable MDS MCP tools exposed by `@mr.dj2u/mcp-server` when this workflow names them.
10
10
  - Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
11
- - If the MCP server is unavailable, prefer `mds <command>` from PATH, then `npx -y -p @mr.dj2u/cli@latest mds <command>`.
11
+ - If a workflow specifically requires guided MDS MCP tools and they are unavailable, stop and tell the user to refresh or reinstall the MDS plugin/MCP server instead of inventing defaults.
12
+ - For ordinary CLI workflows that do allow fallback, prefer `mds <command>` from PATH, then `npx -y -p @mr.dj2u/cli@latest mds <command>`.
12
13
 
13
14
  # /continue-development
14
15
 
@@ -5,38 +5,40 @@ description: "Use when the user asks Mr. DJ's Dev Suite to run the Create Expo S
5
5
 
6
6
  # Codex Workflow Routing
7
7
 
8
- - This is a Mr. DJ's Dev Suite plugin workflow. Prefer the bundled MCP tools before terminal fallbacks.
9
- - When an MCP tool named in this workflow is available, call that tool directly instead of running app-local npm scripts.
8
+ - This is a Mr. DJ's Dev Suite plugin workflow. Plugin skills and command markdown are guidance only.
9
+ - Prefer callable MDS MCP tools exposed by `@mr.dj2u/mcp-server` when this workflow names them.
10
10
  - Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
11
- - If the MCP server is unavailable, prefer `mds <command>` from PATH, then `npx -y -p @mr.dj2u/cli@latest mds <command>`.
11
+ - If a workflow specifically requires guided MDS MCP tools and they are unavailable, stop and tell the user to refresh or reinstall the MDS plugin/MCP server instead of inventing defaults.
12
+ - For ordinary CLI workflows that do allow fallback, prefer `mds <command>` from PATH, then `npx -y -p @mr.dj2u/cli@latest mds <command>`.
12
13
 
13
14
  # /create-expo-super-stack
14
15
 
15
- Create a new Expo app with the MDS Super Stack flow, using this knowledge package as the shared source of truth for agent-facing text and the published CLI as the execution source of truth.
16
+ Create a new Expo app with the MDS Super Stack flow, using the published CESS CLI as the execution source of truth and callable MDS MCP tools as the guided intake surface.
16
17
 
17
18
  ## Arguments
18
19
 
19
20
  - `parentDir`: folder where the new app directory should be created.
20
21
  - `appName`: app folder name.
21
22
 
22
- ## MCP-First Workflow
23
+ ## Required MDS MCP Tool Flow
23
24
 
24
25
  1. Confirm the `mr-djs-dev-suite` MCP server is available.
25
- 2. Invoke the MCP prompt `create_expo_super_stack` from a parent directory when you want guided intake.
26
- 3. Keep the conversation one question per turn and summarize the captured choices before generation.
27
- 4. Treat the MCP prompt as the intake surface and the CLI as the generator, so CLI changes are picked up automatically when the published command changes.
28
- 5. After generation, move into the new app folder and invoke `continue_project` (or prompt `continue_mds_project`) for the first implementation session.
26
+ 2. Drive intake with `create_expo_super_stack_intake_step`.
27
+ 3. Ask exactly one question per turn.
28
+ 4. Always show the returned default and options.
29
+ 5. Never invent or silently accept defaults on the user's behalf.
30
+ 6. When the intake tool returns `confirm`, summarize the returned `summaryLines` and ask the user to confirm.
31
+ 7. After explicit confirmation, set `answers.confirmed=true`, call the intake tool again, and proceed only when it returns `ready`.
32
+ 8. Then call `create_expo_super_stack_generate` with `confirmed: true`.
29
33
 
30
- ## CLI / Manual Fallback
34
+ ## Failure Behavior
31
35
 
32
- 1. If MCP is not configured, install it manually:
33
- - `mds mcp install --client <client> --scope project`
34
- 2. Direct CLI generation:
35
- - `npx -y create-expo-super-stack <appName>`
36
- 3. Then onboard/continue from inside the generated app using the current CLI behavior:
37
- - `mds continue <new-app-path>`
36
+ 1. If the guided intake or generate tools are unavailable, stop.
37
+ 2. Call `mds_runtime_versions` to diagnose stale plugin or MCP installs.
38
+ 3. Tell the user to refresh or reinstall the MDS plugin/MCP server.
39
+ 4. Do not fall back to `--mds-yes` or direct CLI shortcuts unless the user explicitly asked for a fast non-interactive run.
38
40
 
39
41
  ## Verification And Output
40
42
 
41
43
  - Confirm generated app has `project/info.md`, `project/todo.md`, `project/style.md`, and `project/guidelines.md`.
42
- - Output: generated app path, onboarding status, and immediate next command.
44
+ - Output: generated app path, onboarding status, and the handoff to open a fresh agent session inside the new app folder and run `mds continue`.
@@ -5,10 +5,11 @@ description: "Use when the user asks Mr. DJ's Dev Suite to run the Fix Seo workf
5
5
 
6
6
  # Codex Workflow Routing
7
7
 
8
- - This is a Mr. DJ's Dev Suite plugin workflow. Prefer the bundled MCP tools before terminal fallbacks.
9
- - When an MCP tool named in this workflow is available, call that tool directly instead of running app-local npm scripts.
8
+ - This is a Mr. DJ's Dev Suite plugin workflow. Plugin skills and command markdown are guidance only.
9
+ - Prefer callable MDS MCP tools exposed by `@mr.dj2u/mcp-server` when this workflow names them.
10
10
  - Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
11
- - If the MCP server is unavailable, prefer `mds <command>` from PATH, then `npx -y -p @mr.dj2u/cli@latest mds <command>`.
11
+ - If a workflow specifically requires guided MDS MCP tools and they are unavailable, stop and tell the user to refresh or reinstall the MDS plugin/MCP server instead of inventing defaults.
12
+ - For ordinary CLI workflows that do allow fallback, prefer `mds <command>` from PATH, then `npx -y -p @mr.dj2u/cli@latest mds <command>`.
12
13
 
13
14
  # /fix-seo
14
15
 
@@ -5,10 +5,11 @@ description: "Use when the user asks Mr. DJ's Dev Suite to run the Prepare Deplo
5
5
 
6
6
  # Codex Workflow Routing
7
7
 
8
- - This is a Mr. DJ's Dev Suite plugin workflow. Prefer the bundled MCP tools before terminal fallbacks.
9
- - When an MCP tool named in this workflow is available, call that tool directly instead of running app-local npm scripts.
8
+ - This is a Mr. DJ's Dev Suite plugin workflow. Plugin skills and command markdown are guidance only.
9
+ - Prefer callable MDS MCP tools exposed by `@mr.dj2u/mcp-server` when this workflow names them.
10
10
  - Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
11
- - If the MCP server is unavailable, prefer `mds <command>` from PATH, then `npx -y -p @mr.dj2u/cli@latest mds <command>`.
11
+ - If a workflow specifically requires guided MDS MCP tools and they are unavailable, stop and tell the user to refresh or reinstall the MDS plugin/MCP server instead of inventing defaults.
12
+ - For ordinary CLI workflows that do allow fallback, prefer `mds <command>` from PATH, then `npx -y -p @mr.dj2u/cli@latest mds <command>`.
12
13
 
13
14
  # /prepare-deploy
14
15
 
@@ -5,10 +5,11 @@ description: "Use when the user asks Mr. DJ's Dev Suite to run the Project Resea
5
5
 
6
6
  # Codex Workflow Routing
7
7
 
8
- - This is a Mr. DJ's Dev Suite plugin workflow. Prefer the bundled MCP tools before terminal fallbacks.
9
- - When an MCP tool named in this workflow is available, call that tool directly instead of running app-local npm scripts.
8
+ - This is a Mr. DJ's Dev Suite plugin workflow. Plugin skills and command markdown are guidance only.
9
+ - Prefer callable MDS MCP tools exposed by `@mr.dj2u/mcp-server` when this workflow names them.
10
10
  - Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
11
- - If the MCP server is unavailable, prefer `mds <command>` from PATH, then `npx -y -p @mr.dj2u/cli@latest mds <command>`.
11
+ - If a workflow specifically requires guided MDS MCP tools and they are unavailable, stop and tell the user to refresh or reinstall the MDS plugin/MCP server instead of inventing defaults.
12
+ - For ordinary CLI workflows that do allow fallback, prefer `mds <command>` from PATH, then `npx -y -p @mr.dj2u/cli@latest mds <command>`.
12
13
 
13
14
  # /project-research-plan
14
15
 
@@ -5,10 +5,11 @@ description: "Use when the user asks Mr. DJ's Dev Suite to run the PR iteration
5
5
 
6
6
  # Codex Workflow Routing
7
7
 
8
- - This is a Mr. DJ's Dev Suite plugin workflow. Prefer the bundled MCP tools before terminal fallbacks.
9
- - When an MCP tool named in this workflow is available, call that tool directly instead of running app-local npm scripts.
8
+ - This is a Mr. DJ's Dev Suite plugin workflow. Plugin skills and command markdown are guidance only.
9
+ - Prefer callable MDS MCP tools exposed by `@mr.dj2u/mcp-server` when this workflow names them.
10
10
  - Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
11
- - If the MCP server is unavailable, prefer `mds <command>` from PATH, then `npx -y -p @mr.dj2u/cli@latest mds <command>`.
11
+ - If a workflow specifically requires guided MDS MCP tools and they are unavailable, stop and tell the user to refresh or reinstall the MDS plugin/MCP server instead of inventing defaults.
12
+ - For ordinary CLI workflows that do allow fallback, prefer `mds <command>` from PATH, then `npx -y -p @mr.dj2u/cli@latest mds <command>`.
12
13
 
13
14
  # /push-merge-loop
14
15
 
@@ -5,10 +5,11 @@ description: "Use when the user asks Mr. DJ's Dev Suite to run the Review Expo P
5
5
 
6
6
  # Codex Workflow Routing
7
7
 
8
- - This is a Mr. DJ's Dev Suite plugin workflow. Prefer the bundled MCP tools before terminal fallbacks.
9
- - When an MCP tool named in this workflow is available, call that tool directly instead of running app-local npm scripts.
8
+ - This is a Mr. DJ's Dev Suite plugin workflow. Plugin skills and command markdown are guidance only.
9
+ - Prefer callable MDS MCP tools exposed by `@mr.dj2u/mcp-server` when this workflow names them.
10
10
  - Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
11
- - If the MCP server is unavailable, prefer `mds <command>` from PATH, then `npx -y -p @mr.dj2u/cli@latest mds <command>`.
11
+ - If a workflow specifically requires guided MDS MCP tools and they are unavailable, stop and tell the user to refresh or reinstall the MDS plugin/MCP server instead of inventing defaults.
12
+ - For ordinary CLI workflows that do allow fallback, prefer `mds <command>` from PATH, then `npx -y -p @mr.dj2u/cli@latest mds <command>`.
12
13
 
13
14
  # /review-expo-project
14
15
 
@@ -5,10 +5,11 @@ description: "Use when the user asks Mr. DJ's Dev Suite to run Doctor, run a hea
5
5
 
6
6
  # Codex Workflow Routing
7
7
 
8
- - This is a Mr. DJ's Dev Suite plugin workflow. Prefer the bundled MCP tools before terminal fallbacks.
9
- - When an MCP tool named in this workflow is available, call that tool directly instead of running app-local npm scripts.
8
+ - This is a Mr. DJ's Dev Suite plugin workflow. Plugin skills and command markdown are guidance only.
9
+ - Prefer callable MDS MCP tools exposed by `@mr.dj2u/mcp-server` when this workflow names them.
10
10
  - Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
11
- - If the MCP server is unavailable, prefer `mds <command>` from PATH, then `npx -y -p @mr.dj2u/cli@latest mds <command>`.
11
+ - If a workflow specifically requires guided MDS MCP tools and they are unavailable, stop and tell the user to refresh or reinstall the MDS plugin/MCP server instead of inventing defaults.
12
+ - For ordinary CLI workflows that do allow fallback, prefer `mds <command>` from PATH, then `npx -y -p @mr.dj2u/cli@latest mds <command>`.
12
13
 
13
14
  # /run-doctor
14
15
 
@@ -5,10 +5,11 @@ description: "Use when the user has finished testing and wants Mr. DJ's Dev Suit
5
5
 
6
6
  # Codex Workflow Routing
7
7
 
8
- - This is a Mr. DJ's Dev Suite plugin workflow. Prefer the bundled MCP tools before terminal fallbacks.
9
- - When an MCP tool named in this workflow is available, call that tool directly instead of running app-local npm scripts.
8
+ - This is a Mr. DJ's Dev Suite plugin workflow. Plugin skills and command markdown are guidance only.
9
+ - Prefer callable MDS MCP tools exposed by `@mr.dj2u/mcp-server` when this workflow names them.
10
10
  - Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
11
- - If the MCP server is unavailable, prefer `mds <command>` from PATH, then `npx -y -p @mr.dj2u/cli@latest mds <command>`.
11
+ - If a workflow specifically requires guided MDS MCP tools and they are unavailable, stop and tell the user to refresh or reinstall the MDS plugin/MCP server instead of inventing defaults.
12
+ - For ordinary CLI workflows that do allow fallback, prefer `mds <command>` from PATH, then `npx -y -p @mr.dj2u/cli@latest mds <command>`.
12
13
 
13
14
  # /wrap-up
14
15
 
@@ -5,7 +5,7 @@ description: "MDS Expo project intelligence agent for Doctor, onboarding, deploy
5
5
 
6
6
  # MDS Agent
7
7
 
8
- You are the Mr. DJ's Dev Suite agent for Expo projects. Prefer MDS MCP tools first, then CLI fallbacks.
8
+ You are the Mr. DJ's Dev Suite agent for Expo projects. Treat callable MDS MCP tools as the runtime behavior surface and prompt markdown as guidance only.
9
9
 
10
10
  ## Tool Routing
11
11
 
@@ -2,7 +2,7 @@
2
2
  # Mr. DJ's Dev Suite Copilot Instructions
3
3
 
4
4
  - Treat `project/` as the source of truth for product intent, roadmap, style, and technical rules.
5
- - Prefer MDS MCP tools before broad edits: `doctor_scan_project`, `doctor_scan_file`, `generate_refactor_plan`, and `generate_deploy_checklist`.
5
+ - Prefer callable MDS MCP tools before broad edits: `doctor_scan_project`, `doctor_scan_file`, `generate_refactor_plan`, and `generate_deploy_checklist`.
6
6
  - Use `list_skills`, `get_skill`, and `get_guide` for MDS guidance, while delegating framework mechanics to official Expo/React Native guidance when available.
7
7
  - Keep route files thin, env secrets server-only, and release work gated by Doctor checks.
8
8
  <!-- END MDS COPILOT INSTRUCTIONS -->
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  mode: "agent"
3
- description: "Run the MDS Continue Development workflow with MCP-first diagnostics and CLI fallback."
3
+ description: "Run the MDS Continue Development workflow with callable MDS MCP diagnostics and explicit fallback rules."
4
4
  ---
5
5
 
6
6
  # /continue-development
@@ -1,35 +1,36 @@
1
1
  ---
2
2
  mode: "agent"
3
- description: "Run the MDS Create Expo Super Stack workflow with MCP-first diagnostics and CLI fallback."
3
+ description: "Run the MDS Create Expo Super Stack workflow with callable MDS MCP diagnostics and explicit fallback rules."
4
4
  ---
5
5
 
6
6
  # /create-expo-super-stack
7
7
 
8
- Create a new Expo app with the MDS Super Stack flow, using this knowledge package as the shared source of truth for agent-facing text and the published CLI as the execution source of truth.
8
+ Create a new Expo app with the MDS Super Stack flow, using the published CESS CLI as the execution source of truth and callable MDS MCP tools as the guided intake surface.
9
9
 
10
10
  ## Arguments
11
11
 
12
12
  - `parentDir`: folder where the new app directory should be created.
13
13
  - `appName`: app folder name.
14
14
 
15
- ## MCP-First Workflow
15
+ ## Required MDS MCP Tool Flow
16
16
 
17
17
  1. Confirm the `mds` MCP server is available.
18
- 2. Invoke the MCP prompt `create_expo_super_stack` from a parent directory when you want guided intake.
19
- 3. Keep the conversation one question per turn and summarize the captured choices before generation.
20
- 4. Treat the MCP prompt as the intake surface and the CLI as the generator, so CLI changes are picked up automatically when the published command changes.
21
- 5. After generation, move into the new app folder and invoke `continue_project` (or prompt `continue_mds_project`) for the first implementation session.
18
+ 2. Drive intake with `create_expo_super_stack_intake_step`.
19
+ 3. Ask exactly one question per turn.
20
+ 4. Always show the returned default and options.
21
+ 5. Never invent or silently accept defaults on the user's behalf.
22
+ 6. When the intake tool returns `confirm`, summarize the returned `summaryLines` and ask the user to confirm.
23
+ 7. After explicit confirmation, set `answers.confirmed=true`, call the intake tool again, and proceed only when it returns `ready`.
24
+ 8. Then call `create_expo_super_stack_generate` with `confirmed: true`.
22
25
 
23
- ## CLI / Manual Fallback
26
+ ## Failure Behavior
24
27
 
25
- 1. If MCP is not configured, install it manually:
26
- - `mds mcp install --client <client> --scope project`
27
- 2. Direct CLI generation:
28
- - `npx -y create-expo-super-stack <appName>`
29
- 3. Then onboard/continue from inside the generated app using the current CLI behavior:
30
- - `mds continue <new-app-path>`
28
+ 1. If the guided intake or generate tools are unavailable, stop.
29
+ 2. Call `mds_runtime_versions` to diagnose stale plugin or MCP installs.
30
+ 3. Tell the user to refresh or reinstall the MDS plugin/MCP server.
31
+ 4. Do not fall back to `--mds-yes` or direct CLI shortcuts unless the user explicitly asked for a fast non-interactive run.
31
32
 
32
33
  ## Verification And Output
33
34
 
34
35
  - Confirm generated app has `project/info.md`, `project/todo.md`, `project/style.md`, and `project/guidelines.md`.
35
- - Output: generated app path, onboarding status, and immediate next command.
36
+ - Output: generated app path, onboarding status, and the handoff to open a fresh agent session inside the new app folder and run `mds continue`.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  mode: "agent"
3
- description: "Run the MDS Fix Seo workflow with MCP-first diagnostics and CLI fallback."
3
+ description: "Run the MDS Fix Seo workflow with callable MDS MCP diagnostics and explicit fallback rules."
4
4
  ---
5
5
 
6
6
  # /fix-seo
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  mode: "agent"
3
- description: "Run the MDS Prepare Deploy workflow with MCP-first diagnostics and CLI fallback."
3
+ description: "Run the MDS Prepare Deploy workflow with callable MDS MCP diagnostics and explicit fallback rules."
4
4
  ---
5
5
 
6
6
  # /prepare-deploy
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  mode: "agent"
3
- description: "Run the MDS Project Research Plan workflow with MCP-first diagnostics and CLI fallback."
3
+ description: "Run the MDS Project Research Plan workflow with callable MDS MCP diagnostics and explicit fallback rules."
4
4
  ---
5
5
 
6
6
  # /project-research-plan
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  mode: "agent"
3
- description: "Run the MDS Push Merge Loop workflow with MCP-first diagnostics and CLI fallback."
3
+ description: "Run the MDS Push Merge Loop workflow with callable MDS MCP diagnostics and explicit fallback rules."
4
4
  ---
5
5
 
6
6
  # /push-merge-loop
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  mode: "agent"
3
- description: "Run the MDS Review Expo Project workflow with MCP-first diagnostics and CLI fallback."
3
+ description: "Run the MDS Review Expo Project workflow with callable MDS MCP diagnostics and explicit fallback rules."
4
4
  ---
5
5
 
6
6
  # /review-expo-project
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  mode: "agent"
3
- description: "Run the MDS Run Doctor workflow with MCP-first diagnostics and CLI fallback."
3
+ description: "Run the MDS Run Doctor workflow with callable MDS MCP diagnostics and explicit fallback rules."
4
4
  ---
5
5
 
6
6
  # /run-doctor
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  mode: "agent"
3
- description: "Run the MDS Wrap Up workflow with MCP-first diagnostics and CLI fallback."
3
+ description: "Run the MDS Wrap Up workflow with callable MDS MCP diagnostics and explicit fallback rules."
4
4
  ---
5
5
 
6
6
  # /wrap-up
@@ -4,7 +4,7 @@
4
4
  "command": "npx",
5
5
  "args": [
6
6
  "-y",
7
- "@mr.dj2u/mcp-server@0.1.4"
7
+ "@mr.dj2u/mcp-server@0.1.5"
8
8
  ]
9
9
  }
10
10
  }