소스 정보
- 저장소
- flonat/claude-research
- 최근 소스 활동
- 2026년 3월 18일 13:25
- 감지된 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-log명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | session-log |
| description | Use when you need to create a timestamped progress log for a research session. |
| allowed-tools | Read, Write, Edit, Bash(mkdir*), Bash(ls*) |
| argument-hint | ["project-name-or-path"] |
Automatically create timestamped progress logs for research sessions.
Based on Scott Cunningham's Claude Code workflow: "Progress logs are my autosave of the workflow." When sessions end or crash, the next Claude can read logs and pick up exactly where you left off.
At the end of any significant work session, or when asked to "log this session" or "update progress".
Before writing anything, inventory which projects were affected during this session. A "project" is any directory with its own CLAUDE.md or log/ directory. Common splits:
| Scope | Where the log goes |
|---|---|
| Work inside a specific project | That project's log/ |
| Global infrastructure (skills, hooks, rules, settings) | Task Management's log/ |
| Course/module-level changes (reorganisation, new CLAUDE.md) | That module's log/ |
Signs of a multi-project session:
~/.claude/ (skills, hooks, settings) → global/infrastructure logFor each project identified in Step 1:
.context/current-focus.md and recent log/ entrieslog/ directory if it doesn't existlog/YYYY-MM-DD-HHMM.md within that projectIf there's only one project, this reduces to a single log (the common case).
When multiple logs are created, add a brief cross-reference at the top of each:
> Also logged: [other project name] — `[relative or absolute path to other log]`
This lets a future session in one project discover that related work happened elsewhere.
/update-focus for a structured update (session rotation, open loops), rather than making ad-hoc edits to current-focus.md# Session Log: [Date] [Time]
## Project: [Project Name]
## What We Did
- [Bullet points of accomplishments]
## Key Decisions
- [Any choices made and why]
## Problems/Blockers
- [Issues encountered]
## Next Steps
- [ ] [Actionable next items]
## Files Changed
- [List of modified files — only those in THIS project]
"Please log this session — we worked on the research paper, fixed the simulation code, and decided to target Journal B instead of Journal A."
→ One log in the MCDM project's log/
"Please log this session — we did Workshop 17, reorganised the module folder, and created two new global skills."
→ Three logs:
log/ — workshop completion, reorganisation, CLAUDE.md creationlog/ — new skills (init-project-course, audit-project-course), new hook (ensure-latexmkrc.sh), settings.json changes