feat(timeline): add pulse animation for in-flight drag mutations

Allocation bars that have active optimistic overrides (post-drag,
awaiting server confirmation) now pulse subtly via animate-pulse.
The pending set is derived from the existing optimisticAllocations
map keys, requiring no additional state.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-09 13:28:46 +02:00
co-authored by Claude Sonnet 4.6
parent 7a5e98e2e9
commit 1df208dbcc
386 changed files with 657 additions and 81650 deletions
-66
View File
@@ -1,66 +0,0 @@
#!/usr/bin/env node
/**
* Claude Flow Agent Router
* Routes tasks to optimal agents based on learned patterns
*/
const AGENT_CAPABILITIES = {
coder: ['code-generation', 'refactoring', 'debugging', 'implementation'],
tester: ['unit-testing', 'integration-testing', 'coverage', 'test-generation'],
reviewer: ['code-review', 'security-audit', 'quality-check', 'best-practices'],
researcher: ['web-search', 'documentation', 'analysis', 'summarization'],
architect: ['system-design', 'architecture', 'patterns', 'scalability'],
'backend-dev': ['api', 'database', 'server', 'authentication'],
'frontend-dev': ['ui', 'react', 'css', 'components'],
devops: ['ci-cd', 'docker', 'deployment', 'infrastructure'],
};
const TASK_PATTERNS = {
// Code patterns
'implement|create|build|add|write code': 'coder',
'test|spec|coverage|unit test|integration': 'tester',
'review|audit|check|validate|security': 'reviewer',
'research|find|search|documentation|explore': 'researcher',
'design|architect|structure|plan': 'architect',
// Domain patterns
'api|endpoint|server|backend|database': 'backend-dev',
'ui|frontend|component|react|css|style': 'frontend-dev',
'deploy|docker|ci|cd|pipeline|infrastructure': 'devops',
};
function routeTask(task) {
const taskLower = task.toLowerCase();
// Check patterns
for (const [pattern, agent] of Object.entries(TASK_PATTERNS)) {
const regex = new RegExp(pattern, 'i');
if (regex.test(taskLower)) {
return {
agent,
confidence: 0.8,
reason: `Matched pattern: ${pattern}`,
};
}
}
// Default to coder for unknown tasks
return {
agent: 'coder',
confidence: 0.5,
reason: 'Default routing - no specific pattern matched',
};
}
// CLI
const task = process.argv.slice(2).join(' ');
if (task) {
const result = routeTask(task);
console.log(JSON.stringify(result, null, 2));
} else {
console.log('Usage: router.js <task description>');
console.log('\nAvailable agents:', Object.keys(AGENT_CAPABILITIES).join(', '));
}
module.exports = { routeTask, AGENT_CAPABILITIES, TASK_PATTERNS };