@mr.dj2u/knowledge 0.1.1 → 0.1.2

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 (28) hide show
  1. package/dist/content/checklists/{ship-test-loop.md → push-merge-loop.md} +2 -1
  2. package/dist/content/checklists/unified-agent-bundle-validation.md +3 -2
  3. package/dist/content/examples/{ship-test-loop.md → push-merge-loop.md} +3 -2
  4. package/dist/content/guides/post-create-onboarding.md +62 -20
  5. package/dist/content/patterns/project/configuration-patterns.md +4 -4
  6. package/dist/content/patterns/project/documentation-org.md +15 -15
  7. package/dist/content/patterns/project/monorepo-structure.md +1 -1
  8. package/dist/content/prompts/continue-development.md +9 -1
  9. package/dist/content/prompts/create-expo-super-stack.md +31 -29
  10. package/dist/content/prompts/fix-seo.md +1 -1
  11. package/dist/content/prompts/prepare-deploy.md +1 -1
  12. package/dist/content/prompts/project-research-plan.md +1 -1
  13. package/dist/content/prompts/{ship-test-loop.md → push-merge-loop.md} +2 -1
  14. package/dist/content/prompts/review-expo-project.md +1 -1
  15. package/dist/content/prompts/run-doctor.md +9 -1
  16. package/dist/content/prompts/wrap-up.md +67 -0
  17. package/dist/content/reference/create-expo-stack-uniwind.md +29 -29
  18. package/dist/content/reference/mcp-sdk-transport.md +30 -30
  19. package/dist/content/resource-index.json +4 -3
  20. package/dist/content/skills/dev-server-management.md +1 -1
  21. package/dist/content/skills/plugin-creation.md +1 -1
  22. package/dist/content/skills/super-stack-startup.md +4 -1
  23. package/dist/index.js +9 -9
  24. package/dist/index.js.map +1 -1
  25. package/dist/prompts/index.d.ts.map +1 -1
  26. package/dist/prompts/index.js +36 -10
  27. package/dist/prompts/index.js.map +1 -1
  28. package/package.json +55 -51
@@ -1,4 +1,4 @@
1
- # Ship-Test Loop Checklist
1
+ # Push-Merge Loop Checklist
2
2
 
3
3
  Use this checklist when running the PR loop into `test`.
4
4
 
@@ -14,3 +14,4 @@ Use this checklist when running the PR loop into `test`.
14
14
  10. Push and poll again.
15
15
  11. Repeat up to 5 cycles.
16
16
  12. Merge only when checks are green and blockers are cleared.
17
+
@@ -1,8 +1,9 @@
1
- # Unified Agent Bundle Validation Checklist
1
+ # Unified Agent Bundle Validation Checklist
2
2
 
3
3
  Phase 9 validation artifact intent:
4
4
 
5
5
  1. Run Doctor (`--ci`) through the agent.
6
6
  2. Fetch one guide via MCP resource (`animation-performance`).
7
- 3. Execute one CLI workflow (`mds continue` or `/ship-test-loop`).
7
+ 3. Execute one CLI workflow (`mds continue` or `/push-merge-loop`).
8
8
  4. Confirm tools/resources are visible in the target client.
9
+
@@ -1,6 +1,6 @@
1
- # Ship-Test Loop Example
1
+ # Push-Merge Loop Example
2
2
 
3
- Example iteration log for `/ship-test-loop`:
3
+ Example iteration log for `/push-merge-loop`:
4
4
 
5
5
  - Iteration 1:
6
6
  - Failed: `lint` and one requested review change.
@@ -11,3 +11,4 @@ Example iteration log for `/ship-test-loop`:
11
11
  - Fixes: update stale skill ID expectation.
12
12
  - Result: all checks green.
13
13
  - Merge: PR merged into `test`.
14
+
@@ -19,14 +19,14 @@ onboarding pass.
19
19
  Uniwind repair for existing apps, Software Mansion core examples, Supabase or
20
20
  local data guidance, MCP/Codex/Claude instructions, and CI/release safeguards.
21
21
  6. Scaffold only selected pieces.
22
- 7. Add generated cleanup scripts such as `clear-expo-start` and `free-port` (with `kill-port` compatibility alias).
22
+ 7. Add generated cleanup scripts such as `clear-expo-start` and `free-port`.
23
23
  8. Install added dependencies, run `expo install --fix`, install known missing
24
24
  Expo peers such as `expo-font` for `@expo/vector-icons`, then run Doctor.
25
25
 
26
26
  ## Agentic Onboarding (MCP)
27
27
 
28
28
  The terminal `mds onboard` command writes the project memory files. The
29
- agentic version is a conversation with Claude Code, Codex, or Cursor that
29
+ agentic version is a conversation with Copilot, Claude Code, Codex, or Cursor that
30
30
  fills those files in collaboratively.
31
31
 
32
32
  Install **once, globally** (user scope, default) so every workspace gets
@@ -42,16 +42,17 @@ mds mcp install --dry-run # preview merge before writing
42
42
  Restart the host (or run `claude mcp reload`) and the MDS prompts are
43
43
  available from any workspace.
44
44
 
45
- Two prompts ship with the server:
46
-
47
- - `create_expo_super_stack` — invoke from a **parent folder** (e.g.
48
- `F:\ReactNativeApps`) when the app folder does not exist yet. The
49
- agent confirms platforms, styling, data start, etc., then runs
50
- `create-expo-super-stack`, verifies the generated app folder, and
51
- offers to resolve TodoForContext markers.
52
- - `onboard_new_expo_app` — invoke from **inside an existing Expo app
53
- folder** (a freshly generated one or a year-old project). Runs the
54
- intake normalize plan scaffold flow.
45
+ Two prompts and several callable MDS MCP tools ship with the server:
46
+
47
+ - `create_expo_super_stack` — invoke from a **parent folder** (e.g.
48
+ `F:\ReactNativeApps`) when the app folder does not exist yet. This is
49
+ now a thin orchestration prompt: the real guided intake happens
50
+ through `create_expo_super_stack_intake_step`, generation happens
51
+ through `create_expo_super_stack_generate`, and diagnostics come from
52
+ `mds_runtime_versions`.
53
+ - `onboard_new_expo_app` invoke from **inside an existing Expo app
54
+ folder** (a freshly generated one or a year-old project). Runs the
55
+ intake → normalize → plan → scaffold flow.
55
56
 
56
57
  After generation, the user-dev should open the generated app folder
57
58
  directly in a new agent session and run `mds continue`. That fresh
@@ -68,7 +69,7 @@ delete the marker line.
68
69
  error so the same blocker stops CI and editor surfaces until the user
69
70
  fills the section or deletes the marker line.
70
71
 
71
- ### What's new in the agentic prompts
72
+ ### What's new in the agentic prompts and tools
72
73
 
73
74
  - **PHASE 0 file intake.** The agent offers to digest an existing
74
75
  `project/info.md` and `project/style.md` if the user has them already.
@@ -81,13 +82,20 @@ fills the section or deletes the marker line.
81
82
  with leanback config in `app.json`; Apple TV is a separate tvOS build
82
83
  target via `react-native-tvos`. Selecting either records the intent
83
84
  in project memory.
84
- - **Embedded flag map.** Both prompts now include the exact
85
- create-expo-stack and `--mds-*` flag map so the agent does not have
86
- to grep `node_modules` or scan source to translate answers into a
87
- command. This was the biggest source of slowness in early test runs.
88
- - **Credits while waiting.** When generation kicks off, the agent
89
- prints a recognition note for the upstream teams and individuals
90
- whose work fills the MDS knowledge base.
85
+ - **Shared CLI-backed intake contract.** The agentic CESS flow now uses
86
+ callable MCP tools backed by the shared `@mr.dj2u/cli` intake
87
+ contract. That keeps the questionnaire, defaults, dependency rules,
88
+ and flag mapping aligned with the published CLI behavior.
89
+ - **No silent defaults.** Guided intake must explicitly collect answers
90
+ or explicitly present visible defaults. If the CESS intake tools are
91
+ unavailable, the agent should stop and tell the user to refresh the
92
+ plugin or MCP install instead of inventing `--mds-yes` defaults.
93
+ - **Runtime version diagnostics.** `mds_runtime_versions` reports the
94
+ active MCP server version, CLI version, and the published
95
+ `create-expo-super-stack@latest` generation path in use.
96
+ - **Credits while waiting.** When generation kicks off, the agent
97
+ prints a recognition note for the upstream teams and individuals
98
+ whose work fills the MDS knowledge base.
91
99
  - **Success message surfaced.** After a successful run, the agent
92
100
  quotes the generator's `MDS onboarding complete` tail block back
93
101
  verbatim so the Mr. DJ personal thank-you text appears in chat the same way
@@ -111,3 +119,37 @@ fills the section or deletes the marker line.
111
119
  `project/guidelines.md`.
112
120
  - Treat monorepo-aware scaffolding as a future step after the single-app MVP is
113
121
  stable.
122
+
123
+ ## VS Code & GitHub Copilot Integration
124
+
125
+ This guide is authored as canonical knowledge consumed by agent bundles; it is not the agent itself. To enable the generated Copilot/VS Code surface and the custom MDS agent in a workspace, regenerate the VS Code bundle and install the generated prompts/settings into the target repository or your user profile.
126
+
127
+ - Regenerate VS Code assets (from repository root):
128
+
129
+ ```powershell
130
+ pnpm --filter @mr.dj2u/knowledge build:vscode
131
+ ```
132
+
133
+ - Copy the generated workspace assets into your project (PowerShell):
134
+
135
+ ```powershell
136
+ Copy-Item -Path .\plugins\vscode-copilot\.github\* -Destination . -Recurse -Force
137
+ Copy-Item -Path .\plugins\vscode-copilot\.vscode\* -Destination .\.vscode -Recurse -Force
138
+ ```
139
+
140
+ - Then restart VS Code. Ensure the `GitHub Copilot Chat` extension is installed and enabled. The generated `.vscode/settings.json` enables agent skill locations and prompt file lookup under `.github/prompts`.
141
+
142
+ - If you prefer user-scope installs, copy the `user/.copilot` content into your user profile per the extension docs, or run `mds agent install --client codex --scope user` (if available) to automate the merge.
143
+
144
+ ## Install Path & What This MD Is For
145
+
146
+ - This markdown is a human- and agent-facing guide. It documents the onboarding flow and explains what the agent prompts do. It is used as input to the `packages/knowledge` build which generates plugin/agent bundles for Codex, Claude Code, and VS Code Copilot.
147
+ - The agent itself is not this file — it is a runtime that loads generated prompts/skills from the plugin bundles or the MCP server. To activate the agent surfaces you must either:
148
+ - Install the MCP prompts via `mds mcp install --client <client>` (user or project scope), or
149
+ - Copy the generated plugin files from `plugins/vscode-copilot` / `plugins/codex` / `plugins/claude-code` into the target workspace or user profile and restart the corresponding client.
150
+ - If a host keeps using stale prompt or plugin behavior after republish,
151
+ refresh the local plugin cache, reinstall the MDS MCP server, and run
152
+ `mds_runtime_versions` from the host surface to confirm which version
153
+ is actually active.
154
+
155
+ If you want, I can: regenerate the VS Code bundle now, copy the assets into the current workspace, and verify Copilot sees the prompts. Say "Do it" and I'll run the build and copy steps for you.
@@ -51,8 +51,8 @@ Configuration patterns establish consistent strategies for managing app configur
51
51
 
52
52
  "platforms": ["ios", "android", "web"],
53
53
 
54
- "sdkVersion": "55.0.0",
55
- "runtimeVersion": "55.0.0",
54
+ "sdkVersion": "56.0.0",
55
+ "runtimeVersion": "56.0.0",
56
56
 
57
57
  "web": {
58
58
  "output": "static",
@@ -178,7 +178,7 @@ export default ({ config }) => {
178
178
  "dependencies": {
179
179
  "react": "^19.0.0",
180
180
  "react-native": "^0.83.0",
181
- "expo": "^55.0.0",
181
+ "expo": "^56.0.0",
182
182
  "expo-router": "^3.0.0",
183
183
  "zustand": "^4.4.0",
184
184
  "drizzle-orm": "^0.30.0",
@@ -456,4 +456,4 @@ export function useConfig() {
456
456
  ---
457
457
 
458
458
  *Pattern extracted from production repositories: DJsPortfolio, time2pay, not-hot-dog*
459
- *Examples: app.json, app.config.js, metro.config.js, babel.config.js, tsconfig.json*
459
+ *Examples: app.json, app.config.js, metro.config.js, babel.config.js, tsconfig.json*
@@ -2,19 +2,19 @@
2
2
 
3
3
  ## Description
4
4
 
5
- Documentation organization establishes consistent structure for project metadata, guides, and architectural decisions. This pattern uses structured markdown files in dedicated `project/` directories alongside inline code documentation to keep knowledge accessible and maintainable.
6
-
7
- ## MDS Project Memory Update
8
-
9
- New MDS onboarding uses four project memory files:
10
-
11
- - `project/info.md` for product intent and context.
12
- - `project/todo.md` for roadmap and next work.
13
- - `project/style.md` for visual/design direction only.
14
- - `project/guidelines.md` for technical rules, agent behavior, workflow, and architecture.
15
-
16
- Generated agent instructions should treat the `project/` folder as the source of
17
- truth and should not make changes that conflict with those files.
5
+ Documentation organization establishes consistent structure for project metadata, guides, and architectural decisions. This pattern uses structured markdown files in dedicated `project/` directories alongside inline code documentation to keep knowledge accessible and maintainable.
6
+
7
+ ## MDS Project Memory Update
8
+
9
+ New MDS onboarding uses four project memory files:
10
+
11
+ - `project/info.md` for product intent and context.
12
+ - `project/todo.md` for roadmap and next work.
13
+ - `project/style.md` for visual/design direction only.
14
+ - `project/guidelines.md` for technical rules, agent behavior, workflow, and architecture.
15
+
16
+ Generated agent instructions should treat the `project/` folder as the source of
17
+ truth and should not make changes that conflict with those files.
18
18
 
19
19
  ## When to Use
20
20
 
@@ -66,7 +66,7 @@ truth and should not make changes that conflict with those files.
66
66
  Personal portfolio and project showcase for David J Grimsley.
67
67
 
68
68
  ## Core Stack
69
- - **Framework**: Expo SDK 55 + React Native 0.83
69
+ - **Framework**: Expo SDK 56 + React Native 0.85
70
70
  - **Routing**: Expo Router (file-based)
71
71
  - **Styling**: Uniwind v1.2.6 + Tailwind v4
72
72
  - **State**: Zustand (atomic stores)
@@ -503,4 +503,4 @@ pnpm typecheck # Check types
503
503
  ---
504
504
 
505
505
  *Pattern extracted from production repositories: DJsPortfolio, not-hot-dog*
506
- *Examples: project/info.md, project/style.md, copilot-instructions.md*
506
+ *Examples: project/info.md, project/style.md, copilot-instructions.md*
@@ -179,7 +179,7 @@ ignore:
179
179
 
180
180
  "react": "^19.0.0",
181
181
  "react-native": "^0.83.0",
182
- "expo": "^55.0.0",
182
+ "expo": "^56.0.0",
183
183
  "expo-router": "^3.0.0",
184
184
  "zustand": "^4.4.0"
185
185
  },
@@ -13,13 +13,21 @@ Resume work on an onboarded project by following MDS phase order from `project/t
13
13
  3. Pull `get_skill` for `continue-development` to enforce phase-first sequencing.
14
14
  4. If blockers appear, use `doctor_scan_project` and `doctor_explain_result` for targeted remediation before feature work.
15
15
 
16
+ ## MDS Routing Guardrails
17
+
18
+ - Treat a request to continue development with MDS as a request for the MDS MCP tool and phase rules first.
19
+ - Do not jump directly into app edits until `continue_project` or the CLI fallback has identified the active phase and blockers.
20
+ - Never invoke `@mrdj/cli`; that package name is wrong. The published CLI package is `@mr.dj2u/cli` and its executable is `mds`.
21
+
16
22
  ## CLI / Manual Fallback
17
23
 
18
24
  1. If MCP is not configured, install it manually:
19
- - `mds mcp install --client codex --scope project`
25
+ - `mds mcp install --client <client> --scope project`
20
26
  2. Direct CLI flow:
21
27
  - `mds continue <projectPath>`
22
28
  - `mds doctor <projectPath>` when blockers are unclear.
29
+ 3. If `mds` is not on PATH, invoke the published CLI by binary name:
30
+ - `npx -y -p @mr.dj2u/cli@latest mds continue <projectPath>`
23
31
 
24
32
  ## Verification And Output
25
33
 
@@ -1,29 +1,31 @@
1
- # /create-expo-super-stack
2
-
3
- Create a new Expo app with the MDS Super Stack flow, then hand off to phase-based continuation.
4
-
5
- ## Arguments
6
-
7
- - `parentDir`: folder where the new app directory should be created.
8
- - `appName`: app folder name.
9
-
10
- ## MCP-First Workflow
11
-
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.
14
- 3. Follow the prompt intake flow and keep one question per turn until generation completes.
15
- 4. After generation, move into the new app folder and invoke `continue_project` (or prompt `continue_mds_project`) for the first implementation session.
16
-
17
- ## CLI / Manual Fallback
18
-
19
- 1. If MCP is not configured, install it manually:
20
- - `mds mcp install --client codex --scope project`
21
- 2. Direct CLI generation:
22
- - `npx -y create-expo-super-stack <appName>`
23
- 3. Then onboard/continue from inside the generated app:
24
- - `mds continue <new-app-path>`
25
-
26
- ## Verification And Output
27
-
28
- - Confirm generated app has `project/info.md`, `project/todo.md`, `project/style.md`, and `project/guidelines.md`.
29
- - Output: generated app path, onboarding status, and immediate next command.
1
+ # /create-expo-super-stack
2
+
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
+
5
+ ## Arguments
6
+
7
+ - `parentDir`: folder where the new app directory should be created.
8
+ - `appName`: app folder name.
9
+
10
+ ## Required MDS MCP Tool Flow
11
+
12
+ 1. Confirm the `mr-djs-dev-suite` MCP server is available.
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`.
20
+
21
+ ## Failure Behavior
22
+
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.
27
+
28
+ ## Verification And Output
29
+
30
+ - Confirm generated app has `project/info.md`, `project/todo.md`, `project/style.md`, and `project/guidelines.md`.
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`.
@@ -18,7 +18,7 @@ Apply SEO metadata fixes for Expo web routes with MCP guidance and post-fix veri
18
18
  ## CLI / Manual Fallback
19
19
 
20
20
  1. If MCP is not configured, install it manually:
21
- - `mds mcp install --client codex --scope project`
21
+ - `mds mcp install --client <client> --scope project`
22
22
  2. Direct CLI checks:
23
23
  - `mds doctor <projectPath> --ci`
24
24
  - Run project-specific web build/preview commands to verify metadata output.
@@ -18,7 +18,7 @@ Prepare an Expo project for release using deployment-focused skills plus Doctor
18
18
  ## CLI / Manual Fallback
19
19
 
20
20
  1. If MCP is not configured, install it manually:
21
- - `mds mcp install --client codex --scope project`
21
+ - `mds mcp install --client <client> --scope project`
22
22
  2. Direct CLI path:
23
23
  - `mds doctor <projectPath> --ci`
24
24
  - Run project scripts: `lint`, `type-check`, `test`, and production build/profile scripts.
@@ -18,7 +18,7 @@ Turn rough product notes/research into actionable MDS project memory and next-ph
18
18
  ## CLI / Manual Fallback
19
19
 
20
20
  1. If MCP is not configured, install it manually:
21
- - `mds mcp install --client codex --scope project`
21
+ - `mds mcp install --client <client> --scope project`
22
22
  2. Direct CLI fallback:
23
23
  - Use `mds onboard <projectPath>` for structured intake when memory files are missing.
24
24
  - Use `mds continue <projectPath>` after memory normalization to select the next task.
@@ -1,4 +1,4 @@
1
- # /ship-test-loop
1
+ # /push-merge-loop
2
2
 
3
3
  Execute the short PR iteration loop for the test branch with strict quality gates.
4
4
 
@@ -22,3 +22,4 @@ Push intentional changes with a meaningful commit message, open/update a PR to `
22
22
  - Do not skip Doctor between fix cycles.
23
23
  - Keep a concise changelog per iteration: what failed, what was changed, what passed.
24
24
  - If still failing after 5 cycles, stop and summarize remaining blockers with concrete next actions.
25
+
@@ -18,7 +18,7 @@ Review an Expo project with MCP-first diagnostics and skill-guided remediation.
18
18
  ## CLI / Manual Fallback
19
19
 
20
20
  1. If MCP is not configured, install it manually:
21
- - `mds mcp install --client codex --scope project`
21
+ - `mds mcp install --client <client> --scope project`
22
22
  2. If MCP still cannot run, use direct CLI flows:
23
23
  - `mds continue <projectPath>`
24
24
  - `mds doctor <projectPath> --ci`
@@ -15,14 +15,22 @@ Run MDS Doctor as the primary health check for an Expo project.
15
15
  3. For each non-pass result, call `doctor_explain_result`.
16
16
  4. Pull targeted implementation guidance with `get_skill` (typically `deployment`, `debugging`, or `dev-server-management`).
17
17
 
18
+ ## MDS Routing Guardrails
19
+
20
+ - Treat a request to run MDS Doctor as a request for the MDS MCP tool, not as a request to run app-local npm scripts.
21
+ - Do not run `npm run mds:doctor`, `npm run doctor`, or other project package scripts as the MDS Doctor path unless the user explicitly asks for app scripts.
22
+ - Never invoke `@mrdj/cli`; that package name is wrong. The published CLI package is `@mr.dj2u/cli` and its executable is `mds`.
23
+
18
24
  ## CLI / Manual Fallback
19
25
 
20
26
  1. If MCP is not configured, install it manually:
21
- - `mds mcp install --client codex --scope project`
27
+ - `mds mcp install --client <client> --scope project`
22
28
  2. Direct CLI alternatives:
23
29
  - `mds doctor <projectPath>`
24
30
  - `mds doctor <projectPath> --ci`
25
31
  - `mds doctor <projectPath> --json`
32
+ 3. If `mds` is not on PATH, invoke the published CLI by binary name:
33
+ - `npx -y -p @mr.dj2u/cli@latest mds doctor <projectPath> --ci`
26
34
 
27
35
  ## Verification And Output
28
36
 
@@ -0,0 +1,67 @@
1
+ # /wrap-up
2
+
3
+ Run the post-testing release wrap-up flow: final local checks, git inclusion confirmation, PR loop, and merge handling.
4
+
5
+ ## Goal
6
+
7
+ When the developer says testing is complete, finish the handoff safely by:
8
+
9
+ 1. Marking completed todo items.
10
+ 2. Running `mds doctor --ci`.
11
+ 3. Reviewing `git status` and confirming intentionally excluded files.
12
+ 4. Running the publish/PR/check loop.
13
+ 5. Handling merge according to policy defaults and repo overrides.
14
+
15
+ ## Required Flow Order
16
+
17
+ 1. Update `project/todo.md` only for tasks clearly completed in this session.
18
+ 2. Run `mds doctor --ci` before any git mutation.
19
+ 3. Review `git status --short` and list changed files.
20
+ 4. Confirm any intentionally omitted files with the developer before staging.
21
+ 5. Publish through GitHub flow (branch push + PR).
22
+ 6. Poll checks and unresolved feedback.
23
+ 7. Fix failures locally, rerun Doctor, push updates, and poll again.
24
+ 8. Repeat up to 5 cycles total.
25
+
26
+ ## GitHub Skill Routing
27
+
28
+ Use GitHub workflows in this order when available:
29
+
30
+ 1. `github` for repo/PR context and routing.
31
+ 2. `yeet` for commit/push/open-or-update PR flow.
32
+ 3. `gh-fix-ci` for failed checks/log inspection and CI-driven fix loops.
33
+ 4. `gh-address-comments` when unresolved review threads are blocking merge.
34
+
35
+ ## Merge Policy
36
+
37
+ Evaluate policy in this order:
38
+
39
+ 1. Explicit user instruction in the current session.
40
+ 2. Optional repo config at `project/release-policy.json`.
41
+ 3. Defaults if config is absent.
42
+
43
+ Supported repo config shape:
44
+
45
+ ```json
46
+ {
47
+ "wrapUp": {
48
+ "autoMergeTest": true,
49
+ "autoMergeMain": false
50
+ }
51
+ }
52
+ ```
53
+
54
+ Default behavior:
55
+
56
+ - Auto-merge to `test`: enabled.
57
+ - Per-repo override: allowed.
58
+ - Auto-merge to `main`: never allowed.
59
+
60
+ If the workflow targets `main` directly (no `test` branch flow), stop before merge and tell the developer to merge manually.
61
+
62
+ ## Guardrails
63
+
64
+ - Never auto-merge to `main`.
65
+ - Do not skip `mds doctor --ci` between fix cycles.
66
+ - Do not assume omitted files are intentional; confirm them.
67
+ - If checks or blocking threads still fail after 5 cycles, stop and request human help with a concise blocker summary.
@@ -1,29 +1,29 @@
1
- # create-expo-stack Uniwind Exploration
2
-
3
- Source: https://github.com/roninoss/create-expo-stack
4
-
5
- ## Findings
6
-
7
- - The project describes itself as an interactive CLI for `rn-new`.
8
- - It already supports multiple styling choices, including NativeWind,
9
- Unistyles, StyleSheets, and Tamagui.
10
- - The README describes a per-file template model: base files live in a base
11
- template folder, while optional package features live in package template
12
- folders and use EJS to patch shared files.
13
-
14
- ## Phase 1 Decision
15
-
16
- A friendly upstream Uniwind contribution should stay small:
17
-
18
- - add Uniwind as another styling option,
19
- - follow the existing package-slice template convention,
20
- - include `web` in Expo Router generated `app.json` platforms when web config
21
- and dependencies are generated,
22
- - add focused Software Mansion core package options where they are not already
23
- covered,
24
- - avoid MDS project memory files, MCP config, agent prompts, or richer
25
- boilerplate,
26
- - keep the deeper post-create setup in `mds onboard` and
27
- `create-expo-super-stack`.
28
-
29
- No local Phase 1 code should depend on the upstream fork or PR existing.
1
+ # create-expo-stack Uniwind Exploration
2
+
3
+ Source: https://github.com/roninoss/create-expo-stack
4
+
5
+ ## Findings
6
+
7
+ - The project describes itself as an interactive CLI for `rn-new`.
8
+ - It already supports multiple styling choices, including NativeWind,
9
+ Unistyles, StyleSheets, and Tamagui.
10
+ - The README describes a per-file template model: base files live in a base
11
+ template folder, while optional package features live in package template
12
+ folders and use EJS to patch shared files.
13
+
14
+ ## Phase 1 Decision
15
+
16
+ A friendly upstream Uniwind contribution should stay small:
17
+
18
+ - add Uniwind as another styling option,
19
+ - follow the existing package-slice template convention,
20
+ - include `web` in Expo Router generated `app.json` platforms when web config
21
+ and dependencies are generated,
22
+ - add focused Software Mansion core package options where they are not already
23
+ covered,
24
+ - avoid MDS project memory files, MCP config, agent prompts, or richer
25
+ boilerplate,
26
+ - keep the deeper post-create setup in `mds onboard` and
27
+ `create-expo-super-stack`.
28
+
29
+ No local Phase 1 code should depend on the upstream fork or PR existing.
@@ -1,30 +1,30 @@
1
- # MCP SDK Transport Pattern
2
-
3
- Source pattern: `mds-app-mcp/src/index.ts`.
4
-
5
- ## Core Shape
6
-
7
- - Create a high-level `McpServer` from `@modelcontextprotocol/sdk/server/mcp.js`.
8
- - Register static markdown resources with stable `mds://` URIs.
9
- - Register tools with schemas and handlers that return MCP text content.
10
- - Register prompts for reusable agent workflows.
11
- - Connect with `StdioServerTransport` for local agent use.
12
- - Keep HTTP/SSE transport as a later hosting concern unless a client needs it.
13
-
14
- ## MDS Suite Decision
15
-
16
- Phase 1 uses stdio as the production MCP transport because it works for local
17
- Codex/Claude workflows and avoids server lifecycle complexity. The server
18
- still exposes pure functions for tests and direct CLI verification:
19
-
20
- - `createMrdjMcpServer()`
21
- - `startStdioServer()`
22
- - `listResources()`
23
- - `readResource(uri)`
24
- - `executeTool(name, input)`
25
-
26
- ## Resource Rule
27
-
28
- MCP resources must be generated from `packages/knowledge`, not hand-copied into
29
- `packages/mcp-server`.
30
-
1
+ # MCP SDK Transport Pattern
2
+
3
+ Source pattern: `mds-app-mcp/src/index.ts`.
4
+
5
+ ## Core Shape
6
+
7
+ - Create a high-level `McpServer` from `@modelcontextprotocol/sdk/server/mcp.js`.
8
+ - Register static markdown resources with stable `mds://` URIs.
9
+ - Register tools with schemas and handlers that return MCP text content.
10
+ - Register prompts for reusable agent workflows.
11
+ - Connect with `StdioServerTransport` for local agent use.
12
+ - Keep HTTP/SSE transport as a later hosting concern unless a client needs it.
13
+
14
+ ## MDS Suite Decision
15
+
16
+ Phase 1 uses stdio as the production MCP transport because it works for local
17
+ Codex/Claude workflows and avoids server lifecycle complexity. The server
18
+ still exposes pure functions for tests and direct CLI verification:
19
+
20
+ - `createMrdjMcpServer()`
21
+ - `startStdioServer()`
22
+ - `listResources()`
23
+ - `readResource(uri)`
24
+ - `executeTool(name, input)`
25
+
26
+ ## Resource Rule
27
+
28
+ MCP resources must be generated from `packages/knowledge`, not hand-copied into
29
+ `packages/mcp-server`.
30
+
@@ -1,7 +1,7 @@
1
1
  [
2
- "checklists/ship-test-loop.md",
2
+ "checklists/push-merge-loop.md",
3
3
  "checklists/unified-agent-bundle-validation.md",
4
- "examples/ship-test-loop.md",
4
+ "examples/push-merge-loop.md",
5
5
  "examples/unified-agent-bundle-bootstrap.md",
6
6
  "guides/animation-performance.md",
7
7
  "guides/post-create-onboarding.md",
@@ -37,9 +37,10 @@
37
37
  "prompts/onboard-new-expo-app.md",
38
38
  "prompts/prepare-deploy.md",
39
39
  "prompts/project-research-plan.md",
40
+ "prompts/push-merge-loop.md",
40
41
  "prompts/review-expo-project.md",
41
42
  "prompts/run-doctor.md",
42
- "prompts/ship-test-loop.md",
43
+ "prompts/wrap-up.md",
43
44
  "reference/create-expo-stack-uniwind.md",
44
45
  "reference/doctor-dogfood.md",
45
46
  "reference/mcp-sdk-transport.md",
@@ -9,7 +9,7 @@ Use a deterministic reset path first; do not work around unstable server state w
9
9
  ## Checks
10
10
 
11
11
  - Run `mds clear-expo-start` before manual troubleshooting.
12
- - If a conflict remains, run `mds free-port <port...>` (or legacy `mds kill-port`) for blocked ports.
12
+ - If a conflict remains, run `mds free-port <port...>` for blocked ports.
13
13
  - Confirm Expo/Metro caches are cleared before retrying startup.
14
14
  - Treat fallback to port `8082` as an unresolved state that requires full reset.
15
15
  - Confirm the same recovery scripts are available to teammates and automation.
@@ -37,5 +37,5 @@ plugins/<client-name>/
37
37
  ## Agent behavior
38
38
 
39
39
  - Prefer extending canonical knowledge specs over patching generated plugin files.
40
- - Keep command prompts action-oriented and MCP-first with clear fallback paths.
40
+ - Keep command prompts action-oriented and generated from canonical prompt specs, with clear fallback paths.
41
41
  - Delegate framework guidance to Expo-owned skills/docs when available; layer MDS project-memory and workflow guidance on top.
@@ -4,13 +4,14 @@ Use when kicking off a new app with `create-expo-super-stack` and transitioning
4
4
 
5
5
  ## Main rule
6
6
 
7
- Run generator + onboarding as one guided flow, then hand off to a fresh app-folder session for implementation.
7
+ Run generator + onboarding as one guided flow, keep agent-facing wording sourced from `packages/knowledge`, and let the current CLI implementation remain the execution source of truth.
8
8
 
9
9
  ## Checks
10
10
 
11
11
  - Confirm command runs from a parent directory where the app folder does not already exist.
12
12
  - Confirm stack choices and MDS intake values are captured before generation.
13
13
  - Confirm generated app includes project memory and onboarding next-step output.
14
+ - Confirm prompt and skill text stay thin and defer detailed behavior to the canonical knowledge package.
14
15
  - Confirm unresolved context markers are resolved before coding begins.
15
16
  - Confirm follow-up uses `mds continue` from inside the generated app folder.
16
17
 
@@ -19,6 +20,7 @@ Run generator + onboarding as one guided flow, then hand off to a fresh app-fold
19
20
  - Keep startup conversation in plain language and summarize choices before execution.
20
21
  - Keep generation details in scripts/flags, but keep user-facing flow conversational.
21
22
  - Keep post-generation workflow phase-based using the generated `project/todo.md`.
23
+ - Prefer shared knowledge content over duplicating long onboarding prose in plugin or MCP wrappers.
22
24
 
23
25
  ## Example fix
24
26
 
@@ -29,3 +31,4 @@ Run generator + onboarding as one guided flow, then hand off to a fresh app-fold
29
31
 
30
32
  - Prevent ambiguous execution context and confirm folder target before running generation.
31
33
  - Delegate framework/template primitives to upstream Expo tooling, then apply MDS memory shaping, defaults, and continue-workflow conventions.
34
+ - Update `packages/knowledge` first when the wording or flow changes, then regenerate downstream surfaces from it.
package/dist/index.js CHANGED
@@ -134,7 +134,7 @@ const SKILL_RESOURCES = [
134
134
  {
135
135
  id: 'super-stack-startup',
136
136
  name: 'Super Stack Startup Skill',
137
- description: 'Instructions for running create-expo-super-stack and handing off to phase-based app development.',
137
+ description: 'Instructions for running create-expo-super-stack while keeping packages/knowledge as the source of truth and handing off to phase-based app development.',
138
138
  resourcePath: 'skills/super-stack-startup.md',
139
139
  keywords: ['create-expo-super-stack', 'startup', 'onboarding flow'],
140
140
  },
@@ -204,11 +204,11 @@ const REFERENCE_RESOURCES = [
204
204
  ];
205
205
  const CHECKLIST_RESOURCES = [
206
206
  {
207
- id: 'ship-test-loop',
208
- name: 'Ship-Test Loop Checklist',
207
+ id: 'push-merge-loop',
208
+ name: 'Push-Merge Loop Checklist',
209
209
  description: 'Checklist for doctor/PR/fix/poll/merge loops into the test branch.',
210
- resourcePath: 'checklists/ship-test-loop.md',
211
- keywords: ['checklist', 'ship', 'test branch', 'pull request'],
210
+ resourcePath: 'checklists/push-merge-loop.md',
211
+ keywords: ['checklist', 'push', 'merge', 'test branch', 'pull request'],
212
212
  sourceRepos: ['mr-djs-dev-suite'],
213
213
  },
214
214
  {
@@ -222,11 +222,11 @@ const CHECKLIST_RESOURCES = [
222
222
  ];
223
223
  const EXAMPLE_RESOURCES = [
224
224
  {
225
- id: 'ship-test-loop',
226
- name: 'Ship-Test Loop Example',
225
+ id: 'push-merge-loop',
226
+ name: 'Push-Merge Loop Example',
227
227
  description: 'Example iteration log for a PR loop into the test branch.',
228
- resourcePath: 'examples/ship-test-loop.md',
229
- keywords: ['example', 'ship', 'iteration'],
228
+ resourcePath: 'examples/push-merge-loop.md',
229
+ keywords: ['example', 'push', 'merge', 'iteration'],
230
230
  sourceRepos: ['mr-djs-dev-suite'],
231
231
  },
232
232
  {
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/prompts/index.ts"],"names":[],"mappings":"AAIA,MAAM,MAAM,aAAa,GAAG,eAAe,GAAG,gBAAgB,GAAG,YAAY,GAAG,iBAAiB,CAAC;AAElG,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,UAAU;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,QAAQ,EAAE,aAAa,EAAE,CAAC;IAC1B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,OAAO,CAAC,EAAE,aAAa,EAAE,CAAC;CAC3B;AAED,MAAM,WAAW,iBAAkB,SAAQ,UAAU;IACnD,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACtC;AAoPD,wBAAgB,eAAe,CAAC,OAAO,CAAC,EAAE,aAAa,GAAG,UAAU,EAAE,CAKrE;AAED,wBAAgB,aAAa,CAAC,QAAQ,EAAE,MAAM,GAAG,UAAU,GAAG,IAAI,CAKjE;AAED,wBAAsB,cAAc,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,iBAAiB,GAAG,IAAI,CAAC,CASxF;AAED,wBAAsB,iBAAiB,CAAC,IAAI,EAAE,IAAI,CAAC,UAAU,EAAE,cAAc,CAAC,GAAG,OAAO,CAAC,MAAM,CAAC,CAE/F;AAED,wBAAgB,gBAAgB,IAAI,WAAW,EAAE,CAEhD;AAED,wBAAgB,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,WAAW,GAAG,IAAI,CAE/D"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/prompts/index.ts"],"names":[],"mappings":"AAIA,MAAM,MAAM,aAAa,GAAG,eAAe,GAAG,gBAAgB,GAAG,YAAY,GAAG,iBAAiB,CAAC;AAElG,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,UAAU;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,QAAQ,EAAE,aAAa,EAAE,CAAC;IAC1B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,OAAO,CAAC,EAAE,aAAa,EAAE,CAAC;CAC3B;AAED,MAAM,WAAW,iBAAkB,SAAQ,UAAU;IACnD,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACtC;AA0QD,wBAAgB,eAAe,CAAC,OAAO,CAAC,EAAE,aAAa,GAAG,UAAU,EAAE,CAKrE;AAED,wBAAgB,aAAa,CAAC,QAAQ,EAAE,MAAM,GAAG,UAAU,GAAG,IAAI,CAYjE;AAED,wBAAsB,cAAc,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,iBAAiB,GAAG,IAAI,CAAC,CASxF;AAED,wBAAsB,iBAAiB,CAAC,IAAI,EAAE,IAAI,CAAC,UAAU,EAAE,cAAc,CAAC,GAAG,OAAO,CAAC,MAAM,CAAC,CAE/F;AAED,wBAAgB,gBAAgB,IAAI,WAAW,EAAE,CAEhD;AAED,wBAAgB,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,WAAW,GAAG,IAAI,CAE/D"}
@@ -51,7 +51,7 @@ const PROMPT_SPECS = [
51
51
  id: 'create-expo-super-stack',
52
52
  slug: 'create-expo-super-stack',
53
53
  title: 'Create Expo Super Stack',
54
- description: 'Start a guided app creation flow from a parent directory and hand off to continue.',
54
+ description: 'Start a guided app creation flow from a parent directory while keeping the knowledge package as the text source of truth.',
55
55
  resourcePath: 'prompts/create-expo-super-stack.md',
56
56
  keywords: ['create-expo-super-stack', 'onboarding', 'generator'],
57
57
  surfaces: ['codex-command', 'claude-command', 'mcp-prompt'],
@@ -99,22 +99,43 @@ const PROMPT_SPECS = [
99
99
  mcpArgs: [{ name: 'projectPath', description: 'Path to the existing Expo app folder.' }],
100
100
  },
101
101
  {
102
- id: 'ship-test-loop',
103
- slug: 'ship-test-loop',
104
- title: 'Ship Test Loop',
102
+ id: 'push-merge-loop',
103
+ slug: 'push-merge-loop',
104
+ title: 'Push Merge Loop',
105
105
  description: 'Run the PR loop into test: doctor, commit, push, poll checks/comments, fix, repeat, merge.',
106
- resourcePath: 'prompts/ship-test-loop.md',
107
- keywords: ['ship', 'pull request', 'test branch', 'checks'],
106
+ resourcePath: 'prompts/push-merge-loop.md',
107
+ keywords: ['push', 'merge', 'pull request', 'test branch', 'checks'],
108
108
  surfaces: ['codex-command', 'claude-command', 'mcp-prompt'],
109
- codexCommandFile: 'ship-test-loop.md',
110
- claudeCommandFile: 'ship-test-loop.md',
111
- mcpPromptName: 'ship_test_loop',
109
+ codexCommandFile: 'push-merge-loop.md',
110
+ claudeCommandFile: 'push-merge-loop.md',
111
+ mcpPromptName: 'push_merge_loop',
112
112
  mcpArgs: [
113
113
  { name: 'projectPath', description: 'Target repository path for the workflow.' },
114
114
  { name: 'branch', description: 'Feature branch name to push and open/update PR from.' },
115
115
  { name: 'base', description: 'Base branch (default: test).' },
116
116
  ],
117
117
  },
118
+ {
119
+ id: 'wrap-up',
120
+ slug: 'wrap-up',
121
+ title: 'Wrap Up',
122
+ description: 'Run release wrap-up after testing: todo completion, doctor, git inclusion checks, PR/check loops, and policy-based merge handling.',
123
+ resourcePath: 'prompts/wrap-up.md',
124
+ keywords: ['wrap up', 'release', 'pull request', 'doctor', 'merge policy'],
125
+ surfaces: ['codex-command', 'claude-command', 'mcp-prompt'],
126
+ codexCommandFile: 'wrap-up.md',
127
+ claudeCommandFile: 'wrap-up.md',
128
+ mcpPromptName: 'wrap_up_release',
129
+ mcpArgs: [
130
+ { name: 'projectPath', description: 'Target repository path for wrap-up flow.' },
131
+ { name: 'branch', description: 'Feature branch to push and open/update PR from.' },
132
+ { name: 'base', description: 'Target base branch (default: test).' },
133
+ {
134
+ name: 'mergeMode',
135
+ description: 'Optional override: auto-test (default) or manual-test.',
136
+ },
137
+ ],
138
+ },
118
139
  {
119
140
  id: 'phase9-bootstrap',
120
141
  slug: 'phase9-bootstrap',
@@ -245,7 +266,12 @@ export function listPromptSpecs(surface) {
245
266
  return PROMPT_SPECS.filter((spec) => spec.surfaces.includes(surface));
246
267
  }
247
268
  export function getPromptSpec(idOrSlug) {
248
- return (PROMPT_SPECS.find((spec) => spec.id === idOrSlug || spec.slug === idOrSlug || spec.mcpPromptName === idOrSlug) ??
269
+ const legacyAliases = {
270
+ 'ship-test-loop': 'push-merge-loop',
271
+ ship_test_loop: 'push_merge_loop',
272
+ };
273
+ const normalized = legacyAliases[idOrSlug] ?? idOrSlug;
274
+ return (PROMPT_SPECS.find((spec) => spec.id === normalized || spec.slug === normalized || spec.mcpPromptName === normalized) ??
249
275
  null);
250
276
  }
251
277
  export async function readPromptSpec(idOrSlug) {
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/prompts/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/prompts/index.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,51 +1,55 @@
1
- {
2
- "name": "@mr.dj2u/knowledge",
3
- "version": "0.1.1",
4
- "description": "Skills, patterns, guides, and rules for Expo development (MCP resources)",
5
- "type": "module",
6
- "files": [
7
- "dist"
8
- ],
9
- "exports": {
10
- ".": {
11
- "import": "./dist/index.js",
12
- "types": "./dist/index.d.ts"
13
- },
14
- "./patterns": {
15
- "import": "./dist/patterns/index.js",
16
- "types": "./dist/patterns/index.d.ts"
17
- },
18
- "./skills": {
19
- "import": "./dist/skills/index.js",
20
- "types": "./dist/skills/index.d.ts"
21
- },
22
- "./prompts": {
23
- "import": "./dist/prompts/index.js",
24
- "types": "./dist/prompts/index.d.ts"
25
- }
26
- },
27
- "main": "./dist/index.js",
28
- "types": "./dist/index.d.ts",
29
- "scripts": {
30
- "build": "tsc && node scripts/copy-content.mjs",
31
- "build:plugin": "tsc && node scripts/generate-codex-plugin.mjs",
32
- "build:vscode": "tsc && node scripts/generate-vscode-copilot.mjs",
33
- "type-check": "tsc --noEmit",
34
- "lint": "eslint src",
35
- "lint:fix": "eslint src --fix",
36
- "test": "vitest run --passWithNoTests",
37
- "prepack": "node ../../scripts/verify-publish-manifest.mjs .",
38
- "dev": "tsc --watch",
39
- "clean": "node -e \"const fs=require('node:fs'); for (const p of ['dist','tsconfig.tsbuildinfo']) fs.rmSync(p,{recursive:true,force:true});\""
40
- },
41
- "devDependencies": {
42
- "@types/node": "^20.10.0",
43
- "typescript": "^5.9.0"
44
- },
45
- "keywords": ["expo", "knowledge", "patterns", "mcp"],
46
- "author": "DJ",
47
- "license": "MIT",
48
- "publishConfig": {
49
- "access": "public"
50
- }
51
- }
1
+ {
2
+ "name": "@mr.dj2u/knowledge",
3
+ "version": "0.1.2",
4
+ "description": "Skills, patterns, guides, and rules for Expo development (MCP resources)",
5
+ "type": "module",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ },
14
+ "./patterns": {
15
+ "import": "./dist/patterns/index.js",
16
+ "types": "./dist/patterns/index.d.ts"
17
+ },
18
+ "./skills": {
19
+ "import": "./dist/skills/index.js",
20
+ "types": "./dist/skills/index.d.ts"
21
+ },
22
+ "./prompts": {
23
+ "import": "./dist/prompts/index.js",
24
+ "types": "./dist/prompts/index.d.ts"
25
+ }
26
+ },
27
+ "main": "./dist/index.js",
28
+ "types": "./dist/index.d.ts",
29
+ "devDependencies": {
30
+ "@types/node": "^20.10.0",
31
+ "typescript": "^5.9.0"
32
+ },
33
+ "keywords": [
34
+ "expo",
35
+ "knowledge",
36
+ "patterns",
37
+ "mcp"
38
+ ],
39
+ "author": "DJ",
40
+ "license": "MIT",
41
+ "publishConfig": {
42
+ "access": "public"
43
+ },
44
+ "scripts": {
45
+ "build": "tsc && node scripts/copy-content.mjs",
46
+ "build:plugin": "tsc && node scripts/generate-codex-plugin.mjs",
47
+ "build:vscode": "tsc && node scripts/generate-vscode-copilot.mjs",
48
+ "type-check": "tsc --noEmit",
49
+ "lint": "eslint src",
50
+ "lint:fix": "eslint src --fix",
51
+ "test": "vitest run --passWithNoTests",
52
+ "dev": "tsc --watch",
53
+ "clean": "node -e \"const fs=require('node:fs'); for (const p of ['dist','tsconfig.tsbuildinfo']) fs.rmSync(p,{recursive:true,force:true});\""
54
+ }
55
+ }