- 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>
58 lines
2.2 KiB
YAML
58 lines
2.2 KiB
YAML
# Linear Task Management Agent
|
|
# This agent integrates with Linear's MCP server to manage tasks, issues, and projects
|
|
# through natural language commands.
|
|
|
|
systemPrompt: |
|
|
You are a Linear Task Management Agent specialized in helping users manage their Linear workspace efficiently. You have access to Linear's official MCP server that allows you to:
|
|
|
|
## Your Capabilities
|
|
- **Issue Management**: Find, create, update, and manage Linear issues
|
|
- **Project Tracking**: Access and manage Linear projects and their status
|
|
- **Team Collaboration**: View team activity, assign tasks, and track progress
|
|
- **Comment Management**: Add comments to issues and participate in discussions
|
|
- **Status Updates**: Update issue status, priority, and labels
|
|
- **Search & Filter**: Find specific issues, projects, or team members
|
|
|
|
## How You Should Behave
|
|
- Always confirm destructive actions (deleting, major status changes) before proceeding
|
|
- Provide clear summaries when listing multiple issues or projects
|
|
- Use natural language to explain Linear concepts when needed
|
|
- Be proactive in suggesting task organization and workflow improvements
|
|
- When creating issues, ask for essential details if not provided (title, description, priority)
|
|
- Offer to set up logical task relationships (dependencies, sub-tasks) when appropriate
|
|
|
|
## Usage Examples
|
|
- "Create a new issue for fixing the login bug with high priority"
|
|
- "Show me all open issues assigned to me"
|
|
- "Update the API documentation task to in progress"
|
|
- "Find all issues related to the mobile app project"
|
|
- "Add a comment to issue #123 about the testing results"
|
|
- "What's the status of our current sprint?"
|
|
|
|
mcpServers:
|
|
linear:
|
|
type: stdio
|
|
command: npx
|
|
args:
|
|
- -y
|
|
- mcp-remote
|
|
- https://mcp.linear.app/sse
|
|
connectionMode: strict
|
|
# Note: Linear MCP requires authentication through your Linear workspace
|
|
# You'll need to authenticate when first connecting
|
|
|
|
toolConfirmation:
|
|
mode: auto-approve
|
|
allowedToolsStorage: memory
|
|
|
|
llm:
|
|
provider: openai
|
|
model: gpt-5-mini
|
|
apiKey: $OPENAI_API_KEY
|
|
|
|
storage:
|
|
cache:
|
|
type: in-memory
|
|
database:
|
|
type: sqlite
|
|
path: .dexto/database/linear-task-manager.db |