Set up an investigation
Instructions
- Create a folder in
{REPO_ROOT}/scratch/ with the format {YYYY-MM-DD}-{descriptive-name}.
- Create a
README.md in this folder with: task description, background context, task checklist. Update with findings as you progress.
- Create scripts and data files as needed for empirical work.
- For complex investigations, split into sub-documents as patterns emerge.
Investigation Patterns
These are common patterns, not rigid categories. Most investigations blend multiple patterns.
Tracing - "trace from X to Y", "what touches X", "follow the wiring"
- Follow call stack or data flow from a focal component to its connections
- Can trace forward (X → where does it go?) or backward (what leads to X?)
- Useful for: assessing impact of changes, understanding coupling
System Architecture Archeology - "document how the system works", "archeology"
- Comprehensive documentation of an entire system or flow for reusable reference
- Start from entry points, trace through all layers, document relationships exhaustively
- For complex systems, consider numbered sub-documents (01-cli.md, 02-data.md, etc.)
Bug Investigation - "figure out why X happens", "this is broken"
- Reproduce → trace root cause → propose fix
- For cross-repo bugs, consider per-repo task breakdowns
Technical Exploration - "can we do X?", "is this possible?", "figure out how to"
- Feasibility testing with proof-of-concept scripts
- Document what works AND what doesn't
Design Research - "explore the API", "gather context", "design alternatives"
- Understand systems and constraints before building
- Compare alternatives, document trade-offs
- Include visual artifacts (mockups, screenshots) when relevant
- For iterative decisions, use numbered "Design Questions" (DQ1, DQ2...) to structure review
Best Practices
- Use
uv with inline dependencies for standalone scripts; for scripts importing local project code, use python directly (or uv run python if env not activated)
- Use subagents for parallel exploration to save context
- Write small scripts to explore APIs interactively
- Generate figures/diagrams and reference inline in markdown
- For web servers:
npx serve -p 8080 --cors --no-clipboard &
- For screenshots: use Playwright MCP for web, Qt's grab() for GUI
- For external package API review: clone to
scratch/repos/ for direct source access
Important: Scratch is Gitignored
The scratch/ directory is in .gitignore and will NOT be committed.
- NEVER delete anything from scratch - it doesn't need cleanup
- When distilling findings into PRs, include all relevant info inline
- Copy key findings, code, and data directly into PR descriptions
- PRs must be self-contained; don't reference scratch files
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: talmolab-sleap-io-investigation3description: Set up an investigation4---56# Set up an investigation78## Instructions9101. Create a folder in `{REPO_ROOT}/scratch/` with the format `{YYYY-MM-DD}-{descriptive-name}`.112. Create a `README.md` in this folder with: task description, background context, task checklist. Update with findings as you progress.123. Create scripts and data files as needed for empirical work.134. For complex investigations, split into sub-documents as patterns emerge.1415## Investigation Patterns1617These are common patterns, not rigid categories. Most investigations blend multiple patterns.1819**Tracing** - "trace from X to Y", "what touches X", "follow the wiring"20- Follow call stack or data flow from a focal component to its connections21- Can trace forward (X → where does it go?) or backward (what leads to X?)22- Useful for: assessing impact of changes, understanding coupling2324**System Architecture Archeology** - "document how the system works", "archeology"25- Comprehensive documentation of an entire system or flow for reusable reference26- Start from entry points, trace through all layers, document relationships exhaustively27- For complex systems, consider numbered sub-documents (01-cli.md, 02-data.md, etc.)2829**Bug Investigation** - "figure out why X happens", "this is broken"30- Reproduce → trace root cause → propose fix31- For cross-repo bugs, consider per-repo task breakdowns3233**Technical Exploration** - "can we do X?", "is this possible?", "figure out how to"34- Feasibility testing with proof-of-concept scripts35- Document what works AND what doesn't3637**Design Research** - "explore the API", "gather context", "design alternatives"38- Understand systems and constraints before building39- Compare alternatives, document trade-offs40- Include visual artifacts (mockups, screenshots) when relevant41- For iterative decisions, use numbered "Design Questions" (DQ1, DQ2...) to structure review4243## Best Practices4445- Use `uv` with inline dependencies for standalone scripts; for scripts importing local project code, use `python` directly (or `uv run python` if env not activated)46- Use subagents for parallel exploration to save context47- Write small scripts to explore APIs interactively48- Generate figures/diagrams and reference inline in markdown49- For web servers: `npx serve -p 8080 --cors --no-clipboard &`50- For screenshots: use Playwright MCP for web, Qt's grab() for GUI51- For external package API review: clone to `scratch/repos/` for direct source access5253## Important: Scratch is Gitignored5455The `scratch/` directory is in `.gitignore` and will NOT be committed.5657- NEVER delete anything from scratch - it doesn't need cleanup58- When distilling findings into PRs, include all relevant info inline59- Copy key findings, code, and data directly into PR descriptions60- PRs must be self-contained; don't reference scratch files6162---63> Converted and distributed by [TomeVault](https://tomevault.io/claim/talmolab) — claim your Tome and manage your conversions.64<!-- tomevault:4.0:skill_md:2026-04-11 -->