skill — community agentfill, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0

关于此技能

A "polyfill" that standardizes and centralizes AGENTS.md configuration and Agent Skills support within your repository.

nevir nevir
[17]
[1]
更新于: 3/23/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 1/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Review Score
1/11
Quality Score
45
Canonical Locale
en
Detected Body Locale
en

A "polyfill" that standardizes and centralizes AGENTS.md configuration and Agent Skills support within your repository.

核心价值

A "polyfill" that standardizes and centralizes AGENTS.md configuration and Agent Skills support within your repository.

适用 Agent 类型

Suitable for operator workflows that need explicit guardrails before installation and execution.

赋予的主要能力 · skill

! 使用限制与门槛

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The page lacks a strong recommendation layer.
  • - The page lacks concrete use-case guidance.
  • - The page lacks explicit limitations or caution signals.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

skill 是什么?

A "polyfill" that standardizes and centralizes AGENTS.md configuration and Agent Skills support within your repository.

如何安装 skill?

运行命令:npx killer-skills add nevir/agentfill。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

skill 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add nevir/agentfill。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    skill 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

skill

安装 skill,这是一款面向AI agent workflows and automation的 AI Agent Skill。支持 Claude Code、Cursor、Windsurf,一键安装。

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

/skill

Create or update portable agent skills in .agents/skills/ that work across Claude Code, Gemini CLI, and other agents supporting the Agent Skills specification.

Determine the Mode

Creating a new skill — the user wants a skill that doesn't exist yet. Follow the full workflow below.

Updating an existing skill — the user wants to modify a skill in .agents/skills/. Read the existing SKILL.md and supporting files first, then apply changes following the same quality principles.

Creating a New Skill

Step 1: Understand

Ask the user to describe what they want the skill to do. Gather:

  • Purpose: What task does this skill help with?
  • Trigger: When should an agent activate this skill? What would the user say?
  • Examples: 2-3 concrete examples of the skill in action (input/output or before/after)

If the user is vague, suggest concrete examples to refine the scope. A good skill is focused — it does one thing well. If the request covers multiple distinct tasks, suggest splitting into separate skills.

Step 2: Research

Before writing the skill:

  • Search for existing patterns, conventions, and code related to the skill's domain
  • Check .agents/skills/ for existing skills that might overlap
  • Identify project-specific conventions the skill should follow
  • Note any tools, scripts, or references the skill might need to bundle

Step 3: Plan

Design the skill and present the plan to the user before writing:

  • Name: lowercase-hyphenated, 1-64 characters, descriptive. This becomes the /slash-command.
  • Description: 1-2 sentences covering WHAT it does and WHEN to use it. Include keywords matching how users naturally phrase the request. This is the most important field — it determines when agents auto-activate the skill.
  • Instructions outline: Key steps, rules, and examples. Only include information the agent doesn't already know.
  • Supporting files: Decide what goes in SKILL.md vs references/:
    • In SKILL.md: Rules and content the agent needs in every or most activations
    • In references/: Content needed only in specific scenarios (e.g., "when creating a new script from scratch")
    • Each reference file needs a clear trigger condition — not just "overflow"
    • Multiple focused files are better than one monolithic reference

Step 4: Create

Create the skill directory and files:

  1. Create .agents/skills/<name>/
  2. Write SKILL.md with YAML frontmatter and markdown body
  3. Add supporting files as needed (references/, scripts/, assets/)

Use the SKILL.md template below. For the full frontmatter reference, read references/skill-specification.md.

SKILL.md template:

yaml
1--- 2name: <lowercase-hyphenated-name> 3description: >- 4 <What it does>. <When to use it — include trigger keywords>. 5--- 6 7# <Skill Title> 8 9<Brief overview — 1-2 sentences.> 10 11## <Main workflow or instructions> 12 13<Steps, rules, examples. Only include what the agent doesn't already know.>

Key rules:

  • Keep the body under 500 lines (aim for under 200 for workflow skills; up to 400 for style/rules skills)
  • Use universal frontmatter fields (name, description) for portability
  • Agent-specific fields (like Claude's allowed-tools) are safe to add but will be ignored by other agents
  • Use input/output examples — they're more effective than descriptions
  • Reference supporting files from the body so the agent knows when to load them

Step 5: Validate

Run the validation script to check structure and frontmatter:

sh
1.agents/skills/skill/scripts/validate-skill.sh .agents/skills/<name>

Also verify manually:

  • name is lowercase-hyphenated, 1-64 characters
  • description explains WHAT and WHEN (includes trigger keywords)
  • Body is focused — no information the agent already knows
  • No unnecessary agent-specific assumptions in instructions
  • Supporting files are referenced from SKILL.md
  • Scripts are executable (chmod +x)

Step 6: Test

Suggest the user test the skill:

  1. Start a new agent session (skills are discovered at session start)
  2. Ask the agent to perform the task the skill handles
  3. Verify the skill activates and produces correct results
  4. If it doesn't activate, check the description for missing trigger keywords

Updating an Existing Skill

  1. Read the existing SKILL.md and all supporting files
  2. Understand what changes are needed and why
  3. Update the files, keeping the same quality principles (conciseness, portability, good description)
  4. Validate with the validation script
  5. Note: Claude Code hot-reloads skill changes (v2.1.0+) — no restart needed

Design Principles

Description Quality Matters Most

The description determines whether agents auto-activate the skill. Write it as if explaining to a colleague when they should reach for this tool. Include the 3-5 most natural phrasings a user would use.

Concise is Key

Only include information the agent doesn't already know. If the agent can figure something out from context, don't spell it out. Challenge every paragraph.

Portability First

Skills in .agents/skills/ are shared across all configured agents. Stick to universal frontmatter fields. Describe actions rather than naming agent-specific tools. Use forward slashes for paths.

One Skill, One Job

Each skill should have a focused purpose. If a skill tries to do too many things, it will either trigger too broadly or its instructions will be too vague to be useful. Split into separate skills instead.

Right-Size Your References

Not all content belongs in references/. If the agent needs content in most activations, it belongs in SKILL.md. Reference files are for content needed only in specific scenarios.

In SKILL.md (loaded every activation):

  • Core rules, conventions, and patterns
  • Examples of correct/incorrect usage
  • Common decision guidance

In focused reference files (loaded on demand):

  • Full code templates (e.g., "read when creating a new script from scratch")
  • Detailed rules for uncommon scenarios (e.g., "read when formatting tables")
  • Extended examples for edge cases

Reference file guidelines:

  • Each file should have a clear load trigger stated in SKILL.md
  • Name files by scenario: new-script-template.md not full-guide.md
  • Multiple small files (50-150 lines each) beat one large file
  • A reference that's always loaded defeats the purpose — merge it into SKILL.md

相关技能

寻找 skill 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具