Duroxide AI Skills
January 23, 2026 · View on GitHub
This folder contains AI skills (context/prompts) that can be installed into AI coding assistants to enable effective development with Duroxide.
Available Skills
| Skill | Description | For |
|---|---|---|
| duroxide-provider-implementation.md | Implementing custom storage providers | Provider developers |
Installing Skills
VS Code with GitHub Copilot
VS Code supports multiple instruction methods:
Agent Skills (recommended for specialized workflows):
- Create
.github/skills/duroxide-provider/in your project - Copy skill file as
SKILL.mdwith this header format:--- name: duroxide-provider description: Guidance for implementing Duroxide storage providers --- - Enable with
chat.useAgentSkillssetting (preview feature)
Custom Instructions (for project-wide guidelines):
- Copy skill content to
.github/copilot-instructions.mdfor repository-wide rules - Or create
.github/instructions/duroxide.instructions.mdwith glob patterns:--- applyTo: "src/providers/**" ---
Claude Code
Claude Code uses CLAUDE.md files for project context:
- Project-level: Copy skill content to
./CLAUDE.mdor./.claude/CLAUDE.md - Modular rules: Copy skill file to
./.claude/rules/duroxide-provider.md - User-level: Copy to
~/.claude/CLAUDE.mdfor all projects
Claude Code automatically loads these files. Use /memory command to view loaded files.
Cursor
Cursor supports rules in .cursor/rules/:
- Project rules: Copy skill file to
.cursor/rules/duroxide-provider.mdc - With metadata (
.mdcformat): Add frontmatter:--- description: "Duroxide provider implementation guidance" globs: ["src/providers/**"] alwaysApply: false --- - Simple alternative: Copy to
AGENTS.mdin project root - User rules: Add to
Cursor Settings → Rulesfor global application
Other AI Assistants
Skills are standard Markdown files. Copy relevant sections into your AI assistant's system prompt or context window. The Agent Skills open standard is supported by many tools including Roo Code, OpenCode, Goose, and others.
Skill Structure
Each skill file contains:
- Frontmatter — Metadata (title, version, scope)
- Summary — Quick overview of the skill's purpose
- Key Concepts — Core ideas the AI should understand
- Implementation Guidance — Specific patterns and requirements
- References — Links to detailed documentation