auto-executor

Automate documented task execution via sub-agents with per-task commits.

7|4|Updated Nov 1, 2025
One-click install
npx skills add https://github.com/windschord/claude_skils --skill auto-executor
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: auto-executor
Source: https://github.com/windschord/claude_skils/tree/main/task-executor
Command: npx skills add https://github.com/windschord/claude_skils --skill auto-executor

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automatically reads tasks from docs/tasks.md and uses sub-agents to implement them, executing parallelizable tasks concurrently, creating commits per task, and updating tasks.md to mark completion.

Core Features & Use Cases

  • Automatic task extraction from docs/tasks.md
  • Sub-agent driven implementation
  • Parallel execution of independent tasks
  • Automatic commits per task
  • Safe commits before major changes
  • Auto-update of tasks.md upon completion

Quick Start

  1. Read docs/tasks.md and identify TODO tasks.
  2. Use sub-agents to implement the tasks.
  3. Commit changes for each task.
  4. Update tasks.md to reflect DONE status.
  5. Use: jules list to monitor tasks and jules status for progress.

Frequently Asked Questions about auto-executor

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate task execution from a documentation file?

Automate task execution by reading tasks from docs/tasks.md and using sub-agents to implement them. The Skill extracts TODO items, orchestrates parallel execution of independent tasks, creates commits per task, and updates task status automatically upon completion.

Can I run multiple tasks in parallel with automated commit management?

Yes. The Skill groups parallelizable tasks and executes them concurrently, then issues individual commits for each task. This ensures safe, auditable changes while reducing total execution time for independent work.

How does sub-agent orchestration improve task implementation workflows?

Sub-agents handle task implementation while the Skill manages dependency analysis, execution planning, and work grouping. This separation lets agents focus on implementation details while the orchestrator ensures correct sequencing, parallel safety, and commit hygiene.

What happens to docs/tasks.md after tasks complete?

The Skill automatically updates docs/tasks.md to mark completed tasks as DONE, maintaining an audit trail of task status. Use `jules list` to monitor tasks and `jules status` to track overall progress.

Does this approach require pre-change commits before major modifications?

Yes. The Skill creates safe commits before executing major changes, ensuring you can revert if needed. Each task then receives its own commit after implementation, providing granular audit history.