소스 정보
- 저장소
- flonat/claude-research
- 최근 소스 활동
- 2026년 5월 3일 18:13
- 감지된 SKILL.md 언어
- 영어
- 스타
- 113
- 포크
- 19
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/flonat/claude-research --skill session-health명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | session-health |
| description | Use when you need to check current context status and session health. |
| allowed-tools | ["Read","Glob","Bash(ls*, cat*)"] |
On-demand diagnostic showing context usage, preservation state, and open work items. Fast and lightweight — no vault queries.
Read the context monitor state file to get the current tool call count:
~/.claude/sessions/{project-hash}/context-monitor-state.json
The project hash is a SHA-256 of CLAUDE_PROJECT_DIR (first 12 chars). If the state file doesn't exist, report "No context monitor data — hook may not be active."
Calculate:
fired array)Find the latest file in log/plans/:
Find the latest non-compact .md file in log/ (skip files with -compact in the name):
Check when .context/current-focus.md was last modified:
/update-focus"Verify these hooks are configured in ~/.claude/settings.json:
PreCompact → precompact-autosave.py (pre-compact state save)SessionStart compact → postcompact-restore.py (post-compact restore)PostToolUse → context-monitor.py (this monitor)For each: report CONFIGURED or MISSING.
Count unchecked items (- [ ]) in .context/current-focus.md:
Present as a compact status panel:
## Session Health
| Metric | Value |
|--------|-------|
| Context usage | ~XX% (N/150 tool calls) |
| Thresholds fired | none / info / warning / critical |
| Active plan | filename (DRAFT/APPROVED) / none |
| Latest log | filename / none |
| Focus freshness | N days ago / stale warning |
| Open loops | N items |
### Preservation Hooks
| Hook | Status |
|------|--------|
| PreCompact auto-save | CONFIGURED / MISSING |
| Post-compact restore | CONFIGURED / MISSING |
| Context monitor | CONFIGURED / MISSING |
### Recommendations
[Only if there are issues — e.g., stale focus, missing hooks, high context usage]
When context is high (>60%), include these reference tables in the output:
When to compact:
| Phase Transition | Compact? | Why |
|---|---|---|
| Research to Planning | Yes | Research context is bulky; plan is the distilled output |
| Planning to Implementation | Yes | Plan is in a file; free up context for code |
| Implementation to Testing | Maybe | Keep if tests reference recent code |
| Debugging to Next feature | Yes | Debug traces pollute context |
| Mid-implementation | No | Losing file paths and partial state is costly |
| After a failed approach | Yes | Clear dead-end reasoning |
What survives compaction:
| Persists | Lost |
|---|---|
| CLAUDE.md + rules | Intermediate reasoning |
| Task list | File contents previously read |
| MEMORY.md | Multi-step conversation context |
| Git state | Tool call history |
| Files on disk | Verbal preferences |
| precompact-autosave state | — |