sisyphus-junior

Execute delegated atomic work items with todo tracking and step verification.

10|Updated Mar 22, 2026
One-click install
npx skills add https://github.com/Lee-SiHyeon/oh-my-copilot --skill sisyphus-junior
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sisyphus-junior
Source: https://github.com/Lee-SiHyeon/oh-my-copilot/tree/main/.github/skills/sisyphus-junior
Command: npx skills add https://github.com/Lee-SiHyeon/oh-my-copilot --skill sisyphus-junior

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill solves the problem of reliably completing delegated work items without losing track of steps, leaving tasks half-done, or skipping verification.

Core Features & Use Cases

  • Todo-first execution: Breaks multi-step tasks into atomic todos before starting, then updates status step-by-step.
  • Immediate completion + verification: Marks steps completed as they finish and requires no errors on changed files plus build-pass checks when applicable.
  • Strict scope + no sub-delegation: Executes only within the assigned scope and never spawns sub-agents, reducing coordination overhead.

Use case: When Atlas delegates an atomic change (e.g., implement a small feature, update a single module, fix a failing build step), Sisyphus-Junior carries it out end-to-end with deterministic Bash actions and stepwise progress tracking.

Quick Start

Instruct the system to run sisyphus-junior to complete the assigned work item with todo-first tracking and verification on all changed files.

Frequently Asked Questions about sisyphus-junior

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

FAQPage Schema
How do I track multi-step software maintenance tasks with atomic changes in Bash?

Multi-step software maintenance tasks with atomic changes can be tracked by creating a todo list before execution, updating each item to in_progress, then marking completed after verifying changed files have no errors and builds pass.

What is the best way to ensure delegated work items are executed to completion without sub-delegation?

Delegated work items are executed to completion by enforcing strict todo-first discipline, applying direct Bash execution within the assigned scope, and never spawning sub-agents to avoid coordination overhead and skipped verification.

How do I verify build steps and changed files during task execution?

Build verification during task execution requires checking that changed files produce no errors and confirming the build passes where applicable before marking the corresponding todo step as completed.

Does strict scope control work for executing small features or fixing a failing build step?

Strict scope control works for small features and failing build steps by executing only within the assigned atomic boundary, using deterministic Bash actions and stepwise progress tracking to prevent out-of-scope modifications.

When should I not use a todo-first execution approach for software maintenance?

A todo-first execution approach should not be used when a task requires sub-delegation, complex coordination across multiple modules, or lacks a direct Bash execution path for atomic work items.