ワンクリックで
estatewise-ai-runtime
// Playbook for MCP, agentic-ai, web-grounding, token flows, and A2A in EstateWise. Use when changing tool calls, orchestration, runtime behavior, or AI integration paths.
// Playbook for MCP, agentic-ai, web-grounding, token flows, and A2A in EstateWise. Use when changing tool calls, orchestration, runtime behavior, or AI integration paths.
Work on EstateWise MCP, agentic-ai, web-grounding, token flows, and A2A integrations. Use when changing tool behavior, orchestration, runtime flags, MCP wrappers, HTTP/A2A endpoints, or AI integration paths.
Extend or audit Codex support in the EstateWise repository. Use when changing .codex config, .codex/rules, .agents/skills, AGENTS.md layering, multi-agent roles, project guidance discovery, or Codex-specific documentation and workflows.
Audit producer-consumer alignment in EstateWise when REST, tRPC, MCP, gRPC, A2A, or shared payloads may have changed. Use when one package's change could silently break another package, tool, or doc set.
Execute production-safe code changes in the EstateWise monorepo. Use when implementing or fixing behavior in backend, frontend, MCP, agentic-ai, gRPC, deployment-control, tests, or repo docs. Do not use for pure brainstorming, skill installation, or work outside this repository.
Run or debug the EstateWise local environment. Use when setting up services, choosing the smallest service combination, checking local endpoints, or troubleshooting environment/config issues. Do not use for routine code implementation unless local run/debugging is the main task.
Work on EstateWise deployment-control, Docker, Kubernetes, Helm, Terraform, Jenkins, and cloud deployment assets. Use for infrastructure and operational workflow changes, not ordinary application feature work.
| name | estatewise-ai-runtime |
| description | Playbook for MCP, agentic-ai, web-grounding, token flows, and A2A in EstateWise. Use when changing tool calls, orchestration, runtime behavior, or AI integration paths. |
| argument-hint | ["mcp-agentic-a2a-scope"] |
Use this skill when work touches the tool-first AI stack rather than just the app UI/API.
backend/: source APIs behind property, graph, analytics, auth, finance, and chat behavior.mcp/: stdio server that exposes those capabilities as tools.agentic-ai/: consumers and orchestrators that call MCP tools, plus optional HTTP/A2A access.mcp/src/server.tsmcp/src/core/config.tsmcp/src/tools/index.tsmcp/src/tools/a2a.tsmcp/src/tools/system.ts, mcp/src/tools/monitoring.tsagentic-ai/src/index.tsagentic-ai/src/http/server.tsagentic-ai/src/orchestrator/AgentOrchestrator.tsagentic-ai/src/lang/tools.ts, agentic-ai/src/lang/graph.tsagentic-ai/src/a2a/Use when adding or fixing tool behavior:
cd mcp
npm run build
npm run client:dev
npm run client:call -- <tool> '<json>'
Remember: npm run dev waits for a stdio client and looks idle by design.
Use when changing orchestration logic or end-to-end tool use:
cd mcp && npm run build
cd ../agentic-ai && npm run build
npm run dev "Find 3-bed homes in Chapel Hill and compare two ZPIDs"
Use when touching agentic-ai/src/lang/:
cd agentic-ai
npm run build
npm run dev -- --langgraph "Compare two Chapel Hill homes and estimate mortgage"
Use only when explicitly working in the Python runtime:
agentic-ai/crewai/requirements.txtOPENAI_API_KEYnpm run dev -- --crewai "goal"Key endpoints in agentic-ai/src/http/server.ts:
GET /healthPOST /runGET /run/streamGET /.well-known/agent-card.jsonGET /a2a/agent-cardPOST /a2aIf these move, inspect mcp/src/tools/a2a.ts immediately.
MCP:
API_BASE_URLFRONTEND_BASE_URLA2A_BASE_URLWEB_TIMEOUT_MSmcp.token.*Backend-driven AI paths:
GOOGLE_AI_API_KEYPINECONE_API_KEYPINECONE_INDEXAgentic runtime:
AGENT_RUNTIMETHREAD_IDOPENAI_API_KEY for CrewAI and OpenAI-linked pathsA2A_MAX_TASKS, A2A_TASK_RETENTION_MS, A2A_WAIT_TIMEOUT_MSagentic-ai and MCP bridge tools.client:call fails because a tool name or schema changed.agentic-ai/src/lang/tools.ts still expects the old payload shape.mcp/src/tools/a2a.ts still targets an older endpoint or response structure.THREAD_ID behavior changes in LangGraph without docs/examples being updated.Update these when relevant:
mcp/README.mdagentic-ai/README.mdREADME.mdARCHITECTURE.mdRAG_SYSTEM.md when AI-system behavior materially changes