Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

ogham-research奥格姆研究

Agent Skill

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

总安装

291

周安装

12

GitHub Stars

96

下载量

95
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ogham-mcp/ogham-mcp --skill ogham-research

简介

用于查找、检索和筛选相关信息。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合在关键词搜索或任务场景中快速定位候选结果。
  • 可结合来源仓库 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或文件操作。
  • ogham-research 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Ogham research capture

You capture knowledge to Ogham shared memory. Your job is to store memories that are findable, deduplicated, and well-connected to existing knowledge.

Before storing anything

Every memory goes through three checks:

1. Is it worth storing?

Not everything deserves a memory. Skip anything that's:

  • Obvious from the code or docs (someone can just read the file)
  • Temporary or in-progress (store when it's settled)
  • Generic knowledge (how Python imports work, what Docker does)

Store things that would save time next session: decisions and why they were made, gotchas that surprised you, configuration that isn't obvious, patterns worth reusing.

2. Does it already exist?

Search before storing. Run hybrid_search with a query that captures the core idea. If something similar comes back (check the content, not just the score):

  • Same information, same detail level -- skip it entirely
  • Same topic but your version adds detail -- use update_memory on the existing one instead of creating a duplicate
  • Related but distinct -- store it, the auto-linker will connect them

3. How should it be tagged?

Use a consistent scheme so memories are filterable later:

  • type:decision -- why something was built a certain way
  • type:gotcha -- bugs, workarounds, surprising behavior
  • type:pattern -- conventions or approaches that worked
  • type:config -- environment variables, service setup, deployment
  • type:architecture -- how components connect
  • type:reference -- links, docs, external resources
  • project:<name> -- infer from the repo name, CLAUDE.md, or ask
  • branch:<name> -- current git branch (auto-detect with git branch --show-current). Scope memories to the branch you're working on so they don't pollute search results on other branches. Skip this tag on main/master -- those memories are global.

Always set source to identify which client stored it (e.g. "claude-code", "cursor", "agent-zero").

How to store

Write content that stands alone. Someone reading this memory in six months, in a different project, with no context about today's session, should understand it. Include the "why" not just the "what".

Good: "Ogham's match_memories RPC needs 'set search_path = public, extensions' for pgvector operators. Without it, you get 'operator does not exist: extensions.vector <=> extensions.vector'. The default search_path in Supabase functions is empty."

Bad: "Fixed the pgvector error by updating the search path."

The first one is searchable, specific, and includes the error message. The second one is useless to future-you.

Parameter formatting

MCP tool parameters must be valid JSON types. Common mistakes to avoid:

  • tags: must be a JSON array, NOT a string. Correct: ["type:decision", "project:ogham"]. Wrong: '["type:decision", "project:ogham"]' (stringified array).
  • alternatives (store_decision): same rule, must be a JSON array.
  • related_memories (store_decision): same rule, must be a JSON array of UUID strings.
  • content: plain string, no JSON encoding needed.
  • metadata: must be a JSON object if provided, e.g. {"source_url": "https://..."}.

These rules apply to ALL Ogham MCP tools, including update_memory and store_decision, not just store_memory. The update_memory tool accepts content, tags, and metadata -- same formatting rules.

If an MCP call fails with a Pydantic validation error about "Input should be a valid list," you passed an array as a string. Fix the format and retry.

For decisions, use store_decision

When the user is capturing a decision (chose X over Y, picked an architecture, settled a debate), use store_decision instead of store_memory. It structures the rationale and links to related context automatically.

store_decision(
  decision="Use UUID primary keys instead of bigint",
  rationale="Supabase recommends UUIDs for distributed systems. Bigint requires sequences which don't work well across regions.",
  alternatives=["bigint with sequences", "ULID", "nanoid"],
  reasoning_trace="Evaluated 4 options. Bigint needs sequences which break across regions. ULID is sortable but adds a dependency. Nanoid is short but not universally supported. UUID is native to Postgres and Supabase recommends it.",
  tags=["type:decision", "project:ogham", "database"],
  related_memories=["<id-of-related-memory-if-known>"]
)

The reasoning_trace is optional but valuable. It captures the full chain of thought, not just the conclusion. When someone revisits this decision in 6 months, the trace tells them why the alternatives were rejected.

After storing

Report what you did:

  1. How many memories you checked for duplicates
  2. How many you skipped (already existed)
  3. How many you stored, with their tags
  4. How many you updated (existing memories that needed more detail)

If you stored multiple memories, mention that auto-linking will connect related ones automatically.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.14%
按下载量换算35

Claude

30.63%
按下载量换算29

Cursor

20.08%
按下载量换算19

Gemini CLI

10.13%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills