delineas/astro-framework-agents
Agent Skills for building with Astro
npx skills add delineas/astro-framework-agentsREADME
Astro Framework Agents
Agent Skills for building with Astro. Compatible with Claude Code, Cursor, Cline, OpenAI Codex, and other agents supporting the Agent Skills specification.
Subscribe to Web Reactiva Newsletter — Weekly insights on web development, AI tools, and modern frameworks.
Why Astro?
Astro made me fall in love with web development again.
After years of complexity, heavy frameworks, and JavaScript fatigue, Astro reminded me that the web can be simple, fast, and beautiful. It embraces HTML as a first-class citizen. It ships zero JavaScript by default. It lets you use React, Vue, Svelte, or Solid—or none of them—without judgment.
Astro is plural: it welcomes every developer, every framework, every approach. Astro is universal: it works for blogs, docs, e-commerce, and everything in between. Astro is honest: it doesn't pretend the web is something it's not.
This repository is my way of sharing that love with the AI tools we use every day.
Available Skills
| Skill | Description | Install |
|---|---|---|
| astro-framework | Comprehensive Astro framework development guide for islands architecture, content collections, SSR, and view transitions | npx skills add delineas/astro-framework-agents/astro-framework |
Quick Start
Install a Single Skill
npx skills add https://github.com/delineas/astro-framework-agents --skill astro-framework
Manual Installation
Clone the repository and copy the desired skill folder to your agent's skills directory:
git clone https://github.com/delineas/astro-framework-agents.git
cp -r astro-framework-agents/skills/astro-framework ~/.claude/skills/
Repository Structure
astro-framework-agents/
├── README.md # This file (repository index)
├── LICENSE # MIT License
├── .gitignore
└── skills/ # All skills live here
├── astro-framework/ # Astro framework skill
│ ├── SKILL.md # Main skill instructions
│ ├── README.md # Skill documentation
│ ├── AGENTS.md # Compiled guidelines
│ ├── references/ # Detailed reference docs
│ └── rules/ # Context-specific rules
└── [future-skill]/ # Add more skills here
└── SKILL.md
Creating a New Skill
- Create a new directory under
skills/:
mkdir -p skills/my-new-skill
- Create the required
SKILL.mdwith frontmatter:
---
name: my-new-skill
description: Description of what this skill does and when to use it.
license: MIT
metadata:
author: your-name
version: "1.0.0"
---
# My New Skill
Instructions for the agent...
-
(Optional) Add supporting files:
README.md- Human-readable documentationAGENTS.md- Compiled guidelines for agentsreferences/- Detailed reference documentationrules/- Context-specific rules with glob patterns
-
Update this README to include your new skill in the table.
Skill Format Specification
Each skill follows the Agent Skills Specification:
Required Files
SKILL.md- Main skill file with YAML frontmatter and instructions
Required Frontmatter
---
name: skill-name # Must match directory name
description: "..." # What it does and when to use it
---
Optional Frontmatter
---
license: MIT
metadata:
author: your-name
version: "1.0.0"
category: framework
tags: tag1, tag2
compatibility: Requires Node.js 18+
allowed-tools: Bash(npm:*) Read
---
Optional Directories
| Directory | Purpose |
|---|---|
references/ | Detailed documentation loaded on-demand |
rules/ | Context-specific rules with glob patterns |
scripts/ | Executable scripts the agent can run |
assets/ | Templates, images, data files |
Compatibility
These skills are compatible with:
| Agent | Status |
|---|---|
| Claude Code | Fully supported |
| Cursor | Fully supported |
| Cline | Fully supported |
| OpenAI Codex | Compatible |
| GitHub Copilot | Compatible |
| Windsurf | Compatible |
Contributing
Contributions are welcome! Please:
- Fork the repository
- Create a new skill in
skills/your-skill-name/ - Follow the Agent Skills Specification
- Add your skill to the table in this README
- Submit a pull request
Guidelines
- Keep
SKILL.mdunder 500 lines (usereferences/for detailed docs) - Use progressive disclosure (metadata → instructions → references)
- Include clear examples in your instructions
- Add
rules/file
...