Agent Skillsboshu2/agentops › research

research

GitHub

针对有界问题提供基于当前证据的解答,强调引用来源、代码提交级验证及能力状态报告,避免无效努力。

images/gemini/skills/research/SKILL.md boshu2/agentops

Trigger Scenarios

research investigate this question find evidence

Install

npx skills add boshu2/agentops --skill research -g -y
More Options

Non-standard path

npx skills add https://github.com/boshu2/agentops/tree/main/images/gemini/skills/research -g -y

Use without installing

npx skills use boshu2/agentops@research

指定 Agent (Claude Code)

npx skills add boshu2/agentops --skill research -a claude-code -g -y

安装 repo 全部 skill

npx skills add boshu2/agentops --all -g -y

预览 repo 内 skill

npx skills add boshu2/agentops --list

SKILL.md

Frontmatter
{
    "name": "research",
    "context": {
        "intent": {
            "mode": "questions"
        },
        "window": "fork",
        "sections": {
            "exclude": [
                "HISTORY",
                "TASK"
            ]
        },
        "intel_scope": "topic"
    },
    "consumes": [
        "research-question"
    ],
    "metadata": {
        "tier": "execution",
        "effects": [
            "write_research_report"
        ],
        "disposition": "keep_specialist",
        "capabilities": [
            "research"
        ],
        "dependencies": [],
        "canonical_status": "canonical"
    },
    "produces": [
        "research-report"
    ],
    "practices": [
        "pragmatic-programmer",
        "ddd-bounded-context"
    ],
    "context_rel": [],
    "description": "Answer a bounded question with current cited evidence. Triggers: \"research\", \"investigate this question\", \"find evidence\". (Investigating a repository routes to codebase-recon.)",
    "allowed-tools": "Read, Grep, Glob, Bash, Write",
    "hexagonal_role": "driving-adapter",
    "output_contract": "skills\/research\/schemas\/findings.json",
    "skill_api_version": 1
}

Research

Answer one bounded question with current evidence. Research informs a caller; it does not select work, approve a plan, mutate lifecycle state, or decide what happens next.

Contract

  1. State the question, decision it informs, scope, non-goals, and evidence required for a useful answer.
  2. Search the smallest relevant local sources. For changing external facts, use current primary sources.
  3. Verify structural or semantic-search leads against authoritative content.
  4. Separate observation, inference, contradiction, and unknown.
  5. Lead with the answer and cite every load-bearing claim.
  6. Report unchecked scope and stop.

Use the current agent inline by default. Parallel readers or alternate runtimes are optional execution choices only when the caller authorizes them. Prior research, CASS, MS, codebase recon, and pattern mining are advisory context sources, not required phases. Hydrate only the sources the current decision needs and return cited evidence with source identity and freshness; never build or maintain a merged context store.

Commit-level citation for code claims

A claim about what code does cites the commit it was observed at, plus file:line — code moves, and a citation without a revision decays silently into a claim about a repository that no longer exists. For the working tree, record the current HEAD and whether the cited file carries uncommitted changes. The named failure mode is the floating citation: a path and line that resolved when written, drifted after a refactor, and now lends false authority to a stale answer. A reader must be able to run git show <commit>:<path> and see the cited lines; a code claim that cannot survive that replay is reported as unverified, not asserted.

Done means observable capability

Research is done when its capability flags are answerable, not when effort feels sufficient. At the start, derive from the bounded question a short list of capability statements — "can name the module that owns X, with citation", "can state whether Y is reachable from Z, or that this is unknown". The stop condition: every flag is either satisfied with evidence or explicitly reported unknown with what was searched. Hours spent and files read are not flags. The named failure mode is effort-shaped doneness — stopping because the search was long, and shipping an answer whose load-bearing claim was never actually established. If a flag stays unsatisfiable inside scope, say so and stop; widening the question mid-search is a new question, and the caller owns it.

Multiple caller-supplied reports

When the caller supplies several reports for one bounded question, synthesize them as evidence inside this same Research invocation:

  1. Build a source ledger before comparing claims. Preserve each report's path or supplied identifier, title, author/runtime when known, and revision or date when supplied. Assign a short local label without replacing that identity.
  2. Extract each load-bearing claim with its source label and original evidence reference. Normalize wording only for comparison; never merge citations or make agreement erase provenance.
  3. Group comparable claims into agreement, contradiction, and unknown. Agreement means independent reports support the same claim. Contradiction preserves the conflicting claims and evidence. Unknown means the reports do not establish the fact or the underlying source was not checked. Reports that repeat one upstream source are agreement in wording, not independent corroboration; preserve that shared provenance.
  4. Verify load-bearing claims against authoritative content when the bounded question requires it. A report's conclusion is advisory, not authority.
  5. Produce one cited synthesis that states what the reports jointly support, where they disagree, and what remains unknown. Report checked and unchecked sources, then stop.

Do not recursively launch another Research pass, invent a synthesis umbrella, or start a new runtime merely because multiple reports exist. Additional readers remain caller-authorized execution choices, not part of this procedure.

Output

For a quick question, return the cited answer directly. When the caller asks for a durable artifact, write one report containing:

  • question and scope;
  • answer;
  • evidence references;
  • contradictions and unknowns;
  • checked and unchecked areas.

For a durable synthesis of multiple reports, also include source_ledger and comparison (agreements, contradictions, and unknowns) as defined by the output schema. Single-report outputs may omit those optional fields.

Do not emit approval, confidence gates, retry instructions, owner, next action, or delivery state.

Version History

  • 7b07a7d Current 2026-08-19 22:00

    细化执行规范:明确仅按需水合源数据,禁止维护合并上下文;新增多调用方报告合成逻辑与源账本构建要求。

  • 3f402e5 2026-07-24 22:07

Same Skill Collection

images/gemini/skills/account-rotation/SKILL.md
images/gemini/skills/agent-mail/SKILL.md
images/gemini/skills/agent-native/SKILL.md
images/gemini/skills/agy-native/SKILL.md
images/gemini/skills/anti-ceremony/SKILL.md
images/gemini/skills/automation-shape-routing/SKILL.md
images/gemini/skills/bootstrap/SKILL.md
images/gemini/skills/cass/SKILL.md
images/gemini/skills/cc-hooks/SKILL.md
images/gemini/skills/codebase-recon/SKILL.md
images/gemini/skills/codex-exec/SKILL.md
images/gemini/skills/converter/SKILL.md
images/gemini/skills/council/SKILL.md
images/gemini/skills/craft-goal/SKILL.md
images/gemini/skills/dcg/SKILL.md
images/gemini/skills/doc/SKILL.md
images/gemini/skills/domain/SKILL.md
images/gemini/skills/fitness/SKILL.md
images/gemini/skills/goals/SKILL.md
images/gemini/skills/handoff/SKILL.md
images/gemini/skills/idea-genie/SKILL.md
images/gemini/skills/implement/SKILL.md
images/gemini/skills/learn/SKILL.md
images/gemini/skills/ms/SKILL.md
images/gemini/skills/ntm/SKILL.md
images/gemini/skills/operationalize/SKILL.md
images/gemini/skills/pattern-mining/SKILL.md
images/gemini/skills/plan/SKILL.md
images/gemini/skills/postmortem/SKILL.md
images/gemini/skills/premortem/SKILL.md
images/gemini/skills/product/SKILL.md
images/gemini/skills/rch/SKILL.md
images/gemini/skills/reality-check/SKILL.md
images/gemini/skills/refactor/SKILL.md
images/gemini/skills/reverse-engineer/SKILL.md
images/gemini/skills/rpi/SKILL.md
images/gemini/skills/sbh/SKILL.md
images/gemini/skills/scaffold/SKILL.md
images/gemini/skills/scope/SKILL.md
images/gemini/skills/security/SKILL.md
images/gemini/skills/shared/SKILL.md
images/gemini/skills/skill-builder/SKILL.md
images/gemini/skills/standards/SKILL.md
images/gemini/skills/status/SKILL.md
images/gemini/skills/swarm/SKILL.md
images/gemini/skills/test/SKILL.md
images/gemini/skills/toil-mining/SKILL.md
images/gemini/skills/using-flywheel/SKILL.md
images/gemini/skills/using-gc/SKILL.md

Metadata

Files
0
Version
7b07a7d
Hash
cf6a5d09
Indexed
2026-07-24 22:07

inicio - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-20 01:54
浙ICP备14020137号-1 $mapa de visitantes$