Skip to content

huyleminh/helix-skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Helix Skills

A centralized collection of reusable skills and prompts for all AI agents.

What is a Skill?

A skill is a reusable set of instructions that gives an AI agent a specific capability. Skills range from simple prompt files to full tool packages with supporting code.

Complexity Description Example
prompt-only A markdown file with instructions code-review, git-commit
prompt-with-code Prompt + supporting templates/scripts git-commit with hooks
full-package Complete tool with code, configs, prompts MCP server, CLI plugin

Quick Start

  1. Browse skills/ to find what you need
  2. Read the skill's SKILL.md for instructions and compatible agents
  3. Copy the skill into your agent's config directory

For Claude Code:

cp -r skills/<skill-name>/ ~/.claude/skills/<skill-name>/

Repo Structure

helix-skills/
├── CLAUDE.md              # Project conventions for Claude Code
├── skills/                # All skills live here
│   └── <skill-name>/
│       ├── SKILL.md       # Manifest + prompt (required)
│       ├── templates/     # Supporting templates (optional)
│       ├── examples/      # Usage examples (optional)
│       └── scripts/       # Supporting code (optional)
├── docs/
│   ├── SKILL-FORMAT.md    # How to write a SKILL.md
│   └── CONTRIBUTING.md    # How to contribute
└── registry.json          # Auto-generated skill index

Supported Agents

Skills are designed to be portable. The agents field in each SKILL.md lists tested/compatible agents:

  • Claude Code
  • Cursor
  • Windsurf
  • GPT (ChatGPT, API)
  • Gemini
  • And more...

Adding a Skill

See docs/CONTRIBUTING.md for the full guide.

License

Private. Not yet open source.

About

No description, website, or topics provided.

Resources

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors