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]
Updated: 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.

최적의 용도

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

실행 가능한 사용 사례 for 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.

Labs 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 & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is skill?

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

How do I install skill?

Run the command: npx killer-skills add nevir/agentfill/skill. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

Which IDEs are compatible with skill?

This skill is compatible with 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. Use the Killer-Skills CLI for universal one-command installation.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add nevir/agentfill/skill. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use skill immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

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

Install skill, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

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

관련 스킬

Looking for an alternative to skill or another community skill for your workflow? Explore these related open-source skills.

모두 보기

openclaw-release-maintainer

Logo of openclaw
openclaw

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

333.8k
0
인공지능

widget-generator

Logo of f
f

prompts.chat 피드 시스템을 위한 사용자 지정 가능한 위젯 플러그인을 생성합니다

149.6k
0
인공지능

flags

Logo of vercel
vercel

리액트 프레임워크

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

파이썬에서 텐서와 동적 신경망 구현 및 강력한 GPU 가속 지원

98.6k
0
개발자