chore: prune unused apps and services for the moeka fork
CI / Lint (push) Canceled after 0s
CI / Build Test (stage-web) (push) Canceled after 0s
CI / Build Test (ui-loading-screens) (push) Canceled after 0s
CI / Build Test (ui-transitions) (push) Canceled after 0s
CI / Unit Test (push) Canceled after 0s
CI / Type Check (push) Canceled after 0s
CI / Check Provenance (push) Canceled after 0s
Sync Labels / sync-labels (push) Successful in 1m43s
CI / Lint (push) Canceled after 0s
CI / Build Test (stage-web) (push) Canceled after 0s
CI / Build Test (ui-loading-screens) (push) Canceled after 0s
CI / Build Test (ui-transitions) (push) Canceled after 0s
CI / Unit Test (push) Canceled after 0s
CI / Type Check (push) Canceled after 0s
CI / Check Provenance (push) Canceled after 0s
Sync Labels / sync-labels (push) Successful in 1m43s
- Remove stage-tamagotchi, stage-pocket, server, and engine workspaces with their workflows, addons, and docs - Switch the toolchain from pnpm to bun, replace lockfiles with bun.lock - Rewrite remaining product references to Moeka
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: minecraft-debug-mcp
|
||||
description: Operate and debug the live Minecraft bot through its built-in MCP REPL server. Use when work requires starting the bot with `pnpm dev`, connecting to the local MCP endpoint, inspecting cognitive state/logs/history, injecting synthetic chat/events, or running targeted REPL code against the running brain during investigation and development.
|
||||
description: Operate and debug the live Minecraft bot through its built-in MCP REPL server. Use when work requires starting the bot with `bun run dev`, connecting to the local MCP endpoint, inspecting cognitive state/logs/history, injecting synthetic chat/events, or running targeted REPL code against the running brain during investigation and development.
|
||||
---
|
||||
|
||||
# Minecraft Debug MCP
|
||||
@@ -11,7 +11,7 @@ Use this skill to run the local bot and interact with its MCP debug interface sa
|
||||
|
||||
## Quick Start Workflow
|
||||
|
||||
1. Run `pnpm dev` from `/path/to/project/root/integrations/minecraft` and keep it running.
|
||||
1. Run `bun run dev` from `/path/to/project/root/integrations/minecraft` and keep it running.
|
||||
2. Wait for `MCP REPL server running at http://localhost:3001` in logs.
|
||||
3. Connect MCP client to `http://localhost:3001/sse`.
|
||||
4. Verify readiness with a read-only call:
|
||||
@@ -27,7 +27,7 @@ Use this skill to run the local bot and interact with its MCP debug interface sa
|
||||
- Keep `execute_repl` snippets minimal and reversible.
|
||||
- Use `inject_chat` for conversational simulation and `inject_event` only when specific event-shape testing is required.
|
||||
- Treat `inject_chat` as side-effectful: it can trigger actual in-game bot replies/actions.
|
||||
- If MCP connection fails, check that `pnpm dev` is still running and port `3001` is free.
|
||||
- If MCP connection fails, check that `bun run dev` is still running and port `3001` is free.
|
||||
|
||||
## Tooling Strategy
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
interface:
|
||||
display_name: 'Minecraft Debug MCP'
|
||||
short_description: 'Operate the live Minecraft debug MCP bot safely'
|
||||
default_prompt: 'Start the bot with pnpm dev, connect to the minecraft-debug MCP, inspect brain state/logs, and execute focused debug actions.'
|
||||
default_prompt: 'Start the bot with bun run dev, connect to the minecraft-debug MCP, inspect brain state/logs, and execute focused debug actions.'
|
||||
|
||||
@@ -58,7 +58,7 @@ The bot starts this server during normal runtime from:
|
||||
## Troubleshooting
|
||||
|
||||
- Connection refused:
|
||||
- Ensure `pnpm dev` is running in the service directory.
|
||||
- Ensure `bun run dev` is running in the service directory.
|
||||
- Confirm logs include `MCP REPL server running at http://localhost:3001`.
|
||||
- 404/invalid endpoint:
|
||||
- Use `/sse` as MCP entrypoint.
|
||||
|
||||
Reference in New Issue
Block a user