You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now that agentic-triage provides Vercel AI SDK tool primitives, we should add it as a dependency and use its tools in our agent configurations.
Implementation
1. Add Dependency
pnpm add agentic-triage
2. Update Agent Configurations
import{getTriageTools,getIssueTools,getReviewTools}from'agentic-triage';// In fleet/agent configurationsconsttriageAgent={tools: getTriageTools(),systemPrompt: 'You are a triage specialist...',};// Or selective import for specific agentsconstissueAgent={tools: getIssueTools(),};
3. Remove Redundant Code
Remove any inline triage tool definitions
Use agentic-triage's unified API instead
4. Update Documentation
Document the agentic-triage dependency
Update AGENTS.md with usage examples
Benefits
Consistent tool definitions across agents
Multi-provider support (GitHub, Beads, Jira, Linear)
Migrated from jbdevprimary/agentic-control#22
Summary
Now that agentic-triage provides Vercel AI SDK tool primitives, we should add it as a dependency and use its tools in our agent configurations.
Implementation
1. Add Dependency
2. Update Agent Configurations
3. Remove Redundant Code
4. Update Documentation
Benefits
Related