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

skillifyskillify 搜索

Agent Skill

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

总安装

749

周安装

30

GitHub Stars

12,513

下载量

242
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/garrytan/gbrain --skill skillify

简介

用于查找、检索和筛选相关信息,支持关键词和任务场景匹配。

  • 适合快速定位候选结果,提升信息获取效率。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态,避免触发不必要操作。
  • 安装方式:npx skills add https://github.com/garrytan/gbrain --skill skillify

SKILL.md

Skillify — The Meta Skill

Contract

A feature is "properly skilled" when all ten checklist items are present:

  1. SKILL.md — skill file with YAML frontmatter, triggers, contract, phases.
  2. Code — deterministic script if applicable.
  3. Unit tests — cover every branch of deterministic logic.
  4. Integration tests — exercise live endpoints, not just in-memory shape.
  5. LLM evals — quality/correctness cases if the feature includes any LLM call.
  6. Resolver trigger — skills/RESOLVER.md entry with the trigger patterns the user actually types.
  7. Resolver trigger eval — test that feeds trigger phrases to the resolver and asserts they route to this skill, not the old pre-skillify path.
  8. Check-resolvable — gbrain check-resolvable passes (skill is reachable, MECE against its siblings, no DRY violations).
  9. E2E test — exercises the full pipeline from user turn to side effect.
  10. Brain filing — if the feature writes brain pages, brain/RESOLVER.md has an entry for the directory so the pages aren't orphaned.

Trigger

  • "skillify this" / "skillify" / "is this a skill?" / "make this proper"
  • "add tests and evals for this"
  • After building any new feature that touches user-facing behavior
  • When you grep the repo and notice a script with no SKILL.md next to it

Phases

Phase 1: Audit what exists

For the feature being skillified, answer:

  • Feature name: what does it do in one line?
  • Code path: where does the implementation live (file path)?
  • Checklist status: run gbrain skillify check <path> (preferred) or the legacy scripts/skillify-check.ts <path> shim. Both produce the same 10-item scorecard. Note which items are missing.

Phase 2: Create missing pieces in order

Fast path — brand-new skill: run gbrain skillify scaffold <name> --description "..." [--triggers "p1,p2,p3"] [--writes-pages --writes-to "people/,companies/"]. This creates all 5 stub files atomically and appends an idempotent resolver row. Every scaffolded file carries the SKILLIFY_STUB sentinel; gbrain check-resolvable --strict will fail CI until you replace the stubs with real content.

Manual path — extending an existing skill: work the list top-down. Each earlier item constrains what later items look like (the SKILL.md contract determines what tests assert; tests determine what evals gate; the resolver entry determines what trigger-eval checks).

  1. Write SKILL.md first. Frontmatter must include name, version, description, triggers[], tools[], mutating. Body has at minimum Contract, Phases, and Output Format sections.
  2. Extract deterministic code into a script if applicable (scripts/*.ts for gbrain; host projects may use.mjs /.py / whatever their runtime uses).
  3. Write unit tests for every branch of the script. Mock external calls (LLM, DB, network) so tests run fast and deterministic.
  4. Add integration tests that hit real endpoints. These catch bugs the unit tests' mocks hide (see the files-test-reimplements-production learning: reimplementation in tests lets production vulnerabilities slip through).
  5. Add LLM evals if the feature includes any LLM call. Even a three-case eval (happy / edge / adversarial) is cheap insurance against prompt regressions.
  6. Add the resolver trigger to skills/RESOLVER.md. Use the trigger patterns the user ACTUALLY types, not what you think they should type.
  7. Add a resolver trigger eval that feeds those patterns in and asserts they route to the new skill.
  8. Run gbrain check-resolvable (auto-detects skill trees) or gbrain check-resolvable --skills-dir <path> for custom locations. OpenClaw workspaces are auto-detected from ~/.openclaw/workspace/skills/. The check validates reachability (is the skill mentioned from RESOLVER.md?), MECE overlap (does it duplicate an existing skill's trigger?), gap detection (are there user intents that fall through the resolver with no match?), and DRY. If it fails, fix the skill (or extend an existing one instead of creating a duplicate).
  9. Add an E2E smoke test. For gbrain: submit a Minion job or run a CLI invocation end-to-end against a fixture brain; assert side effects.
  10. Update brain/RESOLVER.md if the skill writes brain pages. Orphaned brain pages are worse than no brain pages.

Phase 3: Verify

Run each of these and confirm green:

# Unit tests
bun test test/<skill-name>.test.ts

# Integration tests (when applicable)
bun run test:e2e

# Resolver reachability + MECE + DRY
gbrain check-resolvable

# Conformance tests (skill YAML + required sections)
bun test test/skills-conformance.test.ts

Quality gates

A feature is NOT properly skilled until:

  • All tests pass (unit + integration + evals).
  • It appears in skills/RESOLVER.md with accurate trigger patterns.
  • The resolver trigger eval confirms patterns route to the new skill.
  • gbrain check-resolvable shows no orphaned skills, no MECE overlaps, no DRY violations.
  • If it writes brain pages, brain/RESOLVER.md has the directory.

Anti-Patterns

  • ❌ Code with no SKILL.md — invisible to the resolver; the agent will never run it.
  • ❌ SKILL.md with no tests — untested contract; one prompt change regresses silently.
  • ❌ Tests that reimplement production code — the reimplementation's bugs don't catch production's bugs (the files-test-reimplements- production lesson).
  • ❌ Resolver entry that uses internal jargon the user never types — trigger patterns must mirror real user language.
  • ❌ Feature that writes to brain without a brain/RESOLVER.md entry — orphaned pages the agent will never find.
  • ❌ Deterministic logic in LLM space — should be a script.
  • ❌ LLM judgment in deterministic space — should be an eval.

Why skillify + check-resolvable is the right pair

Hermes and similar agent frameworks auto-create skills as a background behavior. That's fine until you don't know what the agent shipped — checklists decay, tests drift, resolver entries get stale.

Gbrain ships the same capability as two user-controlled tools:

  • /skillify builds the checklist and helps you fill in the gaps.
  • gbrain check-resolvable validates the whole skill tree: reachability, MECE, DRY, gap detection, orphaned skills.

You decide when and what. The human keeps judgment. The tooling keeps the checklist honest. In practice this combo produces zero orphaned skills, every feature with tests + evals + resolver triggers + evals of the triggers.

Output Format

A skillify run produces, in order:

  1. An audit printout listing which of the 10 items exist and which are missing for the target feature.
  2. The files created to close each gap (SKILL.md, test files, resolver entries).
  3. The final gbrain check-resolvable output confirming reachability.
  4. A one-line summary of the resulting skill completeness score (N/10).

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.15%
按下载量换算85

Claude

30.19%
按下载量换算73

Cursor

20.51%
按下载量换算50

Gemini CLI

10.55%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills