بنقرة واحدة
team-shinchan-research
Use when you need web research, documentation lookup, or knowledge gathering.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Use when you need web research, documentation lookup, or knowledge gathering.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Use when you have a large-scale, multi-phase project requiring orchestrated execution.
Use when you need persistent looping until a task is fully complete.
Deterministic adversarial code review for high-stakes scope — independent per-dimension review, a non-skippable per-finding refutation, completeness + interaction critics, and a deterministic 3-lens rubric judge panel. Opt-in main-loop Workflow tier.
Use when the user wants to review accumulated skill feedback, verdict trends, or improvement candidates collected during Stage 4 retrospectives. Trigger on "show skill feedback", "스킬 피드백 보여줘", or finding which skills need /writing-skills work.
Deterministic competitive code tournament — N builders independently solve one task and return patches, an Action-Kamen judge scores them head-to-head, the winner is picked by score and applied. Opt-in main-loop Workflow tier.
Deterministic adversarial debate for high-stakes or irreversible decisions — mandatory refutation plus a scored judge panel. Opt-in main-loop Workflow tier.
| name | team-shinchan:research |
| description | Use when you need web research, documentation lookup, or knowledge gathering. |
| user-invocable | false |
If args is empty or only whitespace:
Ask user: "What would you like to research?"
STOP and wait for user response
If args length > 2000 characters:
Truncate to 2000 characters
Warn user: "Request was truncated to 2000 characters"
Parse mode from args:
youtube or article or auto : extract mode as first word, remainder is the URL/query.auto for URLs (args starts with http), else mode = search (standard web search).Set target = the URL/query: the remainder after the mode keyword, or the whole args when there is no mode keyword. (target is referenced by the Step 2A prompt for every mode.)
Modes youtube, article, auto require a URL. If mode detected but no URL found, ask: "Please provide a URL for {mode} extraction."
youtube / article / auto (one URL), OR a search for a single specific fact/definition ("what is X", "X's default port", one API detail).search that is comparative or survey-shaped — triggers include "compare", "vs", "survey", "which … should we", "options for", "best practices for", "investigate", "pros and cons", or anything that benefits from several independent sources.Route: narrow → Step 2A (single Masumi). breadth → Step 2B (orchestrator-worker fan-out).
Task(
subagent_type="team-shinchan:masumi",
model="sonnet",
prompt=`/team-shinchan:research has been invoked.
## Research Request
Mode: ${mode} <!-- youtube | article | auto | search -->
URL/Query: ${target}
Conduct thorough research and provide:
| Section | Content |
|---------|---------|
| Key Findings | Main discoveries with sources |
| Documentation | Relevant docs and reference links |
| Best Practices | Recommended approaches |
| Caveats | Potential concerns or limitations |
User request: ${args || '(Please describe what to research)'}
`
)
A single Sonnet pass under-covers a multi-part question. Anthropic's orchestrator-worker Research beat single-agent by 90.2% because each parallel worker spends a full, isolated context on one facet. The SKILL's main loop owns the orchestration (Masumi has no Task tool):
${args} into 3–5 independent sub-questions, sized to complexity (a 2-way comparison → 2–3; a broad survey → 5).Task(subagent_type="team-shinchan:masumi", model="sonnet",
prompt=`/team-shinchan:research worker. Parent question: ${args}
Sub-question (yours only): ${subq}
Use WebSearch + WebFetch. Return a tight cited brief: Key Findings (with source URLs) | Best Practices | Caveats. Flag low-confidence or conflicting claims explicitly.`)
Task(subagent_type="team-shinchan:masumi", model="sonnet",
prompt=`/team-shinchan:research synthesis. Original question: ${args}
Worker briefs:
${worker_briefs}
Produce ONE cited report — | Key Findings | Documentation | Best Practices | Caveats | — reconciling conflicts across workers and marking any single-source claim as low-confidence.`)
Launch workers in parallel (cap ~5, matching the 3–5 subagent guidance).
If the breadth research is claim-critical (security best practices, a hard-to-reverse vendor/architecture choice, anything feeding an irreversible Stage-2 decision), after Step 2B narrate a one-line opt-in: "This looks claim-critical — want me to run the native /deep-research for adversarial per-claim verification across more sources?" Do NOT auto-fire it; the user launches /deep-research. (Don't reimplement adversarial claim verification here — native deep-research already does it.)