@mr.dj2u/cli 0.1.12 → 0.1.14
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 +20 -20
- package/bundles/claude-code/.mcp.json +11 -11
- package/bundles/claude-code/agents/mds.md +36 -36
- package/bundles/claude-code/commands/create-expo-super-stack.md +34 -32
- package/bundles/claude-code/skills/create-expo-super-stack/SKILL.md +9 -7
- package/bundles/claude-code/skills/super-stack-startup/SKILL.md +4 -4
- package/bundles/codex/.codex-plugin/plugin.json +42 -42
- package/bundles/codex/.mcp.json +11 -11
- package/bundles/codex/README.md +51 -51
- package/bundles/codex/commands/create-expo-super-stack.md +34 -32
- package/bundles/codex/skills/super-stack-startup/SKILL.md +34 -34
- package/bundles/codex/skills/workflow-continue-development/SKILL.md +48 -48
- package/bundles/codex/skills/workflow-create-expo-super-stack/SKILL.md +47 -45
- package/bundles/codex/skills/workflow-fix-seo/SKILL.md +42 -42
- package/bundles/codex/skills/workflow-prepare-deploy/SKILL.md +42 -42
- package/bundles/codex/skills/workflow-project-research-plan/SKILL.md +42 -42
- package/bundles/codex/skills/workflow-push-merge-loop/SKILL.md +37 -37
- package/bundles/codex/skills/workflow-review-expo-project/SKILL.md +42 -42
- package/bundles/codex/skills/workflow-run-doctor/SKILL.md +51 -51
- package/bundles/codex/skills/workflow-wrap-up/SKILL.md +80 -80
- package/bundles/vscode-copilot/.github/agents/mds.agent.md +22 -22
- package/bundles/vscode-copilot/.github/copilot-instructions.md +8 -8
- package/bundles/vscode-copilot/.github/prompts/continue-development.prompt.md +40 -40
- package/bundles/vscode-copilot/.github/prompts/create-expo-super-stack.prompt.md +39 -37
- package/bundles/vscode-copilot/.github/prompts/fix-seo.prompt.md +34 -34
- package/bundles/vscode-copilot/.github/prompts/prepare-deploy.prompt.md +34 -34
- package/bundles/vscode-copilot/.github/prompts/project-research-plan.prompt.md +34 -34
- package/bundles/vscode-copilot/.github/prompts/push-merge-loop.prompt.md +30 -30
- package/bundles/vscode-copilot/.github/prompts/review-expo-project.prompt.md +34 -34
- package/bundles/vscode-copilot/.github/prompts/run-doctor.prompt.md +43 -43
- package/bundles/vscode-copilot/.github/prompts/wrap-up.prompt.md +72 -72
- package/bundles/vscode-copilot/.github/skills/super-stack-startup/SKILL.md +39 -39
- package/bundles/vscode-copilot/.vscode/mcp.json +11 -11
- package/bundles/vscode-copilot/user/.copilot/agents/mds.agent.md +22 -22
- package/bundles/vscode-copilot/user/.copilot/instructions.md +8 -8
- package/bundles/vscode-copilot/user/.copilot/skills/super-stack-startup/SKILL.md +39 -39
- package/bundles/vscode-copilot/user/.copilot/skills/workflow-create-expo-super-stack/SKILL.md +39 -37
- package/dist/cess-intake.d.ts +16 -0
- package/dist/cess-intake.d.ts.map +1 -1
- package/dist/cess-intake.js +677 -15
- package/dist/cess-intake.js.map +1 -1
- package/dist/commands/mcp-install.d.ts +2 -2
- package/dist/commands/mcp-install.js +1 -1
- package/dist/commands/onboard.d.ts +8 -0
- package/dist/commands/onboard.d.ts.map +1 -1
- package/dist/commands/onboard.js +8 -0
- package/dist/commands/onboard.js.map +1 -1
- package/dist/commands/stylist.d.ts.map +1 -1
- package/dist/commands/stylist.js +5 -1
- package/dist/commands/stylist.js.map +1 -1
- package/dist/project-memory.d.ts +8 -0
- package/dist/project-memory.d.ts.map +1 -1
- package/dist/project-memory.js +89 -5
- package/dist/project-memory.js.map +1 -1
- package/package.json +3 -3
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: "MDS Continue Development"
|
|
3
|
-
description: "Use when the user asks Mr. DJ's Dev Suite to continue development, pick the next phase task, resume work, or inspect project/todo.md."
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
# Codex Workflow Routing
|
|
7
|
-
|
|
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
|
-
- Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
|
|
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>`.
|
|
13
|
-
|
|
14
|
-
# /continue-development
|
|
15
|
-
|
|
16
|
-
Resume work on an onboarded project by following MDS phase order from `project/todo.md`.
|
|
17
|
-
|
|
18
|
-
## Arguments
|
|
19
|
-
|
|
20
|
-
- `projectPath`: onboarded app path (default: current directory).
|
|
21
|
-
|
|
22
|
-
## MCP-First Workflow
|
|
23
|
-
|
|
24
|
-
1. Confirm the `mr-djs-dev-suite` MCP server is available.
|
|
25
|
-
2. Call `continue_project` first to get the active-phase brief.
|
|
26
|
-
3. Pull `get_skill` for `continue-development` to enforce phase-first sequencing.
|
|
27
|
-
4. If blockers appear, use `doctor_scan_project` and `doctor_explain_result` for targeted remediation before feature work.
|
|
28
|
-
|
|
29
|
-
## MDS Routing Guardrails
|
|
30
|
-
|
|
31
|
-
- Treat a request to continue development with MDS as a request for the MDS MCP tool and phase rules first.
|
|
32
|
-
- Do not jump directly into app edits until `continue_project` or the CLI fallback has identified the active phase and blockers.
|
|
33
|
-
- Never invoke `@mrdj/cli`; that package name is wrong. The published CLI package is `@mr.dj2u/cli` and its executable is `mds`.
|
|
34
|
-
|
|
35
|
-
## CLI / Manual Fallback
|
|
36
|
-
|
|
37
|
-
1. If MCP is not configured, install it manually:
|
|
38
|
-
- `mds mcp install --client <client> --scope project`
|
|
39
|
-
2. Direct CLI flow:
|
|
40
|
-
- `mds continue <projectPath>`
|
|
41
|
-
- `mds doctor <projectPath>` when blockers are unclear.
|
|
42
|
-
3. If `mds` is not on PATH, invoke the published CLI by binary name:
|
|
43
|
-
- `npx -y -p @mr.dj2u/cli@latest mds continue <projectPath>`
|
|
44
|
-
|
|
45
|
-
## Verification And Output
|
|
46
|
-
|
|
47
|
-
- Confirm the chosen task belongs to the active phase or has an explicit deferral note.
|
|
48
|
-
- Output: selected next task, blockers, and validation commands to run after implementation.
|
|
1
|
+
---
|
|
2
|
+
name: "MDS Continue Development"
|
|
3
|
+
description: "Use when the user asks Mr. DJ's Dev Suite to continue development, pick the next phase task, resume work, or inspect project/todo.md."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Codex Workflow Routing
|
|
7
|
+
|
|
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
|
+
- Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
|
|
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>`.
|
|
13
|
+
|
|
14
|
+
# /continue-development
|
|
15
|
+
|
|
16
|
+
Resume work on an onboarded project by following MDS phase order from `project/todo.md`.
|
|
17
|
+
|
|
18
|
+
## Arguments
|
|
19
|
+
|
|
20
|
+
- `projectPath`: onboarded app path (default: current directory).
|
|
21
|
+
|
|
22
|
+
## MCP-First Workflow
|
|
23
|
+
|
|
24
|
+
1. Confirm the `mr-djs-dev-suite` MCP server is available.
|
|
25
|
+
2. Call `continue_project` first to get the active-phase brief.
|
|
26
|
+
3. Pull `get_skill` for `continue-development` to enforce phase-first sequencing.
|
|
27
|
+
4. If blockers appear, use `doctor_scan_project` and `doctor_explain_result` for targeted remediation before feature work.
|
|
28
|
+
|
|
29
|
+
## MDS Routing Guardrails
|
|
30
|
+
|
|
31
|
+
- Treat a request to continue development with MDS as a request for the MDS MCP tool and phase rules first.
|
|
32
|
+
- Do not jump directly into app edits until `continue_project` or the CLI fallback has identified the active phase and blockers.
|
|
33
|
+
- Never invoke `@mrdj/cli`; that package name is wrong. The published CLI package is `@mr.dj2u/cli` and its executable is `mds`.
|
|
34
|
+
|
|
35
|
+
## CLI / Manual Fallback
|
|
36
|
+
|
|
37
|
+
1. If MCP is not configured, install it manually:
|
|
38
|
+
- `mds mcp install --client <client> --scope project`
|
|
39
|
+
2. Direct CLI flow:
|
|
40
|
+
- `mds continue <projectPath>`
|
|
41
|
+
- `mds doctor <projectPath>` when blockers are unclear.
|
|
42
|
+
3. If `mds` is not on PATH, invoke the published CLI by binary name:
|
|
43
|
+
- `npx -y -p @mr.dj2u/cli@latest mds continue <projectPath>`
|
|
44
|
+
|
|
45
|
+
## Verification And Output
|
|
46
|
+
|
|
47
|
+
- Confirm the chosen task belongs to the active phase or has an explicit deferral note.
|
|
48
|
+
- Output: selected next task, blockers, and validation commands to run after implementation.
|
|
@@ -1,45 +1,47 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: "MDS Create Expo Super Stack"
|
|
3
|
-
description: "Use when the user asks Mr. DJ's Dev Suite to run the Create Expo Super Stack workflow."
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
# Codex Workflow Routing
|
|
7
|
-
|
|
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
|
-
- Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
|
|
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>`.
|
|
13
|
-
|
|
14
|
-
# /create-expo-super-stack
|
|
15
|
-
|
|
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.
|
|
17
|
-
|
|
18
|
-
## Arguments
|
|
19
|
-
|
|
20
|
-
- `parentDir`: folder where the new app directory should be created.
|
|
21
|
-
- `appName`: app folder name.
|
|
22
|
-
|
|
23
|
-
## Required MDS MCP Tool Flow
|
|
24
|
-
|
|
25
|
-
1. Confirm the `mr-djs-dev-suite` MCP server is available.
|
|
26
|
-
2.
|
|
27
|
-
3.
|
|
28
|
-
4.
|
|
29
|
-
5.
|
|
30
|
-
6.
|
|
31
|
-
7.
|
|
32
|
-
8.
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
-
|
|
1
|
+
---
|
|
2
|
+
name: "MDS Create Expo Super Stack"
|
|
3
|
+
description: "Use when the user asks Mr. DJ's Dev Suite to run the Create Expo Super Stack workflow."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Codex Workflow Routing
|
|
7
|
+
|
|
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
|
+
- Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
|
|
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>`.
|
|
13
|
+
|
|
14
|
+
# /create-expo-super-stack
|
|
15
|
+
|
|
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.
|
|
17
|
+
|
|
18
|
+
## Arguments
|
|
19
|
+
|
|
20
|
+
- `parentDir`: folder where the new app directory should be created.
|
|
21
|
+
- `appName`: app folder name.
|
|
22
|
+
|
|
23
|
+
## Required MDS MCP Tool Flow
|
|
24
|
+
|
|
25
|
+
1. Confirm the `mr-djs-dev-suite` MCP server is available.
|
|
26
|
+
2. If the user pasted or attached `info.md` / project memory, call `create_expo_super_stack_extract_info` first.
|
|
27
|
+
3. Seed the returned answers into `create_expo_super_stack_intake_step` and use intake only for missing or ambiguous questions.
|
|
28
|
+
4. Ask exactly one question per turn.
|
|
29
|
+
5. Always show the returned default and options.
|
|
30
|
+
6. Never invent or silently accept defaults on the user's behalf.
|
|
31
|
+
7. If extraction found the app name, do not ask a second display-name question.
|
|
32
|
+
8. When the intake tool returns `confirm`, summarize the returned `summaryLines` and ask the user to confirm.
|
|
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`.
|
|
35
|
+
|
|
36
|
+
## Failure Behavior
|
|
37
|
+
|
|
38
|
+
1. If the guided intake or generate tools are unavailable, stop.
|
|
39
|
+
2. Call `mds_runtime_versions` to diagnose stale plugin or MCP installs.
|
|
40
|
+
3. Tell the user to refresh or reinstall the MDS plugin/MCP server.
|
|
41
|
+
4. Do not fall back to `--mds-yes` or direct CLI shortcuts unless the user explicitly asked for a fast non-interactive run.
|
|
42
|
+
|
|
43
|
+
## Verification And Output
|
|
44
|
+
|
|
45
|
+
- Confirm generated app has `project/info.md`, `project/todo.md`, `project/style.md`, and `project/guidelines.md`.
|
|
46
|
+
- Confirm `project/todo.md` includes the auto-derived roadmap generated from normalized `project/info.md`.
|
|
47
|
+
- 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,42 +1,42 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: "MDS Fix Seo"
|
|
3
|
-
description: "Use when the user asks Mr. DJ's Dev Suite to run the Fix Seo workflow."
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
# Codex Workflow Routing
|
|
7
|
-
|
|
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
|
-
- Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
|
|
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>`.
|
|
13
|
-
|
|
14
|
-
# /fix-seo
|
|
15
|
-
|
|
16
|
-
Apply SEO metadata fixes for Expo web routes with MCP guidance and post-fix verification.
|
|
17
|
-
|
|
18
|
-
## Arguments
|
|
19
|
-
|
|
20
|
-
- `projectPath`: Expo project path (default: current directory).
|
|
21
|
-
- `routeOrFile`: optional route/file focus for targeted checks.
|
|
22
|
-
|
|
23
|
-
## MCP-First Workflow
|
|
24
|
-
|
|
25
|
-
1. Confirm the `mr-djs-dev-suite` MCP server is available.
|
|
26
|
-
2. Pull `get_skill` for `seo-metadata`.
|
|
27
|
-
3. Optionally run `doctor_scan_file` for focused route files, then `doctor_scan_project` for full checks.
|
|
28
|
-
4. Use `knowledge_list_resources` (`kind: "rule"`) to ensure canonical/indexing strategy is complete.
|
|
29
|
-
5. Implement metadata, canonical, robots, and sitemap corrections in route ownership boundaries.
|
|
30
|
-
|
|
31
|
-
## CLI / Manual Fallback
|
|
32
|
-
|
|
33
|
-
1. If MCP is not configured, install it manually:
|
|
34
|
-
- `mds mcp install --client <client> --scope project`
|
|
35
|
-
2. Direct CLI checks:
|
|
36
|
-
- `mds doctor <projectPath> --ci`
|
|
37
|
-
- Run project-specific web build/preview commands to verify metadata output.
|
|
38
|
-
|
|
39
|
-
## Verification And Output
|
|
40
|
-
|
|
41
|
-
- Confirm canonical tags, social metadata, and sitemap/robots behavior on affected routes.
|
|
42
|
-
- Output: changed files, resolved SEO gaps, and any remaining manual verification steps.
|
|
1
|
+
---
|
|
2
|
+
name: "MDS Fix Seo"
|
|
3
|
+
description: "Use when the user asks Mr. DJ's Dev Suite to run the Fix Seo workflow."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Codex Workflow Routing
|
|
7
|
+
|
|
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
|
+
- Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
|
|
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>`.
|
|
13
|
+
|
|
14
|
+
# /fix-seo
|
|
15
|
+
|
|
16
|
+
Apply SEO metadata fixes for Expo web routes with MCP guidance and post-fix verification.
|
|
17
|
+
|
|
18
|
+
## Arguments
|
|
19
|
+
|
|
20
|
+
- `projectPath`: Expo project path (default: current directory).
|
|
21
|
+
- `routeOrFile`: optional route/file focus for targeted checks.
|
|
22
|
+
|
|
23
|
+
## MCP-First Workflow
|
|
24
|
+
|
|
25
|
+
1. Confirm the `mr-djs-dev-suite` MCP server is available.
|
|
26
|
+
2. Pull `get_skill` for `seo-metadata`.
|
|
27
|
+
3. Optionally run `doctor_scan_file` for focused route files, then `doctor_scan_project` for full checks.
|
|
28
|
+
4. Use `knowledge_list_resources` (`kind: "rule"`) to ensure canonical/indexing strategy is complete.
|
|
29
|
+
5. Implement metadata, canonical, robots, and sitemap corrections in route ownership boundaries.
|
|
30
|
+
|
|
31
|
+
## CLI / Manual Fallback
|
|
32
|
+
|
|
33
|
+
1. If MCP is not configured, install it manually:
|
|
34
|
+
- `mds mcp install --client <client> --scope project`
|
|
35
|
+
2. Direct CLI checks:
|
|
36
|
+
- `mds doctor <projectPath> --ci`
|
|
37
|
+
- Run project-specific web build/preview commands to verify metadata output.
|
|
38
|
+
|
|
39
|
+
## Verification And Output
|
|
40
|
+
|
|
41
|
+
- Confirm canonical tags, social metadata, and sitemap/robots behavior on affected routes.
|
|
42
|
+
- Output: changed files, resolved SEO gaps, and any remaining manual verification steps.
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: "MDS Prepare Deploy"
|
|
3
|
-
description: "Use when the user asks Mr. DJ's Dev Suite to run the Prepare Deploy workflow."
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
# Codex Workflow Routing
|
|
7
|
-
|
|
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
|
-
- Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
|
|
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>`.
|
|
13
|
-
|
|
14
|
-
# /prepare-deploy
|
|
15
|
-
|
|
16
|
-
Prepare an Expo project for release using deployment-focused skills plus Doctor parity checks.
|
|
17
|
-
|
|
18
|
-
## Arguments
|
|
19
|
-
|
|
20
|
-
- `projectPath`: release candidate project path (default: current directory).
|
|
21
|
-
- `includeSeo`: whether to include web metadata/indexing checks (default: `true` when web is targeted).
|
|
22
|
-
|
|
23
|
-
## MCP-First Workflow
|
|
24
|
-
|
|
25
|
-
1. Confirm the `mr-djs-dev-suite` MCP server is available.
|
|
26
|
-
2. Run `doctor_scan_project` in `ci` mode for release parity.
|
|
27
|
-
3. Pull `get_skill` for `deployment`; if web is involved also pull `seo-metadata`.
|
|
28
|
-
4. Use `knowledge_list_resources` (`kind: "rule"`) to confirm env hygiene, SSR safety, and metadata requirements.
|
|
29
|
-
5. Produce a release checklist mapped to current failing checks.
|
|
30
|
-
|
|
31
|
-
## CLI / Manual Fallback
|
|
32
|
-
|
|
33
|
-
1. If MCP is not configured, install it manually:
|
|
34
|
-
- `mds mcp install --client <client> --scope project`
|
|
35
|
-
2. Direct CLI path:
|
|
36
|
-
- `mds doctor <projectPath> --ci`
|
|
37
|
-
- Run project scripts: `lint`, `type-check`, `test`, and production build/profile scripts.
|
|
38
|
-
|
|
39
|
-
## Verification And Output
|
|
40
|
-
|
|
41
|
-
- Re-run `doctor_scan_project` (or CLI equivalent) until blockers are cleared.
|
|
42
|
-
- Output: release readiness status, unresolved blockers, and rollback/readiness notes.
|
|
1
|
+
---
|
|
2
|
+
name: "MDS Prepare Deploy"
|
|
3
|
+
description: "Use when the user asks Mr. DJ's Dev Suite to run the Prepare Deploy workflow."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Codex Workflow Routing
|
|
7
|
+
|
|
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
|
+
- Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
|
|
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>`.
|
|
13
|
+
|
|
14
|
+
# /prepare-deploy
|
|
15
|
+
|
|
16
|
+
Prepare an Expo project for release using deployment-focused skills plus Doctor parity checks.
|
|
17
|
+
|
|
18
|
+
## Arguments
|
|
19
|
+
|
|
20
|
+
- `projectPath`: release candidate project path (default: current directory).
|
|
21
|
+
- `includeSeo`: whether to include web metadata/indexing checks (default: `true` when web is targeted).
|
|
22
|
+
|
|
23
|
+
## MCP-First Workflow
|
|
24
|
+
|
|
25
|
+
1. Confirm the `mr-djs-dev-suite` MCP server is available.
|
|
26
|
+
2. Run `doctor_scan_project` in `ci` mode for release parity.
|
|
27
|
+
3. Pull `get_skill` for `deployment`; if web is involved also pull `seo-metadata`.
|
|
28
|
+
4. Use `knowledge_list_resources` (`kind: "rule"`) to confirm env hygiene, SSR safety, and metadata requirements.
|
|
29
|
+
5. Produce a release checklist mapped to current failing checks.
|
|
30
|
+
|
|
31
|
+
## CLI / Manual Fallback
|
|
32
|
+
|
|
33
|
+
1. If MCP is not configured, install it manually:
|
|
34
|
+
- `mds mcp install --client <client> --scope project`
|
|
35
|
+
2. Direct CLI path:
|
|
36
|
+
- `mds doctor <projectPath> --ci`
|
|
37
|
+
- Run project scripts: `lint`, `type-check`, `test`, and production build/profile scripts.
|
|
38
|
+
|
|
39
|
+
## Verification And Output
|
|
40
|
+
|
|
41
|
+
- Re-run `doctor_scan_project` (or CLI equivalent) until blockers are cleared.
|
|
42
|
+
- Output: release readiness status, unresolved blockers, and rollback/readiness notes.
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: "MDS Project Research Plan"
|
|
3
|
-
description: "Use when the user asks Mr. DJ's Dev Suite to run the Project Research Plan workflow."
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
# Codex Workflow Routing
|
|
7
|
-
|
|
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
|
-
- Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
|
|
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>`.
|
|
13
|
-
|
|
14
|
-
# /project-research-plan
|
|
15
|
-
|
|
16
|
-
Turn rough product notes/research into actionable MDS project memory and next-phase plan.
|
|
17
|
-
|
|
18
|
-
## Arguments
|
|
19
|
-
|
|
20
|
-
- `projectPath`: target project path (default: current directory).
|
|
21
|
-
- `inputs`: attached notes/docs to normalize into canonical memory files.
|
|
22
|
-
|
|
23
|
-
## MCP-First Workflow
|
|
24
|
-
|
|
25
|
-
1. Confirm the `mr-djs-dev-suite` MCP server is available.
|
|
26
|
-
2. Pull `get_skill` for `research-plan-intake` (and `project-onboarding` when onboarding context is mixed in).
|
|
27
|
-
3. Call `knowledge_list_resources` for `guide` and `reference` resources as needed for structure and validation.
|
|
28
|
-
4. Normalize clear context directly; ask focused follow-up only where ambiguity changes implementation direction.
|
|
29
|
-
5. Update project memory files and produce an implementation-ready next-phase plan.
|
|
30
|
-
|
|
31
|
-
## CLI / Manual Fallback
|
|
32
|
-
|
|
33
|
-
1. If MCP is not configured, install it manually:
|
|
34
|
-
- `mds mcp install --client <client> --scope project`
|
|
35
|
-
2. Direct CLI fallback:
|
|
36
|
-
- Use `mds onboard <projectPath>` for structured intake when memory files are missing.
|
|
37
|
-
- Use `mds continue <projectPath>` after memory normalization to select the next task.
|
|
38
|
-
|
|
39
|
-
## Verification And Output
|
|
40
|
-
|
|
41
|
-
- Confirm `project/info.md`, `project/style.md`, and `project/todo.md` align with extracted research context.
|
|
42
|
-
- Output: resolved unknowns, outstanding questions, and the recommended next implementation slice.
|
|
1
|
+
---
|
|
2
|
+
name: "MDS Project Research Plan"
|
|
3
|
+
description: "Use when the user asks Mr. DJ's Dev Suite to run the Project Research Plan workflow."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Codex Workflow Routing
|
|
7
|
+
|
|
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
|
+
- Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
|
|
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>`.
|
|
13
|
+
|
|
14
|
+
# /project-research-plan
|
|
15
|
+
|
|
16
|
+
Turn rough product notes/research into actionable MDS project memory and next-phase plan.
|
|
17
|
+
|
|
18
|
+
## Arguments
|
|
19
|
+
|
|
20
|
+
- `projectPath`: target project path (default: current directory).
|
|
21
|
+
- `inputs`: attached notes/docs to normalize into canonical memory files.
|
|
22
|
+
|
|
23
|
+
## MCP-First Workflow
|
|
24
|
+
|
|
25
|
+
1. Confirm the `mr-djs-dev-suite` MCP server is available.
|
|
26
|
+
2. Pull `get_skill` for `research-plan-intake` (and `project-onboarding` when onboarding context is mixed in).
|
|
27
|
+
3. Call `knowledge_list_resources` for `guide` and `reference` resources as needed for structure and validation.
|
|
28
|
+
4. Normalize clear context directly; ask focused follow-up only where ambiguity changes implementation direction.
|
|
29
|
+
5. Update project memory files and produce an implementation-ready next-phase plan.
|
|
30
|
+
|
|
31
|
+
## CLI / Manual Fallback
|
|
32
|
+
|
|
33
|
+
1. If MCP is not configured, install it manually:
|
|
34
|
+
- `mds mcp install --client <client> --scope project`
|
|
35
|
+
2. Direct CLI fallback:
|
|
36
|
+
- Use `mds onboard <projectPath>` for structured intake when memory files are missing.
|
|
37
|
+
- Use `mds continue <projectPath>` after memory normalization to select the next task.
|
|
38
|
+
|
|
39
|
+
## Verification And Output
|
|
40
|
+
|
|
41
|
+
- Confirm `project/info.md`, `project/style.md`, and `project/todo.md` align with extracted research context.
|
|
42
|
+
- Output: resolved unknowns, outstanding questions, and the recommended next implementation slice.
|
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: "MDS Push Merge Loop"
|
|
3
|
-
description: "Use when the user asks Mr. DJ's Dev Suite to run the PR iteration loop: doctor, commit, push, poll checks, fix, and merge to test."
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
# Codex Workflow Routing
|
|
7
|
-
|
|
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
|
-
- Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
|
|
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>`.
|
|
13
|
-
|
|
14
|
-
# /push-merge-loop
|
|
15
|
-
|
|
16
|
-
Execute the short PR iteration loop for the test branch with strict quality gates.
|
|
17
|
-
|
|
18
|
-
## Goal
|
|
19
|
-
|
|
20
|
-
Push intentional changes with a meaningful commit message, open/update a PR to `test`, poll for feedback and failed checks, fix issues, and merge to `test` once all checks are green.
|
|
21
|
-
|
|
22
|
-
## Loop Rules
|
|
23
|
-
|
|
24
|
-
1. Run `mds doctor --ci` before any git mutation.
|
|
25
|
-
2. Stage only intentional files and create a meaningful commit message.
|
|
26
|
-
3. Push branch and open or update a PR targeting `test`.
|
|
27
|
-
4. Wait about 2 minutes, then poll PR comments, review threads, and failed checks.
|
|
28
|
-
5. Fix issues locally, rerun Doctor, push updates, and poll again.
|
|
29
|
-
6. Repeat polling/fix cycles up to 5 total iterations.
|
|
30
|
-
7. Merge to `test` only when all required checks are green and no unresolved blocking feedback remains.
|
|
31
|
-
|
|
32
|
-
## Guardrails
|
|
33
|
-
|
|
34
|
-
- Do not merge when required checks are failing.
|
|
35
|
-
- Do not skip Doctor between fix cycles.
|
|
36
|
-
- Keep a concise changelog per iteration: what failed, what was changed, what passed.
|
|
37
|
-
- If still failing after 5 cycles, stop and summarize remaining blockers with concrete next actions.
|
|
1
|
+
---
|
|
2
|
+
name: "MDS Push Merge Loop"
|
|
3
|
+
description: "Use when the user asks Mr. DJ's Dev Suite to run the PR iteration loop: doctor, commit, push, poll checks, fix, and merge to test."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Codex Workflow Routing
|
|
7
|
+
|
|
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
|
+
- Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
|
|
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>`.
|
|
13
|
+
|
|
14
|
+
# /push-merge-loop
|
|
15
|
+
|
|
16
|
+
Execute the short PR iteration loop for the test branch with strict quality gates.
|
|
17
|
+
|
|
18
|
+
## Goal
|
|
19
|
+
|
|
20
|
+
Push intentional changes with a meaningful commit message, open/update a PR to `test`, poll for feedback and failed checks, fix issues, and merge to `test` once all checks are green.
|
|
21
|
+
|
|
22
|
+
## Loop Rules
|
|
23
|
+
|
|
24
|
+
1. Run `mds doctor --ci` before any git mutation.
|
|
25
|
+
2. Stage only intentional files and create a meaningful commit message.
|
|
26
|
+
3. Push branch and open or update a PR targeting `test`.
|
|
27
|
+
4. Wait about 2 minutes, then poll PR comments, review threads, and failed checks.
|
|
28
|
+
5. Fix issues locally, rerun Doctor, push updates, and poll again.
|
|
29
|
+
6. Repeat polling/fix cycles up to 5 total iterations.
|
|
30
|
+
7. Merge to `test` only when all required checks are green and no unresolved blocking feedback remains.
|
|
31
|
+
|
|
32
|
+
## Guardrails
|
|
33
|
+
|
|
34
|
+
- Do not merge when required checks are failing.
|
|
35
|
+
- Do not skip Doctor between fix cycles.
|
|
36
|
+
- Keep a concise changelog per iteration: what failed, what was changed, what passed.
|
|
37
|
+
- If still failing after 5 cycles, stop and summarize remaining blockers with concrete next actions.
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: "MDS Review Expo Project"
|
|
3
|
-
description: "Use when the user asks Mr. DJ's Dev Suite to run the Review Expo Project workflow."
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
# Codex Workflow Routing
|
|
7
|
-
|
|
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
|
-
- Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
|
|
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>`.
|
|
13
|
-
|
|
14
|
-
# /review-expo-project
|
|
15
|
-
|
|
16
|
-
Review an Expo project with MCP-first diagnostics and skill-guided remediation.
|
|
17
|
-
|
|
18
|
-
## Arguments
|
|
19
|
-
|
|
20
|
-
- `projectPath`: absolute or relative project path (default: current directory).
|
|
21
|
-
- `mode`: Doctor mode (`fast`, `ci`, or `full`; default: `ci`).
|
|
22
|
-
|
|
23
|
-
## MCP-First Workflow
|
|
24
|
-
|
|
25
|
-
1. Confirm the `mr-djs-dev-suite` MCP server is available.
|
|
26
|
-
2. Call `continue_project` to summarize current project state and blockers.
|
|
27
|
-
3. Call `doctor_scan_project` with `projectPath` and `mode`.
|
|
28
|
-
4. For each warning/error, call `doctor_explain_result`, then pull targeted guidance with `get_skill` (for example: `project-onboarding`, `debugging`, `deployment`).
|
|
29
|
-
5. Call `knowledge_list_resources` with `kind: "guide"` if extra reference context is needed.
|
|
30
|
-
|
|
31
|
-
## CLI / Manual Fallback
|
|
32
|
-
|
|
33
|
-
1. If MCP is not configured, install it manually:
|
|
34
|
-
- `mds mcp install --client <client> --scope project`
|
|
35
|
-
2. If MCP still cannot run, use direct CLI flows:
|
|
36
|
-
- `mds continue <projectPath>`
|
|
37
|
-
- `mds doctor <projectPath> --ci`
|
|
38
|
-
|
|
39
|
-
## Verification And Output
|
|
40
|
-
|
|
41
|
-
- Re-run `doctor_scan_project` (or `mds doctor --ci`) after fixes.
|
|
42
|
-
- Output: blocker summary, failing checks, recommended next task, and concrete follow-up commands.
|
|
1
|
+
---
|
|
2
|
+
name: "MDS Review Expo Project"
|
|
3
|
+
description: "Use when the user asks Mr. DJ's Dev Suite to run the Review Expo Project workflow."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Codex Workflow Routing
|
|
7
|
+
|
|
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
|
+
- Do not use stale package names such as `@mrdj/cli`. The CLI package is `@mr.dj2u/cli`; the executable is `mds`.
|
|
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>`.
|
|
13
|
+
|
|
14
|
+
# /review-expo-project
|
|
15
|
+
|
|
16
|
+
Review an Expo project with MCP-first diagnostics and skill-guided remediation.
|
|
17
|
+
|
|
18
|
+
## Arguments
|
|
19
|
+
|
|
20
|
+
- `projectPath`: absolute or relative project path (default: current directory).
|
|
21
|
+
- `mode`: Doctor mode (`fast`, `ci`, or `full`; default: `ci`).
|
|
22
|
+
|
|
23
|
+
## MCP-First Workflow
|
|
24
|
+
|
|
25
|
+
1. Confirm the `mr-djs-dev-suite` MCP server is available.
|
|
26
|
+
2. Call `continue_project` to summarize current project state and blockers.
|
|
27
|
+
3. Call `doctor_scan_project` with `projectPath` and `mode`.
|
|
28
|
+
4. For each warning/error, call `doctor_explain_result`, then pull targeted guidance with `get_skill` (for example: `project-onboarding`, `debugging`, `deployment`).
|
|
29
|
+
5. Call `knowledge_list_resources` with `kind: "guide"` if extra reference context is needed.
|
|
30
|
+
|
|
31
|
+
## CLI / Manual Fallback
|
|
32
|
+
|
|
33
|
+
1. If MCP is not configured, install it manually:
|
|
34
|
+
- `mds mcp install --client <client> --scope project`
|
|
35
|
+
2. If MCP still cannot run, use direct CLI flows:
|
|
36
|
+
- `mds continue <projectPath>`
|
|
37
|
+
- `mds doctor <projectPath> --ci`
|
|
38
|
+
|
|
39
|
+
## Verification And Output
|
|
40
|
+
|
|
41
|
+
- Re-run `doctor_scan_project` (or `mds doctor --ci`) after fixes.
|
|
42
|
+
- Output: blocker summary, failing checks, recommended next task, and concrete follow-up commands.
|