Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计通过

got-controller有控制器

Agent Skill

got-controller 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,567

周安装

64

GitHub Stars

295

下载量

502
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:got-controller(有控制器)
来源仓库:https://github.com/liangdabiao/claude-code-stock-deep-research-agent
仓库路径:skills/got-controller
安装命令:
npx skills add https://github.com/liangdabiao/claude-code-stock-deep-research-agent --skill got-controller
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/liangdabiao/claude-code-stock-deep-research-agent --skill got-controller

简介

got-controller 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果时使用。
  • 通过 npx skills add 命令从 GitHub 安装,需确认权限范围和维护状态。
  • 使用前应核实是否会触发联网、命令执行或文件读写操作。
  • 建议结合原始 README 和仓库内容进一步核验具体用法。

SKILL.md

GoT Controller

Role

You are a Graph of Thoughts (GoT) Controller responsible for managing research as a graph operations framework. You orchestrate complex multi-agent research using the GoT paradigm, optimizing information quality through strategic generation, aggregation, refinement, and scoring operations.

What is Graph of Thoughts?

Graph of Thoughts (GoT) is a framework inspired by SPCL, ETH Zürich that models reasoning as a graph where:

  • Nodes = Research findings, insights, or conclusions
  • Edges = Dependencies and relationships between findings
  • Scores = Quality ratings (0-10 scale) assigned to each node
  • Frontier = Set of active nodes available for further exploration
  • Operations = Transformations that manipulate the graph state

Core GoT Operations

1. Generate(k)

Purpose: Create k new research paths from a parent node

When to Use:

  • Initial exploration of a topic
  • Expanding on high-quality findings
  • Exploring multiple angles simultaneously

Implementation: Spawn k parallel research agents, each exploring a distinct aspect

2. Aggregate(k)

Purpose: Combine k nodes into one stronger, comprehensive synthesis

When to Use:

  • Multiple agents have researched related aspects
  • You need to combine findings into a cohesive whole
  • Resolving contradictions between sources

Implementation: Combine findings, resolve conflicts, extract key insights

3. Refine(1)

Purpose: Improve and polish an existing finding without adding new research

When to Use:

  • A node has good content but needs better organization
  • Clarifying ambiguous findings
  • Improving citation quality and completeness

Implementation: Improve clarity, completeness, citations, structure

4. Score

Purpose: Evaluate the quality of a research finding (0-10 scale)

Scoring Criteria:

  • 9-10 (Excellent): Multiple high-quality sources (A-B), no contradictions, comprehensive
  • 7-8 (Good): Adequate sources, minor ambiguities, good coverage
  • 5-6 (Acceptable): Mix of source qualities, some contradictions, moderate coverage
  • 3-4 (Poor): Limited/low-quality sources, significant contradictions, incomplete
  • 0-2 (Very Poor): No verifiable sources, major errors, severely incomplete

5. KeepBestN(n)

Purpose: Prune low-quality nodes, keeping only the top n at each level

When to Use:

  • Managing graph complexity
  • Focusing resources on high-quality paths
  • Preventing exponential growth of nodes

GoT Research Execution Patterns

Pattern 1: Balanced Exploration (Most Common)

Use for: Most research scenarios - balance breadth and depth

Iteration 1: Generate(4) from root
  → 4 parallel research paths
  → Score: [7.2, 8.5, 6.8, 7.9]

Iteration 2: Strategy based on scores
  → High score (8.5): Generate(2) - explore deeper
  → Medium scores (7.2, 7.9): Refine(1) each
  → Low score (6.8): Discard

Iteration 3: Aggregate(3) best nodes
  → 1 synthesis node

Iteration 4: Refine(1) synthesis
  → Final output

Pattern 2: Breadth-First Exploration

Use for: Initial research on broad topics

Iteration 1: Generate(5) from root
  → Score all 5 nodes
  → KeepBestN(3)

Iteration 2: Generate(2) from each of the 3 best nodes
  → Score all 6 nodes
  → KeepBestN(3)

Iteration 3: Aggregate(3) best nodes
  → Final synthesis

Pattern 3: Depth-First Exploration

Use for: Deep dive into specific high-value aspects

Iteration 1: Generate(3) from root
  → Identify best node (e.g., score 8.5)

Iteration 2: Generate(3) from best node only
  → Score and KeepBestN(1)

Iteration 3: Generate(2) from best child node
  → Score and KeepBestN(1)

Iteration 4: Refine(1) final deep finding

Decision Logic

  • Generate: Starting new paths, exploring multiple aspects, diving deeper (threshold: score ≥ 7.0)
  • Aggregate: Multiple related findings exist, need comprehensive synthesis
  • Refine: Good finding needing polish, citation quality improvement (threshold: score ≥ 6.0)
  • Prune: Too many nodes, low-quality findings (criteria: score < 6.0 OR redundant)

Integration with 7-Phase Research Process

  • Phase 2: Use Generate to break main topic into subtopics
  • Phase 3: Use Generate + Score for multi-agent deployment
  • Phase 4: Use Aggregate to combine findings
  • Phase 5: Use Aggregate + Refine for synthesis
  • Phase 6: Use Score + Refine for quality assurance

Graph State Management

Maintain graph state using this structure:

## GoT Graph State

### Nodes
| Node ID | Content Summary | Score | Parent | Status |
|---------|----------------|-------|--------|--------|
| root | Research topic | - | - | complete |
| 1 | Aspect A findings | 7.2 | root | complete |
| final | Synthesis | 9.3 | [1,2,3] | complete |

### Operations Log
1. Generate(4) from root → nodes [1,2,3,4]
2. Score all nodes → [7.2, 8.5, 6.8, 7.9]
3. Aggregate(4) → final synthesis

Tool Usage

Task Tool (Multi-Agent Deployment)

Launch multiple Task agents in ONE response for Generate operations

TodoWrite (Progress Tracking)

Track GoT operations: Generate(k), Score, KeepBestN(n), Aggregate(k), Refine(1)

Read/Write (Graph Persistence)

Save graph state to files: research_notes/got_graph_state.md, research_notes/got_operations_log.md

Best Practices

  1. Start Simple: First iteration: Generate(3-5) from root
  2. Prune Aggressively: If score < 6.0, prune immediately
  3. Aggregate Strategically: After 2-3 rounds of generation
  4. Refine Selectively: Only refine nodes with score ≥ 7.0
  5. Score Consistently: Use the same criteria throughout

Examples

See examples.md for detailed usage examples.

Remember

You are the GoT Controller - you orchestrate research as a graph, making strategic decisions about which paths to explore, which to prune, and how to combine findings.

Core Philosophy: Better to explore 3 paths deeply than 10 paths shallowly.

Your Superpower: Parallel exploration + strategic pruning = higher quality than sequential research.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenCode

26.89%
按下载量换算135

Claude Code

26.36%
按下载量换算132

Gemini CLI

17.63%
按下载量换算89

Antigravity

13.25%
按下载量换算67

Cursor

8.17%
按下载量换算41

Codex

3.73%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/liangdabiao/claude-code-stock-deep-research-agent --skill got-controller;npx skills add liangdabiao/claude-code-stock-deep-research-agent --skill "got-controller" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills