Skip to content

CodeLab614/agents-skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CodeLab614 Agent Skills

A collection of reusable skills for AI agents. Compatible with skills.sh.

Installation

Install any skill using the skills CLI:

npx skills add https://github.com/CodeLab614/agent-skills --skill <skill-name>

Available Skills

Skill Description
typescript-best-practices TypeScript best practices and patterns for clean, type-safe code

Supported Agents

These skills work with:

  • Claude Code
  • Cursor
  • GitHub Copilot
  • Windsurf
  • Gemini
  • Cline
  • Goose
  • Roo
  • OpenCode
  • And more...

Creating New Skills

Each skill follows this structure:

skills/
└── my-skill/
    ├── SKILL.md        # Main skill instructions (required)
    ├── AGENTS.md       # Expanded version for LLMs (required)
    ├── README.md       # Human documentation (recommended)
    ├── metadata.json   # Skill metadata (required)
    └── rules/          # Individual rule files (optional)

metadata.json Format

{
  "name": "my-skill",
  "version": "1.0.0",
  "description": "Short description of the skill",
  "author": "CodeLab614",
  "tags": ["tag1", "tag2"],
  "agents": ["claude", "cursor", "gemini", "copilot", "windsurf"]
}

SKILL.md Format

---
name: my-skill
description: When this skill should be activated
---

# Skill Title

Instructions for the AI agent...

Contributing

  1. Fork this repository
  2. Create a new skill in skills/your-skill-name/
  3. Follow the structure above
  4. Submit a pull request

License

MIT

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors