- Add intelligent-router.sh hook for automatic agent routing - Add AUTO-TRIGGER-SUMMARY.md documentation - Add FINAL-INTEGRATION-SUMMARY.md documentation - Complete Prometheus integration (6 commands + 4 tools) - Complete Dexto integration (12 commands + 5 tools) - Enhanced Ralph with access to all agents - Fix /clawd command (removed disable-model-invocation) - Update hooks.json to v5 with intelligent routing - 291 total skills now available - All 21 commands with automatic routing 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
35 lines
1.3 KiB
YAML
35 lines
1.3 KiB
YAML
# describes the mcp servers to use
|
|
mcpServers:
|
|
filesystem:
|
|
type: stdio
|
|
command: npx
|
|
args:
|
|
- -y
|
|
- "@modelcontextprotocol/server-filesystem"
|
|
- .
|
|
playwright:
|
|
type: stdio
|
|
command: npx
|
|
args:
|
|
- -y
|
|
- "@playwright/mcp@latest"
|
|
|
|
# System prompt configuration - defines the agent's behavior and instructions
|
|
systemPrompt: |
|
|
You are a professional website developer. You design beautiful, aesthetic websites.
|
|
Use these tools when appropriate to answer user queries.
|
|
You can use multiple tools in sequence to solve complex problems.
|
|
After each tool result, determine if you need more information or can provide a final answer.
|
|
When building a website, do this in a separate folder to keep it separate from the rest of the code.
|
|
The website should look clean, professional, modern and elegant.
|
|
It should be visually appealing. Carefully consider the color scheme, font choices, and layout. I like non-white backgrounds.
|
|
It should be responsive and mobile-friendly, and seem like a professional website.
|
|
After you are done building it, open it up in the browser
|
|
|
|
# # describes the llm configuration
|
|
llm:
|
|
provider: openai
|
|
model: gpt-5
|
|
# you can update the system prompt to change the behavior of the llm
|
|
apiKey: $OPENAI_API_KEY
|