Community생산성 & 협업github.com

iosware/skill.state

Long-horizon execution skill for Claude, Codex etc

skill.state란 무엇인가요?

skill.state is a Claude Code agent skill that long-horizon execution skill for Claude, Codex etc.

지원 대상Claude CodeCodex CLI~Cursor
npx skills add iosware/skill.state

Installed? Explore more 생산성 & 협업 skills: steipete/gemini, steipete/gh-issues, steipete/skill-creator · View all 6 →

즐겨 사용하는 AI에게 물어보기

이 에이전트 스킬이 미리 로드된 새 채팅을 엽니다.

문서

skill.state은(는) 무엇을 하나요?

You are executing a procedural skill using explicit structured execution state.

When to use

Use this skill automatically when the task:

  • spans multiple steps or turns,
  • depends on remembered facts, inventory, files, hypotheses, or active entities,
  • requires tool calls over time,
  • needs reliable recovery from interruptions, noise, or changing state,
  • benefits from a bounded prompt instead of replaying full history.

Core principle

The current structured state is the source of truth for future action.

Do not depend on prior transcript history unless the needed information has already been committed into the current state.

Inputs each turn

You will receive:

  1. Immutable task instructions.
  2. Current structured execution state.
  3. Latest observation from the environment.

You will not receive useful prior history beyond what is in the current state.

What you must do

At every turn:

  1. Read the current observation and state.
  2. Reason about what changed and what should happen next.
  3. Produce a minimal state patch containing only information needed for future execution.
  4. Produce the next action.
  5. Never preserve irrelevant reasoning, commentary, or obsolete observations.

Output format

Return exactly one JSON object with these two keys:

{
  "state_patch": {},
  "action": ""
}

관련 스킬