Skip to main content
ClaudeWave
Skill2.7k estrellas del repoactualizado today

session-state

This skill manages internal session state transitions according to a state machine defined in SESSION_ORCHESTRATION.md, handling state updates at work phase boundaries, escalated transitions when errors occur, and restoration of initialized state when sessions resume. Use only for Claude Code internal workflow orchestration, not for user-facing session management or application state handling.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/Chachamaru127/claude-code-harness /tmp/session-state && cp -r /tmp/session-state/opencode/skills/session-state ~/.claude/skills/session-state
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# Session State Skill

セッション状態の遷移を管理する内部スキル。
`docs/SESSION_ORCHESTRATION.md` に定義された状態機械に従って遷移を検証・実行する。

## 機能詳細

| 機能 | 詳細 |
|------|------|
| **状態遷移** | See [references/state-transition.md](${CLAUDE_SKILL_DIR}/references/state-transition.md) |

## 使用タイミング

- `/work` フェーズ境界での状態更新
- エラー発生時の `escalated` 遷移
- セッション終了時の `stopped` 遷移
- セッション再開時の `initialized` 復帰

## 注意事項

- このスキルは内部使用専用です
- ユーザーが直接呼び出すことは想定していません
- 状態遷移ルールは `docs/SESSION_ORCHESTRATION.md` で定義