plugins/autopilot/skills/tag-command-mapping/SKILL.md
How tag-to-command routing works in autopilot. Defines default mappings, precedence rules, and customization patterns.
npx skillsauth add madappgang/claude-code tag-command-mappingInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
plugin: autopilot updated: 2026-01-20
Version: 0.1.0 Purpose: Route Linear tasks to appropriate Claude Code commands based on tags Status: Phase 1
Use this skill when you need to:
Tag-to-command mapping is the core routing mechanism in autopilot. When a task arrives from Linear, its labels determine which Claude Code command/agent handles execution.
| Linear Tag | Command | Agent | Skills | |------------|---------|-------|--------| | @frontend | /dev:feature | developer | react-typescript | | @backend | /dev:implement | developer | golang, api-design | | @debug | /dev:debug | debugger | debugging-strategies | | @test | /dev:test-architect | test-architect | testing-strategies | | @review | /commit-commands:commit-push-pr | reviewer | universal-patterns | | @refactor | /dev:implement | developer | universal-patterns | | @research | /dev:deep-research | researcher | n/a | | @ui | /dev:ui | ui | ui-design-review |
When multiple tags are present, apply precedence order:
const PRECEDENCE = [
'@debug', // Bug fixing takes priority
'@test', // Tests before implementation
'@ui', // UI before generic frontend
'@frontend', // Frontend before generic
'@backend', // Backend before generic
'@review', // Review after implementation
'@refactor', // Refactoring is lower priority
'@research' // Research is lowest
];
function selectTag(labels: string[]): string {
const agentTags = labels.filter(l => l.startsWith('@'));
if (agentTags.length === 0) return 'default';
if (agentTags.length === 1) return agentTags[0];
// Multiple tags - apply precedence
for (const tag of PRECEDENCE) {
if (agentTags.includes(tag)) return tag;
}
return 'default';
}
Users can define custom mappings in .claude/autopilot.local.md:
---
tag_mappings:
"@database":
command: "/dev:implement"
agent: "developer"
skills: ["database-patterns"]
systemPrompt: "You are a database specialist."
"@performance":
command: "/dev:implement"
agent: "developer"
skills: ["universal-patterns"]
systemPrompt: "You are a performance optimization expert."
---
Beyond explicit tags, classify tasks from text:
function classifyTask(title: string, description: string): string {
const text = `${title} ${description}`.toLowerCase();
// Keyword patterns
if (/\b(fix|bug|error|crash|broken)\b/.test(text)) return 'BUG_FIX';
if (/\b(add|implement|create|new|feature)\b/.test(text)) return 'FEATURE';
if (/\b(refactor|clean|optimize|improve)\b/.test(text)) return 'REFACTOR';
if (/\b(ui|design|component|style|visual)\b/.test(text)) return 'UI_CHANGE';
if (/\b(test|coverage|e2e|spec)\b/.test(text)) return 'TEST';
if (/\b(doc|documentation|readme)\b/.test(text)) return 'DOCUMENTATION';
return 'UNKNOWN';
}
Complete resolution algorithm:
function resolveMapping(labels: string[], title: string, desc: string) {
// 1. Check explicit tags
const tag = selectTag(labels);
if (tag !== 'default') {
return getMappingForTag(tag);
}
// 2. Classify from text
const taskType = classifyTask(title, desc);
// 3. Map task type to default tag
const typeToTag = {
'BUG_FIX': '@debug',
'FEATURE': '@frontend',
'UI_CHANGE': '@ui',
'TEST': '@test',
'REFACTOR': '@refactor',
'DOCUMENTATION': '@research',
};
return getMappingForTag(typeToTag[taskType] || '@frontend');
}
// Task with @frontend label
const labels = ['@frontend', 'feature'];
const tag = selectTag(labels); // '@frontend'
const mapping = getMappingForTag(tag);
// Result: { command: '/dev:feature', agent: 'developer', skills: ['react-typescript'] }
// Task with both @frontend and @debug
const labels = ['@frontend', '@debug'];
const tag = selectTag(labels); // '@debug' (higher precedence)
const mapping = getMappingForTag(tag);
// Result: { command: '/dev:debug', agent: 'debugger', skills: ['debugging-strategies'] }
// Task without tags
const labels = [];
const title = "Fix login button not working";
const mapping = resolveMapping(labels, title, "");
// Classifies as BUG_FIX -> @debug
// Result: { command: '/dev:debug', agent: 'debugger', skills: ['debugging-strategies'] }
testing
A test skill for validation testing. Use when testing skill parsing and validation logic.
tools
--- name: bad-skill description: This skill has invalid YAML in frontmatter allowed-tools: [invalid, array, syntax prerequisites: not-an-array --- # Bad Skill This skill has malformed frontmatter that should fail parsing. The YAML has: - Unclosed array bracket - Wrong type for prerequisites (should be array, not string)
tools
Plugin release process for MAG Claude Plugins marketplace. Covers version bumping, marketplace.json updates, git tagging, and common mistakes. Use when releasing new plugin versions or troubleshooting update issues.
testing
Fetch trending programming models from OpenRouter rankings. Use when selecting models for multi-model review, updating model recommendations, or researching current AI coding trends. Provides model IDs, context windows, pricing, and usage statistics from the most recent week.