Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计未展示

brewcode%3askillsbrewcode 3askills 搜索

Agent Skill

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

总安装

349

周安装

14

GitHub Stars

24

下载量

113
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/kochetkov-ma/claude-brewcode --skill brewcode:skills

简介

brewcode%3askills 提供技能的全生命周期管理,包括列出、更新与创建。

  • 适用于批量维护 Agent 技能,支持按名称、路径或文件夹进行智能匹配。
  • 可通过 spec 文件或 prompt 快速生成新技能模板。
  • 操作前建议备份现有配置,避免误删关键技能定义。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

skills Skill

Skill Management: List, improve, create skills with activation optimization.

Phase 1: Parse Arguments

Extract mode and target from $ARGUMENTS:

PatternModeTarget
emptylistnone
listlistnone
`up <name\path\folder>`upskill name, path, or folder
`create <prompt\spec-path>`createprompt or path to spec file
`<path\name>` (not a mode)up (default)skill name, path, or folder

Smart Detection: If first argument is NOT a mode keyword (list, up, create), treat entire input as target for up mode.

Examples:

  • /brewcode:skillslist
  • /brewcode:skills listlist
  • /brewcode:skills up commitup, target=commit
  • /brewcode:skills up ~/.claude/skills/up, target=folder (all skills)
  • /brewcode:skills create "semantic code search"create, target=prompt
  • /brewcode:skills create./spec.mdcreate, target=spec file
  • /brewcode:skills commitup, target=commit (shorthand)
  • /brewcode:skills brewcode/skills/setupup, target=path (shorthand)
  • /brewcode:skills ~/.claude/skills/up, target=folder (shorthand)

Mode: list

List all skills (global, project, plugin).

EXECUTE using Bash tool:

bash "scripts/list-skills.sh" && echo "✅ list" || echo "❌ list FAILED"
STOP if ❌ — verify skill base directory is resolved and scripts exist.

Mode: up

Improve skill(s) via skill-creator agent.

Step 1: Resolve Target

Target TypeResolution
Skill name (commit)Search in global/project/plugin skills
Path (~/.claude/skills/commit/SKILL.md)Use directly
Folder (~/.claude/skills/)Find all */SKILL.md in folder

EXECUTE using Bash tool — resolve target:

TARGET="$ARGUMENTS"
# Remove "up " prefix if present (explicit mode), else use as-is (shorthand)
if [[ "$TARGET" == up\ * ]] || [[ "$TARGET" == "up" ]]; then
  TARGET="${TARGET#up }"
  TARGET="${TARGET#up}"
fi
TARGET="$(echo "$TARGET" | xargs)"  # trim

if [[ -z "$TARGET" ]]; then
  echo "❌ No target specified. Usage: /brewcode:skills up <name|path|folder>"
  echo "Shorthand: /brewcode:skills <name|path|folder>"
  exit 1
fi

# Check if it's a path
if [[ -d "$TARGET" ]]; then
  echo "TYPE: folder"
  echo "PATH: $TARGET"
  find "$TARGET" -name "SKILL.md" -type f 2>/dev/null | head -20
elif [[ -f "$TARGET" ]]; then
  echo "TYPE: file"
  echo "PATH: $TARGET"
elif [[ -f "$TARGET/SKILL.md" ]]; then
  echo "TYPE: skill-dir"
  echo "PATH: $TARGET/SKILL.md"
else
  # Search by name
  echo "TYPE: name"
  echo "NAME: $TARGET"
  # Search locations
  for loc in ~/.claude/skills .claude/skills; do
    if [[ -f "$loc/$TARGET/SKILL.md" ]]; then
      echo "FOUND: $loc/$TARGET/SKILL.md"
    fi
  done
fi

Step 2: Spawn skill-creator Agent(s)

Single skill: Spawn one agent.

Task tool:
  subagent_type: "brewcode:skill-creator"
  prompt: |
    Improve this skill's activation rate and quality.

    Skill path: {SKILL_PATH}

    Tasks:
    1. Read current SKILL.md
    2. Analyze description for trigger keywords
    3. Check body for imperative form, clear instructions
    4. Apply skill-creator best practices
    5. Update SKILL.md with improvements

    Focus on:
    - Description has "Use when:", "Trigger keywords:", "Triggers -"
    - No summary in description (only triggers!)
    - Third-person voice
    - Imperative form in body
    - <500 lines
  model: opus

Multiple skills (folder): Spawn agents in parallel (single message).

# For each SKILL.md found, spawn in ONE Task call block:
Task tool:
  subagent_type: "brewcode:skill-creator"
  prompt: "Improve skill: {SKILL_PATH_1}..."

Task tool:
  subagent_type: "brewcode:skill-creator"
  prompt: "Improve skill: {SKILL_PATH_2}..."

# etc.
CRITICAL: Spawn ALL agents in a single message for parallel execution.

Mode: create

Research topic, then create skill via skill-creator.

Step 1: Determine Input Type

InputAction
Path to .md fileRead as spec
Text promptUse as research query

Step 2: Clarify Invocation Type

Use AskUserQuestion before spawning any agents:

header: "Invocation"
question: "Who will invoke this skill?"
options:
  - label: "User only (slash command)"
    description: "Only via /skill-name — sets disable-model-invocation: true, simple description"
  - label: "LLM auto-detect"
    description: "Claude picks it up from context — full trigger keyword optimization"
  - label: "Both (default)"
    description: "User slash command + LLM auto-detection"

Save answer as INVOCATION_TYPE for use in Step 4.


Step 3: Parallel Research

Spawn two agents in parallel (single message):

Task tool:
  subagent_type: "Explore"
  prompt: |
    Research codebase for: {TOPIC}

    Find:
    - Related existing skills
    - Patterns and conventions
    - Similar implementations
    - Relevant file structures

    Output: Summary of findings for skill creation.

Task tool:
  subagent_type: "general-purpose"
  prompt: |
    Web research for: {TOPIC}

    Search for:
    - Best practices for this type of skill
    - Similar tools/implementations
    - Common patterns and conventions

    Use WebSearch and WebFetch tools.
    Output: Summary of external knowledge for skill creation.

Step 4: Create Skill

After research completes, spawn skill-creator:

Task tool:
  subagent_type: "brewcode:skill-creator"
  prompt: |
    Create new skill based on research.

    Topic: {TOPIC}
    Invocation type: {INVOCATION_TYPE}

    ## Codebase Research
    {EXPLORE_RESULTS}

    ## Web Research
    {WEB_RESULTS}

    ## Requirements
    - Location: .claude/skills/{skill-name}/ (project) or ~/.claude/skills/{skill-name}/ (global)
    - Follow skill-creator best practices
    - Optimized description for 84% activation
    - Include README.md
  model: opus

Output Format

# skills [{MODE}]

## Detection

| Field | Value |
|-------|-------|
| Arguments | `$ARGUMENTS` |
| Mode | `[detected mode]` |
| Target | `[target or none]` |

## Results

[Mode-specific output]

## Skills Summary

| Location | Count | Skills |
|----------|-------|--------|
| Global (~/.claude/skills/) | N | skill1, skill2 |
| Project (.claude/skills/) | N | skill3 |
| Plugins | N | plugin:skill1 |

## Next Steps

- [recommendations based on mode]

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

35.04%
按下载量换算40

Claude

30%
按下载量换算34

Cursor

22.09%
按下载量换算25

Gemini CLI

10.76%
按下载量换算12

安全审计

暂无安全审计结果可展示。

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills