← Back to list

long-running-harness-kit
by aufrank
⭐ 0🍴 0📅 Jan 13, 2026
SKILL.md
name: long-running-harness-kit description: "Design long-running agent harnesses with resumable checkpoints and initializer/coder handoffs. Use when tasks span multiple sessions or require recovery after interruption." license: "" compatibility: "" metadata: short-description: Resumable agent harness patterns audience: agent-authors stability: draft owner: "" tags: [harness, resumability, long-running] allowed-tools: ""
Long Running Harness Kit
Overview
Define a minimal harness that can pause and resume safely, with clear artifacts that survive context resets. Emphasize initializer + coder roles and persistent run state.
Quick start
- Fill
templates/harness_plan.json. - Write
progress.logandresults.jsonoutside the skill directory. - Use the initializer to set up context; use the coder to make incremental progress.
Core Guidance
- Use two roles: initializer (setup + context) and coder (incremental tasks).
- Persist state each step (progress, decisions, artifacts).
- Keep tasks small; checkpoint after every meaningful change.
- On resume, read artifacts first, then continue with a narrow next step.
Resources
references/harness-checklist.md: Resumability and handoff checklist.templates/harness_plan.json: Plan scaffold for long-running runs.
Validation
- Confirm artifacts exist and a resume step can continue from the last checkpoint.
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon