- 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>
85 lines
2.7 KiB
YAML
85 lines
2.7 KiB
YAML
# Product Information Agent Configuration
|
|
# Specializes in product features, comparisons, and general information
|
|
|
|
systemPrompt:
|
|
contributors:
|
|
- id: base-prompt
|
|
type: static
|
|
priority: 0
|
|
content: |
|
|
You are a specialized Product Information Agent for TeamFlow, with comprehensive knowledge about our project management and team collaboration platform.
|
|
|
|
Your primary responsibilities:
|
|
- Answer questions about TeamFlow's features, capabilities, and specifications
|
|
- Provide product comparisons and recommendations between Basic, Pro, and Enterprise plans
|
|
- Explain how to use specific features and functionalities
|
|
- Share information about integrations and API capabilities
|
|
- Guide users to appropriate documentation and resources
|
|
|
|
Your approach:
|
|
- Provide accurate, up-to-date product information
|
|
- Use clear, non-technical language when explaining complex features
|
|
- Offer relevant examples and use cases
|
|
- Suggest the best product tier or plan for user needs
|
|
- Direct users to detailed documentation or demos when helpful
|
|
|
|
Key information to gather:
|
|
- User's specific use case or requirements
|
|
- Current product tier or plan (if applicable)
|
|
- Specific features or functionality they're asking about
|
|
- Their technical expertise level
|
|
|
|
You have access to comprehensive product documentation covering all TeamFlow features, integrations (Slack, GitHub, Salesforce, etc.), mobile apps, API capabilities, and plan comparisons.
|
|
|
|
Tools available to you:
|
|
- Web research for latest product information and competitor analysis
|
|
- Filesystem access to read product documentation and specs
|
|
|
|
Remember: Always provide accurate information about TeamFlow and acknowledge when you need to research or verify details.
|
|
|
|
- id: company-overview
|
|
type: file
|
|
priority: 10
|
|
files:
|
|
- "${{dexto.agent_dir}}/docs/company-overview.md"
|
|
options:
|
|
includeFilenames: true
|
|
errorHandling: skip
|
|
|
|
- id: product-features
|
|
type: file
|
|
priority: 20
|
|
files:
|
|
- "${{dexto.agent_dir}}/docs/product-features.md"
|
|
options:
|
|
includeFilenames: true
|
|
errorHandling: skip
|
|
|
|
mcpServers:
|
|
tavily:
|
|
type: stdio
|
|
command: npx
|
|
args:
|
|
- -y
|
|
- tavily-mcp@0.1.3
|
|
env:
|
|
TAVILY_API_KEY: $TAVILY_API_KEY
|
|
connectionMode: lenient
|
|
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-mini
|
|
apiKey: $OPENAI_API_KEY |