Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计通过

skill-authoring技能创作

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

4,051

周安装

174

GitHub Stars

131

下载量

1,420
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/pproenca/dot-skills --skill skill-authoring

简介

skill-authoring 用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查,适合让 Agent 梳理敏感配置、检查依赖风险或生成安全复核清单时使用。

  • 适用于代码安全审查、权限管理和认证流程验证等安全相关场景。
  • 可帮助 Agent 分析鉴权逻辑、识别凭据风险并生成安全审计报告。
  • 安装命令:npx skills add https://github.com/pproenca/dot-skills --skill skill-authoring。
  • 使用时不能把工具输出直接当最终结论,涉及密钥、令牌或生产系统时应先确认最小权限。

SKILL.md

AI Agent Skills Best Practices

Design and development guide for AI agent skills, including Claude Code skills and MCP tools. Contains 46 rules across 8 categories, prioritized by impact to guide skill creation, review, and optimization.

When to Apply

  • Creating new Claude Code skills or MCP tools
  • Writing or reviewing SKILL.md metadata and descriptions
  • Optimizing skill trigger reliability
  • Structuring content for progressive disclosure
  • Testing skill activation and behavior
  • Designing tool interfaces for agent workflows

Core Principles

1. Descriptions drive activation. Claude selects skills based on description matching against user intent. Include specific capabilities, trigger keywords, and negative cases. A skill with a vague description activates inconsistently or never.

2. Front-load critical instructions. Claude may truncate long content. Place non-negotiable rules in the first 100 lines. Bury important constraints at the end and they get ignored.

3. Progressive disclosure saves tokens. Load detailed content only when needed. A 2000-line skill wastes context on every activation. Structure as: SKILL.md (overview) → references/ (details) → scripts/ (execution).

4. Test activation, not just execution. A skill that works perfectly but never triggers provides zero value. Test with real user phrases, synonyms, and edge cases before deployment.

5. One skill per domain. Overlapping skills create activation conflicts. Split by clear boundaries (language, framework, workflow stage) with distinct trigger keywords.

Rule Categories

PriorityCategoryImpactPrefix
1Skill Metadata DesignCRITICALmeta-
2Description EngineeringCRITICALdesc-
3Content StructureHIGHstruct-
4Trigger OptimizationHIGHtrigger-
5Progressive DisclosureMEDIUM-HIGHprog-
6MCP Tool DesignMEDIUMmcp-
7Testing and ValidationMEDIUMtest-
8Maintenance and DistributionLOW-MEDIUMmaint-

Quick Reference

1. Skill Metadata Design (CRITICAL)

  • meta-name-format - Use lowercase hyphenated skill names
  • meta-name-hyphen-boundaries - Never start or end names with hyphens
  • meta-name-no-consecutive-hyphens - Avoid consecutive hyphens in names
  • meta-name-uniqueness - Ensure skill names are globally unique
  • meta-required-frontmatter - Include all required frontmatter fields
  • meta-allowed-frontmatter-fields - Use only allowed frontmatter fields
  • meta-frontmatter-yaml-syntax - Use valid YAML frontmatter syntax
  • meta-name-length - Keep skill names under 64 characters
  • meta-directory-match - Match skill name to directory name

2. Description Engineering (CRITICAL)

  • desc-specific-capabilities - Name specific capabilities in description
  • desc-trigger-keywords - Include user trigger keywords in description
  • desc-third-person-voice - Write descriptions in third person
  • desc-length-optimization - Optimize description length for discovery
  • desc-avoid-vague-terms - Avoid vague terms in descriptions
  • desc-differentiate-similar-skills - Differentiate similar skills with distinct triggers
  • desc-include-negative-cases - Include negative cases for precision

3. Content Structure (HIGH)

  • struct-header-hierarchy - Use consistent header hierarchy
  • struct-instructions-first - Put critical instructions early in content
  • struct-imperative-instructions - Write instructions in imperative mood
  • struct-code-blocks-with-language - Specify language in code blocks
  • struct-line-limit - Keep SKILL.md under 500 lines
  • struct-single-responsibility - One skill per domain

4. Trigger Optimization (HIGH)

  • trigger-slash-command-aliases - Include slash command aliases in description
  • trigger-file-type-patterns - Include file type patterns in description
  • trigger-workflow-stages - Reference workflow stages in description
  • trigger-error-patterns - Include error patterns in debugging skills
  • trigger-synonym-coverage - Cover synonyms and alternate phrasings

5. Progressive Disclosure (MEDIUM-HIGH)

  • prog-three-level-disclosure - Implement three-level progressive disclosure
  • prog-one-level-deep-links - Limit reference links to one level deep
  • prog-scripts-execute-not-read - Execute scripts instead of reading code
  • prog-lazy-load-examples - Lazy load examples and reference material
  • prog-mutual-exclusion - Separate mutually exclusive contexts

6. MCP Tool Design (MEDIUM)

  • mcp-tool-naming - Use clear action-object tool names
  • mcp-parameter-descriptions - Document all tool parameters
  • mcp-error-messages - Return actionable error messages
  • mcp-tool-scope - Design single-purpose tools
  • mcp-allowed-tools - Use allowed-tools for safety constraints
  • mcp-idempotent-operations - Design idempotent tool operations

7. Testing and Validation (MEDIUM)

  • test-trigger-phrases - Test skill activation with real user phrases
  • test-edge-cases - Test skills with edge case inputs
  • test-negative-scenarios - Test that skills do NOT trigger on unrelated requests
  • test-instruction-clarity - Test instructions with fresh context

8. Maintenance and Distribution (LOW-MEDIUM)

  • maint-semantic-versioning - Use semantic versioning for skill releases
  • maint-changelog - Maintain a changelog for skill updates
  • maint-plugin-packaging - Package skills as plugins for distribution
  • maint-audit-security - Audit skills before installing from external sources

Creating Rules

Copy assets/templates/_template.md and follow the frontmatter schema:

---
title: Rule Title Here
impact: CRITICAL|HIGH|MEDIUM-HIGH|MEDIUM|LOW-MEDIUM|LOW
impactDescription: Quantified impact (e.g., "2-10x improvement")
tags: prefix, technique, related-concepts
---

Reference files use the pattern: references/{prefix}-{slug}.md

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

28.36%
按下载量换算403

Codex

27.32%
按下载量换算388

OpenCode

18.16%
按下载量换算258

Antigravity

12.72%
按下载量换算181

Gemini CLI

7.58%
按下载量换算108

Cursor

3.44%
按下载量换算49

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills