Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

meta-methodology-research-methodology元方法论 研究方法论

Agent Skill

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

总安装

272

周安装

11

GitHub Stars

5

下载量

85
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:meta-methodology-research-methodology(元方法论 研究方法论)
来源仓库:https://github.com/agents-inc/skills
仓库路径:skills/meta-methodology-research-methodology
安装命令:
npx skills add https://github.com/agents-inc/skills --skill meta-methodology-research-methodology
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/agents-inc/skills --skill meta-methodology-research-methodology

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配和来源线索整理等研究检索场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态,注意是否涉及联网或文件操作。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Research Methodology

Quick Guide: Investigation flow is Glob -> Grep -> Read. All claims require file:line evidence. Structured output format for AI consumption. Read-only operations only. Verify every path before reporting.

Detailed Resources:

  • examples/core.md - Investigation templates, output formats, progress tracking
  • reference.md - Decision frameworks, anti-patterns, quality checklist

<critical_requirements>

CRITICAL: Before Any Research

All research must be evidence-based with file:line references

(You MUST read actual code files before making any claims - never speculate about patterns)

(You MUST verify every file path exists using Read tool before including it in findings)

(You MUST include file:line references for all pattern claims)

(You MUST NOT attempt to write or edit any files - you are read-only)

(You MUST produce structured, AI-consumable findings that downstream agents can act on)

</critical_requirements>


Auto-detection: Pattern research, implementation discovery, architecture investigation, API cataloging

When to use:

  • Discovering how patterns are implemented in a codebase
  • Cataloging components, APIs, or architectural decisions
  • Finding similar implementations to reference for new features
  • Understanding existing conventions before implementation

Key patterns covered:

  • Investigation flow (Glob -> Grep -> Read)
  • Evidence-based claims with file:line references
  • Structured output format for AI consumption
  • Self-correction triggers for research quality
  • Progress tracking for complex research

When NOT to use:

  • When you need to implement code (research informs, doesn't replace implementation)
  • When you need to create specifications (research feeds into specs, but doesn't produce them)
  • When you need to review existing code for quality (research discovers patterns, doesn't judge them)

Philosophy

Research is investigation, not speculation. Every claim must be backed by evidence from actual code files. The output format is designed for consumption by other AI agents, not humans - this means structured sections, explicit file paths, and actionable recommendations.

Core Research Principles:

  1. Evidence First - Never claim a pattern exists without reading the file
  2. Verify Paths - Every file path in findings must be confirmed with Read
  3. Be Specific - Line numbers, not vague references
  4. Be Actionable - Tell developers exactly which files to reference
  5. Be Honest - If you can't find something, say so

Core Patterns

Pattern 1: Investigation Flow (Glob -> Grep -> Read)

The three-step investigation flow ensures thorough and efficient research.

Flow Structure

1. GLOB - Find candidate files
   ├── Use file patterns (*.tsx, *store*, *auth*)
   ├── Target specific directories when known
   └── Cast wide net initially, narrow later

2. GREP - Search for keywords/patterns
   ├── Use content patterns (useQuery, export const)
   ├── Narrow down to relevant files
   └── Note frequency of pattern usage

3. READ - Examine key files completely
   ├── Don't skim - read files that matter
   ├── Note line numbers for key patterns
   └── Understand the full context

Why this flow: Glob finds files efficiently, Grep narrows to relevant content, Read provides complete understanding. This prevents speculation and ensures evidence-based claims.

For detailed code examples, see examples/core.md.


Pattern 2: Evidence-Based Claims

Every claim in research findings must have supporting evidence with file paths and line numbers. Include the file path, line range, usage count, actual code snippet, and verification status.

Why this matters: Downstream agents will use your research to implement features. Inaccurate or unverified claims will lead them astray.

For the claim structure template and good/bad comparison examples, see examples/core.md.


Pattern 3: Structured Output Format

Research findings follow a consistent structure for AI consumption. Every output includes: Research Summary, Patterns Found (with file:line evidence), Files to Reference table, Recommended Approach, and Verification Checklist.

Why structured: Other AI agents parse this output. Consistent structure enables reliable extraction of relevant information.

For the complete output template, see examples/core.md.


<self_correction_triggers>

Self-Correction Checkpoints

If you notice yourself:

  • Reporting patterns without reading files first -> STOP. Use Read to verify the pattern exists.
  • Making claims about architecture without evidence -> STOP. Find specific file:line references.
  • Attempting to write or edit files -> STOP. You are read-only. Produce findings instead.
  • Providing generic advice instead of specific paths -> STOP. Replace with concrete file references.
  • Assuming APIs without reading source -> STOP. Read the actual source file.
  • Skipping file path verification -> STOP. Use Read to confirm every path you report.
  • Expanding scope beyond the research question -> STOP. Answer what was asked, no more.
  • Giving implementation opinions when asked for research -> STOP. Report findings, not recommendations.

</self_correction_triggers>


<post_action_reflection>

Post-Action Reflection

After each research action, evaluate:

  1. Did I verify all file paths exist before including them?
  2. Are my pattern claims backed by specific code examples?
  3. Have I included line numbers for key references?
  4. Is this research actionable for the consuming agent?
  5. Did I stay within the scope of the research question?
  6. Did I miss any obvious related patterns?

Only report findings when you have verified evidence for all claims.

</post_action_reflection>


<progress_tracking>

Progress Tracking

For complex research spanning multiple areas, use the progress tracking template to maintain orientation. Track files examined, patterns found, and gaps identified.

See examples/core.md - Pattern 6 for the full template.

</progress_tracking>


Integration Guide

Research is read-only. Never write or edit files during research. Produce structured findings that other agents can act on.

Output consumers: Any agent that needs to understand codebase patterns before implementing, specifying, or reviewing code.


<red_flags>

RED FLAGS

High Priority Issues:

  • Claiming patterns without file:line evidence
  • Including file paths that weren't verified with Read
  • Speculating about code structure without investigation
  • Providing implementation advice when asked for research
  • Missing verification checklist in output

Medium Priority Issues:

  • Vague line references ("around line 50" instead of "lines 45-67")
  • Not reporting usage counts when available
  • Skipping the Files to Reference section
  • Not noting gaps or inconsistencies found

Common Mistakes:

  • Assuming file locations from convention without checking
  • Inferring patterns from file names without reading content
  • Mixing research findings with opinions
  • Expanding scope without asking

Gotchas & Edge Cases:

  • Some patterns exist but are deprecated (check for @deprecated comments)
  • Tests may show patterns that differ from production code
  • Config files may override patterns in source code
  • Monorepo patterns may vary by package

See reference.md for anti-pattern code examples and the quality checklist.

</red_flags>


<critical_reminders>

CRITICAL REMINDERS

All research must be evidence-based with file:line references

(You MUST read actual code files before making any claims - never speculate about patterns)

(You MUST verify every file path exists using Read tool before including it in findings)

(You MUST include file:line references for all pattern claims)

(You MUST NOT attempt to write or edit any files - you are read-only)

(You MUST produce structured, AI-consumable findings that downstream agents can act on)

Failure to follow these rules will produce inaccurate research that misleads downstream agents.

</critical_reminders>

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.33%
按下载量换算29

Claude

31.88%
按下载量换算27

Cursor

20.42%
按下载量换算17

Gemini CLI

9.79%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills