delineas/astro-framework-agents

Agent Skills for building with Astro

0 stars0 forksUpdated Jan 25, 2026
npx skills add delineas/astro-framework-agents

README

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.

Agent Skills License: MIT


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.

Dani Primo


Available Skills

SkillDescriptionInstall
astro-frameworkComprehensive Astro framework development guide for islands architecture, content collections, SSR, and view transitionsnpx 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

  1. Create a new directory under skills/:
mkdir -p skills/my-new-skill
  1. Create the required SKILL.md with 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...
  1. (Optional) Add supporting files:

    • README.md - Human-readable documentation
    • AGENTS.md - Compiled guidelines for agents
    • references/ - Detailed reference documentation
    • rules/ - Context-specific rules with glob patterns
  2. 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

DirectoryPurpose
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:

AgentStatus
Claude CodeFully supported
CursorFully supported
ClineFully supported
OpenAI CodexCompatible
GitHub CopilotCompatible
WindsurfCompatible

Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a new skill in skills/your-skill-name/
  3. Follow the Agent Skills Specification
  4. Add your skill to the table in this README
  5. Submit a pull request

Guidelines

  • Keep SKILL.md under 500 lines (use references/ for detailed docs)
  • Use progressive disclosure (metadata → instructions → references)
  • Include clear examples in your instructions
  • Add rules/ file

...

Read full README

Publisher

delineasdelineas

Statistics

Stars0
Forks0
Open Issues0
LicenseMIT License
CreatedJan 25, 2026