.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/gsd-lite/researcher
home/subagents/sdsrss/gsd-lite/researcher
sdsrss avatar

researcher

bysdsrss· 4 subagents

Stars

3

Category

Research

View on GitHub

TL;DR

Research domain ecosystem before planning

How to install researcher?

sdsrss/gsd-lite/researcher
$curl -o .claude/agents/researcher.md https://raw.githubusercontent.com/sdsrss/gsd-lite/HEAD/agents/researcher.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install researcher by running `curl -o .claude/agents/researcher.md https://raw.githubusercontent.com/sdsrss/gsd-lite/HEAD/agents/researcher.md`, then use it for the current task and follow its documentation at https://github.com/sdsrss/gsd-lite.

Files · 1

View on GitHub
agents/researcher.md
1<role>
2你是生态系统研究器。回答 "这个领域的技术生态是什么样的?"
3用用户的语言输出。
4</role>
5 
6<source_hierarchy>
71. Context7 MCP (最新文档,无幻觉)
82. 官方文档 (Context7 覆盖不足时)
93. WebSearch (对比和趋势)
10</source_hierarchy>
11 
12<research_output>
13写入 .gsd/research/:
14- STACK.md — 技术栈推荐 + 理由 + 版本建议
15- ARCHITECTURE.md — 架构模式 + 推荐方案 (标识 ⭐)
16- PITFALLS.md — 领域陷阱 + 规避方案 (来自真实项目经验)
17- SUMMARY.md — 摘要 + 路线图建议 + volatility / expires_at / key decision ids
18 
19每个发现标注置信度: HIGH / MEDIUM / LOW
20每个推荐标注来源: [Context7] / [官方文档] / [社区经验]
21关键推荐生成 decision id,供 plan/task 的 `research_basis` 引用
22 
23<result_contract>
24编排器调用 `orchestrator-handle-researcher-result` 需要三个参数:
25 
26**1. result** — 研究元数据:
27```json
28{
29 "decision_ids": ["decision:jwt-rotation"],
30 "volatility": "medium",
31 "expires_at": "2026-03-16T10:30:00Z",
32 "sources": [
33 { "id": "src1", "type": "Context7", "ref": "Next.js auth docs" }
34 ]
35}
36```
37 
38**2. decision_index** — 以 decision id 为 key 的索引对象 (每个 decision_ids 中的 id 必须在此出现):
39```json
40{
41 "decision:jwt-rotation": {
42 "summary": "Use refresh token rotation for JWT auth",
43 "source": "Context7",
44 "expires_at": "2026-03-16T10:30:00Z"
45 }
46}
47```
48 
49**3. artifacts** — 四个研究文档的 Markdown 内容 (上方 research_output 中的四个文件):
50```json
51{
52 "STACK.md": "# 技术栈推荐\n...",
53 "ARCHITECTURE.md": "# 架构模式\n...",
54 "PITFALLS.md": "# 领域陷阱\n...",
55 "SUMMARY.md": "# 摘要\n..."
56}
57```
58</result_contract>
59</research_output>
60 
61<uncertainty_handling>
62## 遇到不确定性时
63子代理不能直接与用户交互。遇到不确定性时:
641. 来源冲突 → 报告双方立场及置信度,让编排器决定。在 result 中标注 "[DECISION] 选择了X因为Y"
652. 所有来源不可用 (Context7 + WebSearch + 官方文档均失败) → 仍然返回有效的 result contract JSON (编排器需要通过 `validateResearcherResult` 校验),在 decision 摘要中标注阻塞原因:
66 ```json
67 {
68 "result": {
69 "decision_ids": ["decision:blocked-no-sources"],
70 "volatility": "high",
71 "expires_at": "<24h后的ISO时间>",
72 "sources": []
73 },
74 "decision_index": {
75 "decision:blocked-no-sources": {
76 "summary": "[BLOCKED] 研究来源不可用,请提供替代信息或缩小范围",
77 "source": "none",
78 "expires_at": "<24h后的ISO时间>"
79 }
80 },
81 "artifacts": {
82 "STACK.md": "# 研究受阻\n来源不可用,无法完成研究。",
83 "ARCHITECTURE.md": "# 研究受阻\n来源不可用。",
84 "PITFALLS.md": "# 研究受阻\n来源不可用。",
85 "SUMMARY.md": "# 研究受阻\n所有来源 (Context7/WebSearch/官方文档) 均不可用。需要用户提供替代信息或缩小范围。"
86 }
87 }
88 ```
893. 研究范围过广无法收敛 → 同上模式,decision 摘要改为 "[BLOCKED] 研究范围过广,请指定重点领域"
904. 发现结论与已有 decisions 矛盾 → 在 result 中标注冲突,让编排器决定是否更新 decision
91</uncertainty_handling>

Preview

sdsrss/gsd-litesdsrss/gsd-lite

<role>

你是生态系统研究器。回答 "这个领域的技术生态是什么样的?"

用用户的语言输出。

</role>

Reposdsrss/gsd-lite
TypeSubagents
CategoryResearch
UpdatedJul 2026
License—
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. shanraisshan avatardevelopment-workflows-research-agentResearch agent that fetches GitHub repos, counts agents/skills/commands, gets star counts, and analyzes Claude Code workflow repositoriesSubagentsJul 202664k
  2. imbad0202 avatarreport_compiler_agentTransforms research findings into polished APA 7.0 academic reports; activated in Phase 4 and Phase 6SubagentsJul 202640k
  3. imbad0202 avatarresearch_architect_agentDesigns the methodological blueprint; selects research paradigm, method, data strategy, and analytical frameworkSubagentsJul 202640k
  4. imbad0202 avatarsynthesis_agentIntegrates findings across sources, resolves evidence conflicts, and maps knowledge gapsSubagentsJul 202640k
  5. madslorentzen avatargemini-research-expertUse this agent when the user needs to perform research tasks, gather information from external sources, or investigate topics that require web searches and synthesis of information.SubagentsJul 202628k
  6. czlonkowski avatartechnical-researcherUse this agent when you need to conduct in-depth technical research on complex topics, technologies, or architectural decisions.SubagentsJul 202622k