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

skill-creator技能创建器

Agent Skill

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

总安装

214

周安装

9

GitHub Stars

77

下载量

75
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/kienhaminh/anti-chaotic --skill skill-creator

简介

skill-creator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景从来源线索中筛选信息的场景。
  • 通过 npx skills add 命令安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Skill Creation Standards

Create and manage Agent Skills for Antigravity/Gemini CLI.

About Agent Skills

Skills are modular packages that extend Antigravity with specialized expertise and workflows. They follow the open Agent Skills specification.

Skill Locations:

  • Workspace skills: .agent/skills/ - project-specific, committed to version control
  • Global skills: ~/.gemini/skills/ - personal skills across all workspaces

Skill Structure

skill-name/
├── SKILL.md          # Required - instructions and metadata
├── scripts/          # Optional - executable scripts
├── references/       # Optional - documentation to load as needed
└── assets/           # Optional - templates, images, data files

SKILL.md Format

Frontmatter (required)

---
name: skill-name # Required: 1-64 chars, lowercase, hyphens only
description: What skill does # Required: 1-1024 chars, include trigger keywords
license: MIT # Optional: license identifier
compatibility: Requires git # Optional: 1-500 chars, environment requirements
metadata: # Optional: custom key-value pairs
  author: example-org
  version: "1.0"
allowed-tools: Bash(git:*) Read # Experimental: pre-approved tools
---

Name rules:

  • Lowercase alphanumeric and hyphens only (a-z, 0-9, -)
  • No starting/ending hyphens, no consecutive hyphens (--)
  • Must match parent directory name

Description tips:

  • Include WHEN to use: specific scenarios, file types, or tasks
  • Add keywords that help agents identify relevant tasks

Body Content

Markdown instructions for the agent. Keep under 5000 tokens for optimal context usage.

Include:

  • Tool Usage Standards: Standard patterns for using Antigravity tools (run_command, read_file) within this domain.
  • Step-by-step workflows (Procedures, not Lifecycle Workflows)
  • Code examples
  • Edge cases and troubleshooting

Skill Design Principles

Strict Separation of Concerns:

  • Skill = Knowledge: Capabilities, Standards, Best Practices, Reference Data.
  • Workflow = Process: Steps, Sequences, Lifecycles, Timelines.
[!WARNING] Do NOT embed Workflows in Skills. - ❌ Bad: A backend-developer skill defining a "Feature Implementation" lifecycle. - ✅ Good: A backend-developer skill defining "API Design Standards" and asking the user to use a generic Workflow to execute it.

Progressive Disclosure

Skills use three-level loading to manage context efficiently:

  1. Metadata (~100 tokens): name + description loaded at startup
  2. Instructions (<5000 tokens): Full SKILL.md body when skill activates
  3. Resources (as needed): scripts/, references/, assets/ loaded on demand

Creating a Skill

Step 1: Clarify Scope (Required)

Always ask the user to clarify the skill's scope before proceeding:

  • What specific tasks should this skill handle?
  • What tools, APIs, or frameworks does it involve?
  • What are the expected inputs and outputs?
  • Are there any existing workflows or patterns to follow?

Step 2: Research & Analysis

Use available tools to understand the full picture:

  1. Search tools: Use search_web, read_url_content to research official documentation
  2. Codebase analysis: Use grep_search, find_by_name to understand existing patterns

Analyze step-by-step:

  • What are the core capabilities needed?
  • What standard Antigravity tools are most relevant? (e.g., read_file for docs, run_command for CLI)
  • What are common use cases and edge cases?
  • What scripts or references would be reusable?

Step 3: Initialize

python scripts/init_skill.py <skill-name> --path .agent/skills

Step 4: Edit SKILL.md

  1. Complete the frontmatter metadata with accurate description
  2. Write clear, actionable instructions based on research
  3. Add scripts/references/assets as identified in analysis

Step 5: Validate

python scripts/quick_validate.py .agent/skills/<skill-name>

Resource Directories

scripts/

Executable code (Python/Node/Bash) for automation tasks.

  • Include error handling and helpful messages
  • Document dependencies in requirements.txt

references/

Documentation loaded into context when needed.

  • API references, schemas, detailed guides
  • Keep files focused (<5000 tokens each)

assets/

Files used in output, not loaded into context.

  • Templates, images, fonts, boilerplate code

Expert Questioning Framework

When a user requests to create or upgrade a skill, the agent MUST gather requirements through 5 phases.

[!IMPORTANT] Do NOT just provide a generic questionnaire. You must generate domain-specific questions based on: - The skill's domain (frontend, backend, AI, etc.) - The user's specific request - Your expert knowledge in that domain

Workflow:

  1. Analyze the request - Identify the skill domain and user's goal
  2. Generate custom questionnaire - Create an Artifact for the user to fill out.

- MUST customize questions for the specific domain/task. - Use the template as a base but rewrite questions to be specific.

  1. Notify User - Use notify_user with PathsToReview pointing to the artifact.
  2. Wait for Input - User will edit the artifact directly.
  3. Read & Proceed - Read the filled artifact and start implementation.

Example - Designer Skill Upgrade:

Instead of generic "What constraints?", ask specific questions like:

  • "Should the skill focus on Web, Mobile, or both?"
  • "Which design systems to reference? (Material, Ant, custom)"
  • "Accessibility standards: WCAG 2.1 AA or AAA?"
  • "Dark mode support required?"

Phase 1: Discovery (Understand WHY & WHO)

  • What specific problem needs to be solved?
  • Who will use this skill? (agent, human, or both)
  • What triggers the need to create/upgrade this skill?

Phase 2: Context (Understand WHAT & WHERE)

  • What is the specific domain? (frontend, backend, devops, AI, etc.)
  • What tech stack or frameworks are involved?
  • What standard tool patterns apply? (e.g., File system ops vs Command line ops)
  • What constraints must be followed? (time, resources, team size)

Phase 3: Scope (Define Boundaries)

[!CAUTION] ⚠️ NEVER decide scope on your own - always ask user for confirmation
  • What is IN scope? What is OUT of scope?
  • Minor update or Major upgrade?
  • Dependencies with other skills/tools?

Phase 4: Quality (Define Quality Standards)

  • What level of expertise to embody? (junior, senior, expert 20+ years)
  • Which best practices must be followed?
  • What edge cases need to be handled?

Phase 5: Validation (Define Success)

  • What are the acceptance criteria?
  • How do we know the skill works correctly?
  • What metrics measure improvement?

Key Principles:

  • 🔍 Research before asking - use tools to understand context
  • 🎯 Purpose-driven questions - each question leads to a specific decision
  • 📝 Document answers - record for reference during implementation

Upgrading Existing Skills

Step 1: Clarify User Intent

Apply the Expert Questioning Framework above. Position yourself as an expert in the skill's domain to ask guiding questions.

Step 2: Analyze Current Skill

# Backup current skill
cp -r .agent/skills/<skill-name> .agent/skills/<skill-name>.backup

# View structure
ls -la .agent/skills/<skill-name>/

Analyze:

  • Read SKILL.md: frontmatter, body, sections
  • Check scripts/, references/, assets/
  • Count tokens, sections, capabilities

Step 3: Gap Analysis

Compare current state vs new requirements:

RequirementCurrent StateGap
...Yes/NoNeed to add/Exists/Duplicate

If duplicate: Notify user and ask if they want to enhance further

Step 4: Propose Changes

Present proposal and ask user for confirmation:

  • Minor Update: Add notes, small fixes in SKILL.md
  • Major Upgrade: Restructure, add scripts/references
  • Restructure: Change architecture

Step 5: Implement & Report

After implementation, run:

python scripts/compare_skill.py .agent/skills/<skill-name>.backup .agent/skills/<skill-name>

Change Report Template

After upgrading a skill, report using this format:

## Skill Upgrade Report: [skill-name]

### Summary

- **Type**: Minor Update / Major Upgrade / Restructure
- **Date**: YYYY-MM-DD

### Changes Made

| File           | Action   | Description            |
| -------------- | -------- | ---------------------- |
| SKILL.md       | Modified | Added X, Y, Z sections |
| scripts/new.py | Added    | Script for ...         |

### Before vs After

| Metric   | Before | After | Change |
| -------- | ------ | ----- | ------ |
| Tokens   | X      | Y     | +Z%    |
| Sections | X      | Y     | +Z     |

### Validation

- [ ] `quick_validate.py` passed
- [ ] Structure verified
- [ ] User reviewed

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.89%
按下载量换算27

Claude

28.36%
按下载量换算21

Cursor

18.84%
按下载量换算14

Gemini CLI

8.22%
按下载量换算6

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills