Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

ultrabrainultrabrain 搜索

Agent Skill

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

总安装

675

周安装

17

GitHub Stars

公开资料未说明

下载量

140
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/shihyuho/skills --skill ultrabrain

简介

用于查找、检索和筛选相关信息。ultrabrain 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 注意是否会触发联网或文件读写操作。

SKILL.md

Ultrabrain

Drive a personal, LLM-maintained wiki at ~/.ultrabrain/. This skill is a thin trigger layer — the vault is self-contained and methodology rules live in ~/.ultrabrain/AGENTS.md, not here.

Trigger Contract

Five operations. The first two are skill-side; the last three delegate to vault rules.

OperationTrigger examples
bootstrap"bootstrap ultrabrain", "initialize vault", "設定 ultrabrain", or any other operation fires with no vault present
capture"記下來 X", "capture this", "save to vault", "存進 vault", or "capture "
ingest"ingest", "integrate raw", "整合 raw", "整理 vault"
querydescription-driven for factual/technical/decision questions, or explicit: "查 vault", "search ultrabrain"
lint"lint vault", "健檢 vault", "check wiki"

Query skip clause

Before reading any vault file for query, verify the user's question plausibly concerns retained knowledge. Skip the vault (answer normally) when the question is:

  • Small talk — greetings, thanks, session meta-questions.
  • Context-local — answerable from the current session or open files ("what does this file do", "why did that fail").
  • Execution requests — "write this", "run that", "refactor X". Vault holds facts, not tasks.

When classification is uncertain, default to skipping. Aggressive description triggering is balanced by this negative filter, not overridden.

Operations

Full step-by-step lives in references/operations.md. Summary:

  • bootstrap creates ~/.ultrabrain/ with AGENTS.md (copied from references/agents-template.md), CLAUDE.md (one line: @AGENTS.md), empty index.md and log.md, and raw/ / wiki/ directories. Refuses if the vault exists unless --force is passed.
  • capture writes session or file content to raw/YYYY-MM-DD-<slug>.md with frontmatter. Resolves ambiguous "記下來" requests by proposing a scope and waiting for user confirmation. Never silently overwrites — collisions go to suffixed filenames or a user-chosen append.
  • ingest loads ~/.ultrabrain/AGENTS.md and follows its Operation: Ingest section to integrate unprocessed raw/ files into wiki/, moving processed raw to raw/.processed/.
  • query loads AGENTS.md, reads index.md first, then follows the vault's query rules (index-first strict; no Grep fallback). Answers cite specific wiki pages. Falls back to general knowledge if the vault is empty, with an explicit note.
  • lint loads AGENTS.md and produces a health report (contradictions, orphans, stale pages, index drift, missing cross-references). Never auto-fixes; asks the user which findings to address.

Every operation appends one line to log.md in the format ISO-8601 OPERATION details.

Vault Contract

Vault location: ~/.ultrabrain/.

AGENTS.md is the single source of truth for methodology. The skill's contract with it is behavioral, not structuralAGENTS.md must define how to perform ingest, query, and lint, in whatever structure the methodology author prefers. The skill makes no assumptions about section headings, page types, tag schemas, or cross-reference syntax.

~/.ultrabrain/CLAUDE.md is exactly one line: @AGENTS.md. This makes the vault rules auto-load if the user cds into the vault inside Claude Code; AGENTS.md stays canonical for cross-tool compatibility.

Vault-side operations (ingest, query, lint) halt if AGENTS.md is missing. Ask the user to bootstrap or restore the file.

The skill treats the vault as read-only except for paths each operation is defined to touch (see references/operations.md).

Methodology Swap

The v1.0.0 default methodology is Karpathy's LLM-maintained-wiki pattern (see references/karpathy-original.md for the source and references/agents-template.md for the agent-readable rendering). To swap:

  1. Replace references/agents-template.md with rules for a different methodology. Only requirement: the new template must define ingest, query, and lint behaviors.
  2. Run bootstrap --force to wipe and rebuild the vault. Destructive — back up ~/.ultrabrain/raw/ first if you want to preserve source material for re-capture.

Hooks

Two hooks are available but not auto-installed:

  • SessionStart — injects vault status (wiki count, unprocessed raw, last ingest) at session start so Claude is aware the vault is available.
  • PreCompact — injects a reminder before context compaction to capture important session content before detail is lost.

On explicit user request ("install ultrabrain hooks"), follow references/setup.md to copy both hook scripts and merge the entries into ~/.claude/settings.json using Read → diff → confirm → Edit discipline. Both hooks install as a bundle; either can be uninstalled individually later.

References

  • references/karpathy-original.md — verbatim source methodology + attribution
  • references/agents-template.md — bootstrap copies this to ~/.ultrabrain/AGENTS.md
  • references/operations.md — full step-by-step for all five operations
  • references/setup.md — hook install/uninstall (SessionStart + PreCompact)
  • references/hooks/session-start.sh — vault status injection on session start
  • references/hooks/pre-compact.sh — capture reminder before compaction

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.96%
按下载量换算50

Claude

31.69%
按下载量换算44

Cursor

18.98%
按下载量换算27

Gemini CLI

8.93%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills