소스 정보
- 저장소
- 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 code-archaeology명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | code-archaeology |
| description | Use when you need to review and understand old code, data, or analysis files. |
| allowed-tools | Bash(ls*), Bash(cp*), Bash(mkdir*), Bash(git*), Read, Write, Edit, Glob, Grep |
| argument-hint | ["project-path"] |
CRITICAL RULE: Never delete data or code files. Copy to legacy/, never move or delete originals.
Systematically review and understand old code, data, and analysis files.
Based on Scott Cunningham's workflow of reviving old projects - understanding what exists, documenting it, and making it safe to work with.
For formal audits with cross-language replication and referee reports, use the Referee 2 agent (.claude/agents/referee2-reviewer.md). This skill is for understanding and documenting existing code, not formal verification.
Explore the directory:
Understand the pipeline:
Document findings:
Establish safety:
Create audit report:
1. Never delete data. Under no circumstances.
2. Never delete programs. No do-files, no R scripts, nothing.
3. Stay in this folder. Can go down, not up.
4. Use a legacy folder. Move originals there for safekeeping.
5. Copy, don't move. When reorganising, always copy from legacy.
I'm returning to an old project after [TIME]. Please help me understand what's here.
1. Explore the directory and tell me what you find
2. Identify the main analysis scripts and their order
3. Map the data pipeline (inputs → processing → outputs)
4. Note any potential issues (missing files, unclear code, etc.)
5. Create a README documenting everything
Before making ANY changes, create a legacy/ folder and copy everything there.
Understand how data moves through the project:
When you find multiple versions of the same data:
After a code audit, you should have:
project/
├── README.md ← Project overview (generated)
├── AUDIT.md ← Audit findings and issues
├── CLAUDE.md ← Safety rules for this project
├── legacy/ ← Protected original files
├── docs/
│ └── data_dictionary.md
└── output/
└── audit_deck.pdf ← Visual summary
Initial exploration:
"Read all the .do/.R/.py files in this project and create a summary of what each script does, including inputs and outputs."
Data comparison:
"Compare dataset_v1.dta and dataset_v2.dta. Show me where they differ, with summary statistics and visualizations."
Documentation:
"Create a README.md that documents this project's structure, data sources, and how to reproduce the main results."
"Audit my Brexit replication project - I haven't touched it in 8 months. Tell me what's there, what state it's in, and what I need to do to pick it back up."