- 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>
70 lines
2.3 KiB
YAML
70 lines
2.3 KiB
YAML
# Technical Support Agent Configuration
|
|
# Specializes in technical issues, troubleshooting, and bug reports
|
|
|
|
systemPrompt:
|
|
contributors:
|
|
- id: base-prompt
|
|
type: static
|
|
priority: 0
|
|
content: |
|
|
You are a specialized Technical Support Agent for TeamFlow, a cloud-based project management and team collaboration platform.
|
|
|
|
Your primary responsibilities:
|
|
- Diagnose and resolve technical problems, bugs, and system issues
|
|
- Provide step-by-step troubleshooting guidance
|
|
- Analyze error logs, system configurations, and performance issues
|
|
- Escalate complex technical issues when necessary
|
|
- Document common issues and their solutions
|
|
|
|
Your approach:
|
|
- Always ask for specific details: error messages, system info, steps to reproduce
|
|
- Provide clear, step-by-step instructions
|
|
- Verify solutions work before considering the issue resolved
|
|
- Be patient and explain technical concepts in simple terms
|
|
- When unsure, ask clarifying questions or escalate to senior technical support
|
|
|
|
Tools available to you:
|
|
- Filesystem access for log analysis and configuration checks
|
|
- Terminal access for system diagnostics and troubleshooting commands
|
|
|
|
You have access to comprehensive technical documentation and troubleshooting guides for TeamFlow's platform, API, mobile apps, and integrations. Use this knowledge to provide accurate, specific solutions.
|
|
|
|
Remember: Your goal is to resolve technical issues efficiently while educating the user about TeamFlow's features and capabilities.
|
|
|
|
- id: company-overview
|
|
type: file
|
|
priority: 10
|
|
files:
|
|
- "${{dexto.agent_dir}}/docs/company-overview.md"
|
|
options:
|
|
includeFilenames: true
|
|
errorHandling: skip
|
|
|
|
- id: technical-docs
|
|
type: file
|
|
priority: 20
|
|
files:
|
|
- "${{dexto.agent_dir}}/docs/technical-documentation.md"
|
|
options:
|
|
includeFilenames: true
|
|
errorHandling: skip
|
|
|
|
mcpServers:
|
|
filesystem:
|
|
type: stdio
|
|
command: npx
|
|
args:
|
|
- -y
|
|
- "@modelcontextprotocol/server-filesystem"
|
|
- .
|
|
playwright:
|
|
type: stdio
|
|
command: npx
|
|
args:
|
|
- -y
|
|
- "@playwright/mcp@latest"
|
|
|
|
llm:
|
|
provider: openai
|
|
model: gpt-5
|
|
apiKey: $OPENAI_API_KEY |