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

skill-shaper技能塑造者

Agent Skill

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

总安装

212

周安装

9

GitHub Stars

1

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bluewaves-creations/bluewaves-skills --skill skill-shaper

简介

用于查找、检索和筛选可定制化解决方案或模板资源。

  • 适合在快速原型搭建或流程标准化场景中使用。
  • 通过 GitHub 仓库安装,支持 Codex、Claude 等宿主调用。
  • 输出结果包含可复用组件和配置示例。skill-shaper 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 建议根据实际需求调整参数和约束条件。

SKILL.md

Skill Shaper

A guide for creating effective skills that extend Claude's capabilities.

Your job is to figure out where the user is in this process and jump in. Maybe they have a workflow they want to capture ("turn this into a skill"). Maybe they want to create something from scratch. Maybe they have an existing skill that needs work. Be flexible — if the user doesn't want evals, skip them. Adapt your language to their technical level.

Communication

Pay attention to cues about the user's familiarity with technical terms:

  • "Evaluation" and "benchmark" are borderline OK for most users
  • "JSON" and "assertion" need signals that the user knows what they mean
  • When in doubt, briefly explain terms with a short definition

Step 1: Capture Intent

Start by understanding what the user wants. The conversation may already contain a workflow to capture — check history for tools used, steps taken, corrections made.

Key questions (don't ask all at once — start with the most important):

  1. What should this skill enable Claude to do?
  2. When should it trigger? Collect 5+ trigger queries and 3+ negative queries (things that should NOT trigger it)
  3. What's the expected output format?

Check available MCPs — if useful for research (searching docs, finding similar skills), research in parallel via subagents if available.

Define success criteria before moving on: trigger queries, minimum acceptable output quality.

Step 2: Plan Reusable Contents

Identify the skill's category — this affects directory structure, testing approach, and templates:

  • Document/Asset Creation — produces files (PDFs, images, documents)
  • Workflow Automation — orchestrates multi-step processes
  • MCP Enhancement — wraps external tools with specialized knowledge

See references/skill-categories.md for detailed guidance.

Analyze each concrete example to identify what to bundle:

PatternSignalBundle As
Same code rewritten each timePDF rotation logicscripts/rotate_pdf.py
Same boilerplate neededFrontend starter codeassets/hello-world/
Complex domain knowledgeAPI schemas, policiesreferences/api_docs.md
Template with variable partsReport structurereferences/template.md

Step 3: Initialize

For new skills, always run the init script:

python3 scripts/init_skill.py <skill-name> --path <directory> [--category <type>]

Categories: document-creation, workflow, mcp-enhancement (default: generic).

Each category generates a tailored SKILL.md template with relevant patterns, plus a .skill-eval/ directory with starter eval files.

Skip this step if updating an existing skill.

Step 4: Write the Skill

This is where the skill comes to life. Read references/authoring-best-practices.md before writing — it covers the principles below in depth with examples.

Description (Most Important)

The description is the primary triggering mechanism. Make it pushy — assertive and territory-claiming:

Weak: "A tool for creating PDF documents from markdown."

Strong: "Generate production-quality PDF documents from markdown content with professional typography and brand-consistent styling. Use this skill whenever the user wants to create a PDF, render markdown to PDF, generate a report, produce a document, or needs any kind of formatted output from text content."

Guidelines:

  • Use imperative form ("Generate...", "Process...", "Create...")
  • Focus on user intent, not implementation
  • List specific trigger contexts and keywords
  • Include both what it does AND when to use it
  • Aim for 100-200 words, max 1024 characters
  • Generalize: cover the category, not just specific examples

Body

Explain the why. Today's LLMs are smart. They have good theory of mind and when given a good harness can go beyond rote instructions. If you find yourself writing MUST or NEVER in all caps, reframe as reasoning:

Before: "ALWAYS validate output before returning."

After: "Validation catches formatting errors that are invisible in the editor but break the final PDF — run validate.py after every render."

Keep prompts lean. Challenge every paragraph: "Does this justify its token cost?" Prefer concise examples over verbose explanations. The context window is a shared resource.

Progressive disclosure. Keep SKILL.md body under 500 lines. Split content into reference files when approaching this limit. Each reference file should be clearly linked from SKILL.md with guidance on when to read it.

Bundled resources:

  • scripts/ — Deterministic code that's rewritten repeatedly. Execute without loading into context.
  • references/ — Documentation loaded as needed. Include grep patterns for large files (>10k words).
  • assets/ — Files used in output (templates, fonts, images). Not loaded into context.

See references/output-patterns.md for template and visual output patterns. See references/workflows.md for sequential, conditional, iterative, and multi-MCP patterns.

Specification Compliance

See references/skill-specification.md for:

  • Frontmatter constraints (name: max 64 chars, hyphen-case; description: max 1024 chars)
  • Supported frontmatter fields (name, description, allowed-tools, license, compatibility, context, agent, hooks, model, user-invocable, argument-hint, disable-model-invocation)
  • String substitutions ($ARGUMENTS, $N, ${CLAUDE_SESSION_ID})
  • Dynamic context injection (!command`` preprocessing)
  • Validation rules

Step 5: Validate and Package

Validation

Primary: skills-ref validate <path/to/skill-folder>

If not installed: uv pip install -e deps/agentskills/skills-ref/

Fallback: python3 scripts/quick_validate.py <path/to/skill-folder>

Packaging

python3 scripts/package_skill.py <path/to/skill-folder> [output-dir]

Validates automatically, then creates a .skill ZIP file.

Step 6: Test, Eval, Ship

Quick Manual Testing

Before automated evals, do a quick sanity check:

  • Try 5+ paraphrased trigger queries — does the skill activate?
  • Try 3+ unrelated queries — does it stay quiet?
  • Run the primary workflow end-to-end with realistic inputs
  • Test at least one edge case

Automated Evaluation

For thorough testing, use the skill-eval skill. It provides:

  • Automated eval scaffolding from trigger queries
  • Two-tier grading (programmatic + agent)
  • Token budget analysis
  • Regression testing with pinned baselines
  • Description optimization loop with train/test split
  • Interactive HTML review viewer

Ship Pipeline

When the skill is ready: validate → eval (all checks pass, 80%+ assertions) → quality gate (under 500 lines, no TODOs, refs exist, token budget OK) → package.

See references/distribution-guide.md for distribution channels and positioning.

Reference Materials

Consult these based on your needs during skill creation:

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.12%
按下载量换算26

Claude

29.6%
按下载量换算22

Cursor

17.65%
按下载量换算13

Gemini CLI

8.26%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills