.claude/skills/ac-task-executor/SKILL.md
Execute implementation tasks in autonomous coding. Use when running feature implementations, executing build tasks, processing feature queue, or orchestrating task completion.
npx skillsauth add adaptationio/skrillz ac-task-executorInstall 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.
Execute implementation tasks for autonomous coding features.
Orchestrates the execution of feature implementations, managing the task queue and coordinating between planning, implementation, and verification phases.
from scripts.task_executor import TaskExecutor
executor = TaskExecutor(project_dir)
result = await executor.execute_next_feature()
Execute one feature at a time:
result = await executor.execute_feature("auth-001")
Process feature queue continuously:
await executor.execute_queue(max_features=10)
Execute multiple features in a batch:
results = await executor.execute_batch(["auth-001", "auth-002"])
1. SELECT → Choose next feature from queue
2. PREPARE → Load context, generate tests (RED)
3. IMPLEMENT → Write code to pass tests (GREEN)
4. REFACTOR → Clean up while tests pass
5. VALIDATE → Run criteria validation
6. COMMIT → Git commit changes
7. UPDATE → Mark feature as passes: true
8. NEXT → Continue to next feature
{
"feature_id": "auth-001",
"status": "completed",
"phases": {
"prepare": {"success": true, "duration_ms": 1500},
"implement": {"success": true, "duration_ms": 45000},
"validate": {"success": true, "duration_ms": 5000},
"commit": {"success": true, "commit_hash": "abc123"}
},
"tests": {
"total": 5,
"passed": 5,
"failed": 0
},
"metrics": {
"tokens_used": 15000,
"estimated_cost": 0.23
}
}
ac-state-tracker, ac-test-generator, ac-criteria-validatorac-commit-manager, ac-qa-reviewerac-session-managerSee scripts/task_executor.py for full implementation.
development
Setup secure web-based terminal access to WSL2 from mobile/tablet via ttyd + ngrok/Cloudflare/Tailscale. One-command install, start, stop, status. Use when you need remote terminal access, web terminal, browser-based shell, or mobile access to WSL2 environment.
development
Complete development workflows where Claude writes the code while Gemini and Codex provide research, planning, reviews, and different perspectives. Claude remains the main developer. Use for complex projects requiring expert planning and multi-perspective reviews.
development
Systematic progress tracking for skill development. Manages task states (pending/in_progress/completed), updates in real-time, reports progress, identifies blockers, and maintains momentum. Use when tracking skill development, coordinating work, or reporting progress.
testing
Comprehensive testing workflow orchestrating functional testing, example validation, integration testing, and usability assessment. Sequential workflow for complete skill testing from examples through scenarios to integration validation. Use when conducting thorough testing, pre-deployment validation, ensuring skill functionality, or comprehensive quality checks.