Agent skill
demeter-skills
Central skill registry for demeter project. Use to discover available skills, understand skill conventions, and find the right skill for a task.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/demeter-skills
SKILL.md
Demeter Skills
This directory contains skills that Claude auto-activates based on task context.
Available Skills
| Skill | File | Purpose |
|---|---|---|
| Architecture | architecture.md | Project structure and design patterns |
Skill Conventions
File Format
Each skill file uses YAML frontmatter:
---
name: skill-name
description: What this skill does. When to use it.
allowed-tools: Tool1, Tool2 # Optional
---
# Skill Content
Naming
- Use lowercase with hyphens:
my-skill-name - Max 64 characters
- Be specific:
rust-error-handlingnoterrors
Description Guidelines
The description field drives auto-activation. Include:
- What the skill does
- When Claude should use it
- Trigger keywords users would mention
# Good
description: Debug Rust compile errors and borrow checker issues. Use when encountering lifetime errors, ownership problems, or type mismatches.
# Bad
description: Helps with Rust
Adding New Skills
- Create
skill-name.mdin this directory - Add YAML frontmatter with
nameanddescription - Write skill content in markdown
- Update the table in this file
Skill Discovery
Claude automatically discovers skills based on:
- Task relevance
- Description keywords
- Request context
No explicit invocation needed—write good descriptions and Claude will find them.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?