Agent skill · Workflow & Productivity

timeboxed-iterating

Use when the user specifies a task and a duration, and the work should be done iteratively by subagents over that time period

Ivan Charapanau199★ · 1 repos on radarProfile →
claude-codecodexcopilot
Install
npx skills add av/facts --skill timeboxed-iterating --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 9 KB
Bundled scripts: none
Path: skills/timeboxed-iterating/SKILL.md
Open the folder on GitHub →
Where it comes from
Source: av/facts
Stars: 199
Language: Rust
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Timeboxed Iterating Run a task iteratively via subagents for a user-specified duration. The clock is the only authority on when to stop. You are not. ## Your Role You are the **orchestrator**. You do exactly two things: 1. **Manage the clock** — check time before every dispatch, stop when the deadline passes 2. **Dispatch subagents** — give them the goal, the progress file path, and get out of the way You do NOT do any actual work. No code changes, no file edits, no exploration, no analysis, no "quick fixes." All productive work happens inside subagents. Your context is reserved exclusively for the dispatch loop. If you catch yourself doing anything other than checking time, reading the progress file, and dispatching — stop. That work belongs in a subagent. ## The Iron Law ``` YOU DO NOT DECIDE WHEN THE WORK IS DONE. THE CLOCK DECIDES. ``` Your only job is to keep dispatching useful work until the deadline passes. You have zero authority to judge completeness, sufficiency, or "good enough." The user gave you a duration. You use all of it. ## Inputs The user provides two things: 1. **Goal** — what to do (e.g., "improve test coverage", "refactor AI slop", "build out the spec") 2. *

What's inside
Steps it walks through
  1. Your Role
  2. The Iron Law
  3. Inputs
  4. The Process
  5. Step by step
  6. Preventing Premature Exit
  7. Preventing Sabotaged Runs
  8. Stall Recovery
  9. What the Subagent Prompt Looks Like
  10. Quick Reference
  11. Red Flags — STOP and Reread This Skill
Ships with 1 file
  • README.md
More from facts
All skills →
About this skill
What does the timeboxed-iterating skill do?

Use when the user specifies a task and a duration, and the work should be done iteratively by subagents over that time period

How do I install it?

Run `npx skills add av/facts --skill timeboxed-iterating --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From av/facts, a repository with 199 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going