Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

metaskill-authoring元技能创作

Agent Skill

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

总安装

225

周安装

9

GitHub Stars

3

下载量

73
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/gigaverse-app/skillet --skill metaskill-authoring

简介

用于辅助安全审计、权限检查和凭据风险分析。

  • 可帮助梳理敏感配置、检查依赖风险或生成安全复核清单。
  • 使用时不能直接采信工具输出,涉及密钥或生产系统时应确认最小权限。
  • 安装命令:npx skills add https://github.com/gigaverse-app/skillet --skill metaskill-authoring
  • 建议核对原始 README 了解具体功能边界。

SKILL.md

Writing Great Claude Code Skills

First: Two Key Questions

1. What should I name this? See /metaskill-naming for the naming convention and brainstorming process. 2. Single skill or skill group? Does this topic have 3+ distinct concerns users might approach from different angles? If YES, you need a skill GROUP (multiple skills in a plugin), not a single skill. See /metaskill-grouping for the skill group pattern.

Skill Directory Structure

Simple Skill (Single Concern)

skill-name/
  SKILL.md

Skill with Deep Content

skill-name/
  SKILL.md           <- Quick answers and rules
  references/        <- Deep dives (OPTIONAL reading)
    topic-a.md
    topic-b.md

Skill Group (Multiple Concerns)

plugin-name/
  .claude-plugin/
    plugin.json
  skills/
    plugin-name-doing/      <- ends in -ing
      SKILL.md
    plugin-name-other-ing/  <- ends in -ing
      SKILL.md
  README.md

Note: See /metaskill-naming for naming conventions (neutral noun prefix, -ing suffix for skills).

SKILL.md Structure

Required Frontmatter

---
name: skill-name
description: <What it does>. Use when <specific actions>. Triggers on "<keyword1>", "<keyword2>", "<keyword3>", or when <conditions>.
---

The description is CRITICAL - it's the only field that affects triggering. See /metaskill-triggering for optimization techniques.

Optional Frontmatter Fields

---
name: skill-name
description: ...
allowed-tools: Read, Edit, Bash(npm test:*)
disable-model-invocation: true  # Blocks auto-triggering (user must invoke)
---

Content Structure Template

# Skill Title

## Core Philosophy (1-2 sentences)
What problem does this skill solve? What's the key insight?

## Quick Start
The 80% case - what users need most often.

## Critical Rules
Essential dos and don'ts as code blocks:

✅ CORRECT

good_example()

❌ INCORRECT

bad_example()


## Checklist

Before completing, verify:

- Item 1
- Item 2

## Reference Files (if using references/)

For detailed patterns:

- [references/topic-a.md](https://github.com/gigaverse-app/skillet/blob/HEAD/metaskill/skills/metaskill-authoring/references/topic-a.md) - Deep dive on A
- [references/topic-b.md](https://github.com/gigaverse-app/skillet/blob/HEAD/metaskill/skills/metaskill-authoring/references/topic-b.md) - Deep dive on B

## Related Skills

- For X, see `/related-skill-a`
- For Y, see `/related-skill-b`

Progressive Disclosure

Principle: Quick answers in SKILL.md body, deep dives in references.

LocationContent TypeReading
SKILL.md bodyRules, quick start, checklistsMANDATORY
references/Deep explanations, many examplesOPTIONAL

Warning: Don't put critical rules ONLY in references - they might be skipped!

When to Use References vs Skill Groups

Use references/ when:

  • Content supports the main skill but isn't required
  • Users who trigger the skill need the SAME core content
  • Deep dives are nice-to-have, not essential

Use a skill group when:

  • Content is independently triggerable (different keywords)
  • Users might ONLY want a subset
  • Each area has substantial, distinct content

Example:


# references/ appropriate

testing/ SKILL.md <- All testers need this references/ mocking.md <- Some need deep mocking info fixtures.md <- Some need deep fixture info

# Skill group appropriate (note: neutral prefix, -ing suffix)

metaskill/ skills/ metaskill-authoring/ <- "write skill" metaskill-triggering/ <- "fix trigger" (different concern!) metaskill-grouping/ <- "create plugin" (different concern!)

Trigger Optimization

Your skill is useless if it never triggers. Key points:

  • ONLY the description field affects triggering
  • Include exact phrases users say
  • Include action verbs (Create, Write, Generate)
  • Include keyword variants (test, tests, testing)

For comprehensive trigger optimization, see /metaskill-triggering.

Common Mistakes

Body too long: Extract deep content to references/

Critical rules in references: Keep essential rules in SKILL.md body

Weak description: See /metaskill-triggering for optimization

Monolithic skill for complex topic: See /metaskill-grouping for when to split

Bad naming: See /metaskill-naming for the naming convention

Related Skills

  • For naming conventions, see /metaskill-naming
  • For trigger optimization, see /metaskill-triggering
  • For skill group pattern, see /metaskill-grouping
  • For plugin packaging and placement, see /metaskill-packaging
  • To test triggers, use the metaskill-trigger-tester agent

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.7%
按下载量换算27

Claude

31.02%
按下载量换算23

Cursor

16.64%
按下载量换算12

Gemini CLI

8.48%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills