skills/work-research/SKILL.md
This skill should be used when the current work phase is "research". Provides the research workflow: scope breakdown, codebase exploration, saving findings to _notes/research-*.md, and transition to plan phase.
npx skillsauth add popoffvg/dotfiles work-researchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Research phase workflow. Primary deliverable: _notes/research-*.md files with findings.
Break scope into independent topics. Present a numbered list:
[RESEARCH] I'd like to explore:
1. Auth middleware in core/pl/pkg/auth/
2. SDK auth client in core/platforma/sdk/
3. Session storage in core/pl/pkg/session/
Proceed? (y / n / adjust)
Wait for user approval. Do NOT start research until confirmed.
For each topic, gather information:
Run independent topics in parallel by spawning subagents via the Agent tool — one subagent per topic. Each subagent explores its topic and returns findings. The research agent then writes _notes/research-*.md files from the results.
For each completed topic:
_notes/research-<topic-slug>.md_notes/plan.md Work Notes section with link: - [<topic>](research-<topic-slug>.md)File template:
# Research: <Topic>
Created: YYYY-MM-DD
## Findings
<what was discovered — files, patterns, behavior, architecture>
## Key Files
- `path/to/file.go:42` — description
- `path/to/other.ts:15` — description
## Open Questions
- <anything unclear or needing deeper investigation>
Summarize findings with references to _notes/ files. Keep chat response concise — detailed content lives in the files.
If new areas emerged, propose them as a new numbered list.
If research feels complete (can articulate the problem, know the repos, understand patterns, no major unknowns), suggest:
Research looks complete. When ready, use `/work update move to plan` to begin planning.
_notes/research-<topic-slug>.md_notes/plan.md Work Notes section.Append to _notes/worklog.md: - YYYY-MM-DD HH:MM: <action summary>
Eval checklist:
_notes/research-*.md) contain concrete findings (code paths, API signatures, config values) — not vague summaries?Test inputs:
Can change: scope presentation format, research file structure, topic exploration depth, transition criteria Cannot change: user approval before starting, read-only enforcement, output to _notes/research-*.md Min sessions before eval: 5 Runs per experiment: 3
testing
Use when the user asks to create test sets, enumerate scenarios, generate edge cases, or draft a coverage matrix before implementation.
testing
Use when the user asks to review, audit, score, or validate test sets for missed cases before execution or merge.
tools
Test harness plugins in isolation using tmux panes. Runs MCP servers, unit tests, typecheck, and Claude plugin loading. Use when user says "test plugin", "check plugin", "run plugin tests", "validate plugin", or names a specific plugin to test.
development
Guide for designing integration and e2e tests using BDD (Behavior-Driven Development) methodology with Cucumber-style Given/When/Then scenarios. Use when writing or reviewing tests for any service, API, or component. Language-agnostic — covers scenario structure, step notation, assertion principles, async patterns, and common anti-patterns.