An agentic skills framework & software development methodology that works.
Agent skill for timeboxed execution and verification
This skill gives agents a simple execution loop: define done, do the work, reserve verification time, then stop and report the real state. It is meant to prevent silent overtime, scope creep, and false completion while keeping work visible and testable.
Builders who want their agent to stay inside a deadline and prove results before ending a task.
You can keep agent work bounded, verify the result, and get an honest completion state instead of silent overtime.
What it does
Define done up front
Requires an observable acceptance condition before implementation starts.
Reserve verification time
Freezes scope early enough to run regression tests and a live probe before the deadline.
Fast path for simple tasks
Allows a lightweight path when the task is genuinely simple.
Phase splitting for complex work
Breaks larger work into independently acceptable phases instead of one long run.
Deadline stop rule
Stops at the timebox and reports `verified_complete`, `partial_verified`, `blocked`, `failed`, or `stopped_unverified`.
How to get it
- 1Use the Agent Skills CLI to discover this repository and install the Skill for…
npx skills add wenjimods/timeboxed-execution
- 2Install the latest version from main
hermes skills install https://raw.githubusercontent.com/wenjimods/timeboxed-execution/main/SKILL.md --name timeboxed-execution
- 3For a reproducible install pinned to the current stable release
hermes skills install https://raw.githubusercontent.com/wenjimods/timeboxed-execution/v1.4.1/SKILL.md --name timeboxed-execution
README
Timeboxed Execution
An Agent Skill that helps agents avoid deadline overruns, scope creep, skipped verification, and false completion.
Define done → Reserve verification time → Stop and report honestly
The goal is not to make an agent rush. It is to keep work bounded, visible, and verifiable.
30-Second Example
A 5-minute timebox to fix a reproducible bug:
- Define done: Done requires an observable reproduction, a minimal fix, passing regression tests, and a fresh-process live probe.
- Reproduce & fix: Isolate the root cause and apply the minimal change.
- Freeze scope & verify: Stop implementation early to enter verification; run regression tests and execute the live probe in a fresh process.
- Stop rule: If acceptance is not complete at 5:00, stop and report the state honestly (
partial_verifiedorstopped_unverified) rather than taking silent overtime.
Quick Start
Recommended installation
Use the Agent Skills CLI to discover this repository and install the Skill for compatible agents:
npx skills add wenjimods/timeboxed-execution
The CLI detects supported agents and installs the Skill into their appropriate project-level directories. This repository follows the open Agent Skills specification and can be used across compatible runtimes, including Codex and custom harnesses.
Hermes
Install the latest version from main:
hermes skills install https://raw.githubusercontent.com/wenjimods/timeboxed-execution/main/SKILL.md --name timeboxed-execution
For a reproducible install pinned to the current stable release:
hermes skills install https://raw.githubusercontent.com/wenjimods/timeboxed-execution/v1.4.1/SKILL.md --name timeboxed-execution
The main URL follows the latest repository state. The v1.4.1 URL remains fixed to that release.
Manual installation
Download or clone this repository outside an existing Git project, then copy the timeboxed-execution directory into the skill directory supported by your runtime. Avoid cloning it directly inside another repository, which would create a nested Git repository.
For environments without skill discovery, provide SKILL.md directly as procedural context.
Core ideas
- Define the observable done condition before acting.
- Use a lightweight fast path for genuinely simple tasks.
- Split complex work only into independently acceptable phases.
- Reserve verification time; freeze scope before final acceptance.
- Distinguish implementation, tests, runtime behavior, and persistence.
- Stop safely at the deadline and request extensions explicitly.
- Report one of five completion states:
verified_complete,partial_verified,blocked,failed, orstopped_unverified.
Files
SKILL.md— the reusable workflow.references/validated-patterns.md— anonymized observations, replay cases, and a scoring rubric.LICENSE— MIT License.
Notes
The frontmatter follows the open Agent Skills specification. The Skill is tool-agnostic and supports Linux, macOS, and Windows.
The observed examples are not presented as universal causal proof or performance benchmarks. Evaluate the Skill against representative tasks and counterexamples before broad adoption.
Files in the repo
- references
- LICENSE
- README.md
- SKILL.md
Discussion (0)
Ask about usage, or say what you built with itSign in to join the discussion.
No comments yet. Be the first to say what this is good for.
More skills

Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.
Topic in, narrated explainer video out. A Claude Code / Codex skill that turns any topic into a black-canvas motion-graphics explainer video with TTS voiceover, subtitles and a chapter progress bar. Chinese or English; every frame drawn in code with Remotion.
Public repository for Agent Skills
Open-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)

Production-grade engineering skills for AI coding agents.