@mr.dj2u/cli 0.1.15 → 0.1.17
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 +36 -11
- package/bundles/claude-code/skills/create-expo-super-stack/SKILL.md +37 -12
- 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 +36 -11
- package/bundles/codex/skills/workflow-create-expo-super-stack/SKILL.md +36 -11
- package/bundles/vscode-copilot/.github/prompts/create-expo-super-stack.prompt.md +36 -11
- 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 +36 -11
- package/dist/cess-intake.d.ts +1 -1
- package/dist/cess-intake.d.ts.map +1 -1
- package/dist/cess-intake.js +302 -28
- 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 +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 +96 -194
- 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 +255 -34
- package/dist/roadmap.js.map +1 -1
- package/package.json +2 -2
|
@@ -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.13",
|
|
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",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# /create-expo-super-stack
|
|
2
2
|
|
|
3
|
-
Create a new Expo app with the MDS Super Stack flow, using
|
|
3
|
+
Create a new Expo app with the MDS Super Stack flow, using callable MDS MCP tools as the guided intake surface and the Super Stack generator as the scaffold source of truth.
|
|
4
4
|
|
|
5
5
|
## Arguments
|
|
6
6
|
|
|
@@ -9,16 +9,37 @@ 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
|
-
|
|
21
|
-
|
|
12
|
+
1. Call `mds_runtime_versions` first to inspect the active runtime and invocation path.
|
|
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, print the waiting message below, then call `create_expo_super_stack_generate` with the resolver `generateInput` and `confirmed: true`.
|
|
20
|
+
|
|
21
|
+
## Waiting Message Before Generate
|
|
22
|
+
|
|
23
|
+
After the user confirms, print this block before running the generator so they have something useful to read while scaffolding runs:
|
|
24
|
+
|
|
25
|
+
Generating now. This typically takes 2-5 minutes. While we wait, let's shout out and recognize how this is working.
|
|
26
|
+
|
|
27
|
+
create-expo-super-stack by Mr. DJ (who also built this agentic flow) wraps create-expo-stack by Roni OSS with major contributions by Dan Stepanov (NativeWind). Big thanks to them and to several other teams and individuals whose work and educational materials fill Mr. DJ's Dev Suite knowledge base:
|
|
28
|
+
|
|
29
|
+
- Expo team (Evan Bacon for Expo Router, Brent Vatne, Charlie Cheever, and the broader Expo crew)
|
|
30
|
+
- React and React Native core teams
|
|
31
|
+
- Software Mansion (Reanimated, Gesture Handler, Screens, Worklets; Krzysztof Magiera and team)
|
|
32
|
+
- Supabase, Drizzle, and Zustand teams
|
|
33
|
+
- Adam Wathan and the Tailwind CSS team (the foundation Uniwind and NativeWind build on)
|
|
34
|
+
- Janic Duplessis for "The real cost of React Native animations: benchmarking every approach"
|
|
35
|
+
- Simon Grimm of Galaxies.dev
|
|
36
|
+
- Beto Adrian Maldonado of codewithbeto.dev
|
|
37
|
+
- Vadim of notJust.dev
|
|
38
|
+
- William Candillon for the React Native animation deep-dive content
|
|
39
|
+
- Catalin Miron for the React Native animation tutorials
|
|
40
|
+
- Infinite Red / Jamon Holmgren for Ignite and the broader RN community
|
|
41
|
+
|
|
42
|
+
Their contributions to the software development community are what fill the pages of Mr. DJ's Dev Suite knowledge base, alongside contributions and organization by Mr. DJ. Please enjoy the experience of the Mr. DJ's Dev Suite plugin as you continue your development.
|
|
22
43
|
|
|
23
44
|
## Failure Behavior
|
|
24
45
|
|
|
@@ -27,8 +48,12 @@ Create a new Expo app with the MDS Super Stack flow, using the published CESS CL
|
|
|
27
48
|
3. Tell the user to refresh or reinstall the MDS plugin/MCP server.
|
|
28
49
|
4. Do not fall back to `--mds-yes` or direct CLI shortcuts unless the user explicitly asked for a fast non-interactive run.
|
|
29
50
|
|
|
51
|
+
Warn only when `mds_runtime_versions.warnings` is non-empty or when the user expected different versions than the runtime reports.
|
|
52
|
+
Do not describe the normal published install path as a fallback, and do not mention `npm exec` or `npx` to the user unless there is an actual runtime problem they need to act on.
|
|
53
|
+
|
|
30
54
|
## Verification And Output
|
|
31
55
|
|
|
32
56
|
- Confirm generated app has `project/info.md`, `project/todo.md`, `project/style.md`, and `project/guidelines.md`.
|
|
33
57
|
- Confirm `project/todo.md` includes the auto-derived roadmap generated from normalized `project/info.md`.
|
|
58
|
+
- If those Super Stack artifacts are missing, treat generation as a failure or partial scaffold and say so clearly instead of presenting it as a normal success.
|
|
34
59
|
- 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,11 +1,11 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: Create a new Expo app with the MDS Super Stack flow, using
|
|
2
|
+
description: Create a new Expo app with the MDS Super Stack flow, using callable MDS MCP tools as the guided intake surface and the Super Stack generator as the scaffold source of truth.
|
|
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
|
|
8
|
+
Create a new Expo app with the MDS Super Stack flow, using callable MDS MCP tools as the guided intake surface and the Super Stack generator as the scaffold source of truth.
|
|
9
9
|
|
|
10
10
|
## Arguments
|
|
11
11
|
|
|
@@ -14,16 +14,37 @@ 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
|
-
|
|
26
|
-
|
|
17
|
+
1. Call `mds_runtime_versions` first to inspect the active runtime and invocation path.
|
|
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, print the waiting message below, then call `create_expo_super_stack_generate` with the resolver `generateInput` and `confirmed: true`.
|
|
25
|
+
|
|
26
|
+
## Waiting Message Before Generate
|
|
27
|
+
|
|
28
|
+
After the user confirms, print this block before running the generator so they have something useful to read while scaffolding runs:
|
|
29
|
+
|
|
30
|
+
Generating now. This typically takes 2-5 minutes. While we wait, let's shout out and recognize how this is working.
|
|
31
|
+
|
|
32
|
+
create-expo-super-stack by Mr. DJ (who also built this agentic flow) wraps create-expo-stack by Roni OSS with major contributions by Dan Stepanov (NativeWind). Big thanks to them and to several other teams and individuals whose work and educational materials fill Mr. DJ's Dev Suite knowledge base:
|
|
33
|
+
|
|
34
|
+
- Expo team (Evan Bacon for Expo Router, Brent Vatne, Charlie Cheever, and the broader Expo crew)
|
|
35
|
+
- React and React Native core teams
|
|
36
|
+
- Software Mansion (Reanimated, Gesture Handler, Screens, Worklets; Krzysztof Magiera and team)
|
|
37
|
+
- Supabase, Drizzle, and Zustand teams
|
|
38
|
+
- Adam Wathan and the Tailwind CSS team (the foundation Uniwind and NativeWind build on)
|
|
39
|
+
- Janic Duplessis for "The real cost of React Native animations: benchmarking every approach"
|
|
40
|
+
- Simon Grimm of Galaxies.dev
|
|
41
|
+
- Beto Adrian Maldonado of codewithbeto.dev
|
|
42
|
+
- Vadim of notJust.dev
|
|
43
|
+
- William Candillon for the React Native animation deep-dive content
|
|
44
|
+
- Catalin Miron for the React Native animation tutorials
|
|
45
|
+
- Infinite Red / Jamon Holmgren for Ignite and the broader RN community
|
|
46
|
+
|
|
47
|
+
Their contributions to the software development community are what fill the pages of Mr. DJ's Dev Suite knowledge base, alongside contributions and organization by Mr. DJ. Please enjoy the experience of the Mr. DJ's Dev Suite plugin as you continue your development.
|
|
27
48
|
|
|
28
49
|
## Failure Behavior
|
|
29
50
|
|
|
@@ -32,8 +53,12 @@ Create a new Expo app with the MDS Super Stack flow, using the published CESS CL
|
|
|
32
53
|
3. Tell the user to refresh or reinstall the MDS plugin/MCP server.
|
|
33
54
|
4. Do not fall back to `--mds-yes` or direct CLI shortcuts unless the user explicitly asked for a fast non-interactive run.
|
|
34
55
|
|
|
56
|
+
Warn only when `mds_runtime_versions.warnings` is non-empty or when the user expected different versions than the runtime reports.
|
|
57
|
+
Do not describe the normal published install path as a fallback, and do not mention `npm exec` or `npx` to the user unless there is an actual runtime problem they need to act on.
|
|
58
|
+
|
|
35
59
|
## Verification And Output
|
|
36
60
|
|
|
37
61
|
- Confirm generated app has `project/info.md`, `project/todo.md`, `project/style.md`, and `project/guidelines.md`.
|
|
38
62
|
- Confirm `project/todo.md` includes the auto-derived roadmap generated from normalized `project/info.md`.
|
|
63
|
+
- If those Super Stack artifacts are missing, treat generation as a failure or partial scaffold and say so clearly instead of presenting it as a normal success.
|
|
39
64
|
- Output: generated app path, onboarding status, and the handoff to open a fresh agent session inside the new app folder and run `mds continue`.
|
package/bundles/codex/.mcp.json
CHANGED
package/bundles/codex/README.md
CHANGED
|
@@ -31,7 +31,20 @@ mds agent install --client codex --scope user --dry-run
|
|
|
31
31
|
|
|
32
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.
|
|
33
33
|
|
|
34
|
-
If Codex keeps using stale behavior after
|
|
34
|
+
If Codex keeps using stale behavior after reinstall, do a full cleanup and reinstall:
|
|
35
|
+
|
|
36
|
+
1. Remove the installed local plugin copy for the scope you used:
|
|
37
|
+
- project scope: `<target>/plugins/mr-djs-dev-suite`
|
|
38
|
+
- user scope: `~/plugins/mr-djs-dev-suite`
|
|
39
|
+
2. Remove the local Codex cache copy:
|
|
40
|
+
- `~/.codex/plugins/cache/mds-local/mr-djs-dev-suite`
|
|
41
|
+
3. Reinstall:
|
|
42
|
+
- `mds agent install --client codex --scope project --target /path/to/your/expo-app`
|
|
43
|
+
- or `mds agent install --client codex --scope user`
|
|
44
|
+
4. Run verify again:
|
|
45
|
+
- `mds agent verify --client codex --scope project --target /path/to/your/expo-app`
|
|
46
|
+
- or `mds agent verify --client codex --scope user`
|
|
47
|
+
5. Restart Codex, then run `mds_runtime_versions` from the host surface to confirm which runtime is active.
|
|
35
48
|
|
|
36
49
|
## MCP-Only Fallback
|
|
37
50
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# /create-expo-super-stack
|
|
2
2
|
|
|
3
|
-
Create a new Expo app with the MDS Super Stack flow, using
|
|
3
|
+
Create a new Expo app with the MDS Super Stack flow, using callable MDS MCP tools as the guided intake surface and the Super Stack generator as the scaffold source of truth.
|
|
4
4
|
|
|
5
5
|
## Arguments
|
|
6
6
|
|
|
@@ -9,16 +9,37 @@ 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
|
-
|
|
21
|
-
|
|
12
|
+
1. Call `mds_runtime_versions` first to inspect the active runtime and invocation path.
|
|
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, print the waiting message below, then call `create_expo_super_stack_generate` with the resolver `generateInput` and `confirmed: true`.
|
|
20
|
+
|
|
21
|
+
## Waiting Message Before Generate
|
|
22
|
+
|
|
23
|
+
After the user confirms, print this block before running the generator so they have something useful to read while scaffolding runs:
|
|
24
|
+
|
|
25
|
+
Generating now. This typically takes 2-5 minutes. While we wait, let's shout out and recognize how this is working.
|
|
26
|
+
|
|
27
|
+
create-expo-super-stack by Mr. DJ (who also built this agentic flow) wraps create-expo-stack by Roni OSS with major contributions by Dan Stepanov (NativeWind). Big thanks to them and to several other teams and individuals whose work and educational materials fill Mr. DJ's Dev Suite knowledge base:
|
|
28
|
+
|
|
29
|
+
- Expo team (Evan Bacon for Expo Router, Brent Vatne, Charlie Cheever, and the broader Expo crew)
|
|
30
|
+
- React and React Native core teams
|
|
31
|
+
- Software Mansion (Reanimated, Gesture Handler, Screens, Worklets; Krzysztof Magiera and team)
|
|
32
|
+
- Supabase, Drizzle, and Zustand teams
|
|
33
|
+
- Adam Wathan and the Tailwind CSS team (the foundation Uniwind and NativeWind build on)
|
|
34
|
+
- Janic Duplessis for "The real cost of React Native animations: benchmarking every approach"
|
|
35
|
+
- Simon Grimm of Galaxies.dev
|
|
36
|
+
- Beto Adrian Maldonado of codewithbeto.dev
|
|
37
|
+
- Vadim of notJust.dev
|
|
38
|
+
- William Candillon for the React Native animation deep-dive content
|
|
39
|
+
- Catalin Miron for the React Native animation tutorials
|
|
40
|
+
- Infinite Red / Jamon Holmgren for Ignite and the broader RN community
|
|
41
|
+
|
|
42
|
+
Their contributions to the software development community are what fill the pages of Mr. DJ's Dev Suite knowledge base, alongside contributions and organization by Mr. DJ. Please enjoy the experience of the Mr. DJ's Dev Suite plugin as you continue your development.
|
|
22
43
|
|
|
23
44
|
## Failure Behavior
|
|
24
45
|
|
|
@@ -27,8 +48,12 @@ Create a new Expo app with the MDS Super Stack flow, using the published CESS CL
|
|
|
27
48
|
3. Tell the user to refresh or reinstall the MDS plugin/MCP server.
|
|
28
49
|
4. Do not fall back to `--mds-yes` or direct CLI shortcuts unless the user explicitly asked for a fast non-interactive run.
|
|
29
50
|
|
|
51
|
+
Warn only when `mds_runtime_versions.warnings` is non-empty or when the user expected different versions than the runtime reports.
|
|
52
|
+
Do not describe the normal published install path as a fallback, and do not mention `npm exec` or `npx` to the user unless there is an actual runtime problem they need to act on.
|
|
53
|
+
|
|
30
54
|
## Verification And Output
|
|
31
55
|
|
|
32
56
|
- Confirm generated app has `project/info.md`, `project/todo.md`, `project/style.md`, and `project/guidelines.md`.
|
|
33
57
|
- Confirm `project/todo.md` includes the auto-derived roadmap generated from normalized `project/info.md`.
|
|
58
|
+
- If those Super Stack artifacts are missing, treat generation as a failure or partial scaffold and say so clearly instead of presenting it as a normal success.
|
|
34
59
|
- Output: generated app path, onboarding status, and the handoff to open a fresh agent session inside the new app folder and run `mds continue`.
|
|
@@ -13,7 +13,7 @@ description: "Use when the user asks Mr. DJ's Dev Suite to run the Create Expo S
|
|
|
13
13
|
|
|
14
14
|
# /create-expo-super-stack
|
|
15
15
|
|
|
16
|
-
Create a new Expo app with the MDS Super Stack flow, using
|
|
16
|
+
Create a new Expo app with the MDS Super Stack flow, using callable MDS MCP tools as the guided intake surface and the Super Stack generator as the scaffold source of truth.
|
|
17
17
|
|
|
18
18
|
## Arguments
|
|
19
19
|
|
|
@@ -22,16 +22,37 @@ 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
|
-
|
|
34
|
-
|
|
25
|
+
1. Call `mds_runtime_versions` first to inspect the active runtime and invocation path.
|
|
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, print the waiting message below, then call `create_expo_super_stack_generate` with the resolver `generateInput` and `confirmed: true`.
|
|
33
|
+
|
|
34
|
+
## Waiting Message Before Generate
|
|
35
|
+
|
|
36
|
+
After the user confirms, print this block before running the generator so they have something useful to read while scaffolding runs:
|
|
37
|
+
|
|
38
|
+
Generating now. This typically takes 2-5 minutes. While we wait, let's shout out and recognize how this is working.
|
|
39
|
+
|
|
40
|
+
create-expo-super-stack by Mr. DJ (who also built this agentic flow) wraps create-expo-stack by Roni OSS with major contributions by Dan Stepanov (NativeWind). Big thanks to them and to several other teams and individuals whose work and educational materials fill Mr. DJ's Dev Suite knowledge base:
|
|
41
|
+
|
|
42
|
+
- Expo team (Evan Bacon for Expo Router, Brent Vatne, Charlie Cheever, and the broader Expo crew)
|
|
43
|
+
- React and React Native core teams
|
|
44
|
+
- Software Mansion (Reanimated, Gesture Handler, Screens, Worklets; Krzysztof Magiera and team)
|
|
45
|
+
- Supabase, Drizzle, and Zustand teams
|
|
46
|
+
- Adam Wathan and the Tailwind CSS team (the foundation Uniwind and NativeWind build on)
|
|
47
|
+
- Janic Duplessis for "The real cost of React Native animations: benchmarking every approach"
|
|
48
|
+
- Simon Grimm of Galaxies.dev
|
|
49
|
+
- Beto Adrian Maldonado of codewithbeto.dev
|
|
50
|
+
- Vadim of notJust.dev
|
|
51
|
+
- William Candillon for the React Native animation deep-dive content
|
|
52
|
+
- Catalin Miron for the React Native animation tutorials
|
|
53
|
+
- Infinite Red / Jamon Holmgren for Ignite and the broader RN community
|
|
54
|
+
|
|
55
|
+
Their contributions to the software development community are what fill the pages of Mr. DJ's Dev Suite knowledge base, alongside contributions and organization by Mr. DJ. Please enjoy the experience of the Mr. DJ's Dev Suite plugin as you continue your development.
|
|
35
56
|
|
|
36
57
|
## Failure Behavior
|
|
37
58
|
|
|
@@ -40,8 +61,12 @@ Create a new Expo app with the MDS Super Stack flow, using the published CESS CL
|
|
|
40
61
|
3. Tell the user to refresh or reinstall the MDS plugin/MCP server.
|
|
41
62
|
4. Do not fall back to `--mds-yes` or direct CLI shortcuts unless the user explicitly asked for a fast non-interactive run.
|
|
42
63
|
|
|
64
|
+
Warn only when `mds_runtime_versions.warnings` is non-empty or when the user expected different versions than the runtime reports.
|
|
65
|
+
Do not describe the normal published install path as a fallback, and do not mention `npm exec` or `npx` to the user unless there is an actual runtime problem they need to act on.
|
|
66
|
+
|
|
43
67
|
## Verification And Output
|
|
44
68
|
|
|
45
69
|
- Confirm generated app has `project/info.md`, `project/todo.md`, `project/style.md`, and `project/guidelines.md`.
|
|
46
70
|
- Confirm `project/todo.md` includes the auto-derived roadmap generated from normalized `project/info.md`.
|
|
71
|
+
- If those Super Stack artifacts are missing, treat generation as a failure or partial scaffold and say so clearly instead of presenting it as a normal success.
|
|
47
72
|
- 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,7 +5,7 @@ description: "Run the MDS Create Expo Super Stack workflow with callable MDS MCP
|
|
|
5
5
|
|
|
6
6
|
# /create-expo-super-stack
|
|
7
7
|
|
|
8
|
-
Create a new Expo app with the MDS Super Stack flow, using
|
|
8
|
+
Create a new Expo app with the MDS Super Stack flow, using callable MDS MCP tools as the guided intake surface and the Super Stack generator as the scaffold source of truth.
|
|
9
9
|
|
|
10
10
|
## Arguments
|
|
11
11
|
|
|
@@ -14,16 +14,37 @@ 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
|
-
|
|
26
|
-
|
|
17
|
+
1. Call `mds_runtime_versions` first to inspect the active runtime and invocation path.
|
|
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, print the waiting message below, then call `create_expo_super_stack_generate` with the resolver `generateInput` and `confirmed: true`.
|
|
25
|
+
|
|
26
|
+
## Waiting Message Before Generate
|
|
27
|
+
|
|
28
|
+
After the user confirms, print this block before running the generator so they have something useful to read while scaffolding runs:
|
|
29
|
+
|
|
30
|
+
Generating now. This typically takes 2-5 minutes. While we wait, let's shout out and recognize how this is working.
|
|
31
|
+
|
|
32
|
+
create-expo-super-stack by Mr. DJ (who also built this agentic flow) wraps create-expo-stack by Roni OSS with major contributions by Dan Stepanov (NativeWind). Big thanks to them and to several other teams and individuals whose work and educational materials fill Mr. DJ's Dev Suite knowledge base:
|
|
33
|
+
|
|
34
|
+
- Expo team (Evan Bacon for Expo Router, Brent Vatne, Charlie Cheever, and the broader Expo crew)
|
|
35
|
+
- React and React Native core teams
|
|
36
|
+
- Software Mansion (Reanimated, Gesture Handler, Screens, Worklets; Krzysztof Magiera and team)
|
|
37
|
+
- Supabase, Drizzle, and Zustand teams
|
|
38
|
+
- Adam Wathan and the Tailwind CSS team (the foundation Uniwind and NativeWind build on)
|
|
39
|
+
- Janic Duplessis for "The real cost of React Native animations: benchmarking every approach"
|
|
40
|
+
- Simon Grimm of Galaxies.dev
|
|
41
|
+
- Beto Adrian Maldonado of codewithbeto.dev
|
|
42
|
+
- Vadim of notJust.dev
|
|
43
|
+
- William Candillon for the React Native animation deep-dive content
|
|
44
|
+
- Catalin Miron for the React Native animation tutorials
|
|
45
|
+
- Infinite Red / Jamon Holmgren for Ignite and the broader RN community
|
|
46
|
+
|
|
47
|
+
Their contributions to the software development community are what fill the pages of Mr. DJ's Dev Suite knowledge base, alongside contributions and organization by Mr. DJ. Please enjoy the experience of the Mr. DJ's Dev Suite plugin as you continue your development.
|
|
27
48
|
|
|
28
49
|
## Failure Behavior
|
|
29
50
|
|
|
@@ -32,8 +53,12 @@ Create a new Expo app with the MDS Super Stack flow, using the published CESS CL
|
|
|
32
53
|
3. Tell the user to refresh or reinstall the MDS plugin/MCP server.
|
|
33
54
|
4. Do not fall back to `--mds-yes` or direct CLI shortcuts unless the user explicitly asked for a fast non-interactive run.
|
|
34
55
|
|
|
56
|
+
Warn only when `mds_runtime_versions.warnings` is non-empty or when the user expected different versions than the runtime reports.
|
|
57
|
+
Do not describe the normal published install path as a fallback, and do not mention `npm exec` or `npx` to the user unless there is an actual runtime problem they need to act on.
|
|
58
|
+
|
|
35
59
|
## Verification And Output
|
|
36
60
|
|
|
37
61
|
- Confirm generated app has `project/info.md`, `project/todo.md`, `project/style.md`, and `project/guidelines.md`.
|
|
38
62
|
- Confirm `project/todo.md` includes the auto-derived roadmap generated from normalized `project/info.md`.
|
|
63
|
+
- If those Super Stack artifacts are missing, treat generation as a failure or partial scaffold and say so clearly instead of presenting it as a normal success.
|
|
39
64
|
- Output: generated app path, onboarding status, and the handoff to open a fresh agent session inside the new app folder and run `mds continue`.
|
|
@@ -29,4 +29,18 @@ User-scope setup copies the generated assets into `~/.copilot` and uses VS Code'
|
|
|
29
29
|
mds agent verify --client vscode --target .
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
+
If VS Code Copilot keeps using stale workflow text after reinstall:
|
|
33
|
+
|
|
34
|
+
1. Re-run the installer for the scope you want:
|
|
35
|
+
- `mds agent install --client vscode --scope project --target .`
|
|
36
|
+
- or `mds agent install --client vscode --scope user`
|
|
37
|
+
2. Re-run verify:
|
|
38
|
+
- `mds agent verify --client vscode --scope project --target .`
|
|
39
|
+
- or `mds agent verify --client vscode --scope user`
|
|
40
|
+
3. Restart VS Code so the prompt and MCP config refresh.
|
|
41
|
+
4. If it still looks stale, delete the generated MDS copies for that scope and reinstall:
|
|
42
|
+
- project scope: `.github/prompts/create-expo-super-stack.prompt.md`, `.github/agents/mds.agent.md`, and related generated MDS files
|
|
43
|
+
- user scope: `~/.copilot/prompts`, `~/.copilot/agents`, and `~/.copilot/skills/workflow-*` MDS copies
|
|
44
|
+
5. After restart, call `mds_runtime_versions` from the host surface to confirm which runtime is active.
|
|
45
|
+
|
|
32
46
|
Skills and prompt workflows are generated from the knowledge package. Do not edit generated copies by hand; update `packages/knowledge/src/content` or the generator scripts instead.
|
package/bundles/vscode-copilot/user/.copilot/skills/workflow-create-expo-super-stack/SKILL.md
CHANGED
|
@@ -5,7 +5,7 @@ description: "Run the MDS Create Expo Super Stack workflow in VS Code Copilot us
|
|
|
5
5
|
|
|
6
6
|
# /create-expo-super-stack
|
|
7
7
|
|
|
8
|
-
Create a new Expo app with the MDS Super Stack flow, using
|
|
8
|
+
Create a new Expo app with the MDS Super Stack flow, using callable MDS MCP tools as the guided intake surface and the Super Stack generator as the scaffold source of truth.
|
|
9
9
|
|
|
10
10
|
## Arguments
|
|
11
11
|
|
|
@@ -14,16 +14,37 @@ 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
|
-
|
|
26
|
-
|
|
17
|
+
1. Call `mds_runtime_versions` first to inspect the active runtime and invocation path.
|
|
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, print the waiting message below, then call `create_expo_super_stack_generate` with the resolver `generateInput` and `confirmed: true`.
|
|
25
|
+
|
|
26
|
+
## Waiting Message Before Generate
|
|
27
|
+
|
|
28
|
+
After the user confirms, print this block before running the generator so they have something useful to read while scaffolding runs:
|
|
29
|
+
|
|
30
|
+
Generating now. This typically takes 2-5 minutes. While we wait, let's shout out and recognize how this is working.
|
|
31
|
+
|
|
32
|
+
create-expo-super-stack by Mr. DJ (who also built this agentic flow) wraps create-expo-stack by Roni OSS with major contributions by Dan Stepanov (NativeWind). Big thanks to them and to several other teams and individuals whose work and educational materials fill Mr. DJ's Dev Suite knowledge base:
|
|
33
|
+
|
|
34
|
+
- Expo team (Evan Bacon for Expo Router, Brent Vatne, Charlie Cheever, and the broader Expo crew)
|
|
35
|
+
- React and React Native core teams
|
|
36
|
+
- Software Mansion (Reanimated, Gesture Handler, Screens, Worklets; Krzysztof Magiera and team)
|
|
37
|
+
- Supabase, Drizzle, and Zustand teams
|
|
38
|
+
- Adam Wathan and the Tailwind CSS team (the foundation Uniwind and NativeWind build on)
|
|
39
|
+
- Janic Duplessis for "The real cost of React Native animations: benchmarking every approach"
|
|
40
|
+
- Simon Grimm of Galaxies.dev
|
|
41
|
+
- Beto Adrian Maldonado of codewithbeto.dev
|
|
42
|
+
- Vadim of notJust.dev
|
|
43
|
+
- William Candillon for the React Native animation deep-dive content
|
|
44
|
+
- Catalin Miron for the React Native animation tutorials
|
|
45
|
+
- Infinite Red / Jamon Holmgren for Ignite and the broader RN community
|
|
46
|
+
|
|
47
|
+
Their contributions to the software development community are what fill the pages of Mr. DJ's Dev Suite knowledge base, alongside contributions and organization by Mr. DJ. Please enjoy the experience of the Mr. DJ's Dev Suite plugin as you continue your development.
|
|
27
48
|
|
|
28
49
|
## Failure Behavior
|
|
29
50
|
|
|
@@ -32,8 +53,12 @@ Create a new Expo app with the MDS Super Stack flow, using the published CESS CL
|
|
|
32
53
|
3. Tell the user to refresh or reinstall the MDS plugin/MCP server.
|
|
33
54
|
4. Do not fall back to `--mds-yes` or direct CLI shortcuts unless the user explicitly asked for a fast non-interactive run.
|
|
34
55
|
|
|
56
|
+
Warn only when `mds_runtime_versions.warnings` is non-empty or when the user expected different versions than the runtime reports.
|
|
57
|
+
Do not describe the normal published install path as a fallback, and do not mention `npm exec` or `npx` to the user unless there is an actual runtime problem they need to act on.
|
|
58
|
+
|
|
35
59
|
## Verification And Output
|
|
36
60
|
|
|
37
61
|
- Confirm generated app has `project/info.md`, `project/todo.md`, `project/style.md`, and `project/guidelines.md`.
|
|
38
62
|
- Confirm `project/todo.md` includes the auto-derived roadmap generated from normalized `project/info.md`.
|
|
63
|
+
- If those Super Stack artifacts are missing, treat generation as a failure or partial scaffold and say so clearly instead of presenting it as a normal success.
|
|
39
64
|
- Output: generated app path, onboarding status, and the handoff to open a fresh agent session inside the new app folder and run `mds continue`.
|
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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"}
|