소스 정보
- 저장소
- laicluse/agent-fieldkit
- 최근 소스 활동
- 2026년 6월 19일 12:51
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/laicluse/agent-fieldkit --skill wake명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use when corrective work, migrations, living docs, or temporary diagnostic tests leave superseded residue, or before handoff.
Use when corrective work, migrations, living docs, or temporary diagnostic tests leave superseded residue, or before handoff.
Reference for git-discipline commit bodies, trailers, hook denials, examples, and escape hatches.
SKILL.md 표시 중
| name | wake |
| description | Resume a stalled rover from its loop file and restart its heartbeat. |
| user-invocable | false |
| effort | low |
Revive a loop that was paused, auto-stopped, or lost its cron because the Claude session ended.
.autonomous/ should continuerover:rover (the rover entry point), which always passes a path; if a run lands here without one, treat that as a caller bug and surface the missing argument to the operator rather than guessing which loop to revive.cron_job_id. Use CronList if available via the Skill/Tool interface. A cron_job_id of stopped or failed is a durable terminal marker and means the loop needs a fresh cron regardless of file age. A cron_job_id of none (persistent process) means the original run never had a heartbeat; whether this wake gets one depends on the wake session, not the recorded value (step 4 re-decides).## Context or similar), verify the current branch matches or offer to switch. If no branch was recorded, continue on the current branch.autonomous:keepalive (the wake session is a fresh process and may be interactive or persistent regardless of how the original run started). When the probe finds an interactive session it restores the heartbeat via autonomous:cron and writes the new cron_job_id; a freshly woken mission is active, so autonomous:cron schedules at the active cadence rather than resuming a stale backoff interval. When the probe finds a persistent process it writes none (persistent process) and the loop simply drives the next iteration without a heartbeat. Either way autonomous:cron no-ops when there is nothing to schedule, so a persistent-mode file never triggers a stray CronCreate.## Input section waiting to be readcron concurrency section) before running one iteration of the current phase. This prevents the fresh cron from firing the same iteration in parallel. Release the lock when done.After a context compaction, the conversation summary usually contains phase words (SURVEY, DRIVE, INSPECT, STANDBY). If you see those and a loop file, prefer wake over manual takeover.
The cron is live and will drive from here. If the operator is present, they can add notes to the ## Input section or let the cron tick by itself.