Borrowing it
Nothing to install: this file belongs to ondata/ckan-mcp-server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/ondata/ckan-mcp-server/main/.claude/commands/astro_website.mdgit clone --depth 1 https://github.com/ondata/ckan-mcp-serverWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/ondata/ckan-mcp-server/astro_website)<a href="https://agentmods.dev/commands/ondata/ckan-mcp-server/astro_website"><img src="https://agentmods.dev/badge/commands/ondata/ckan-mcp-server/astro_website.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00029 | $0.02283 |
| Opus 5 | $0.00015 | $0.01141 |
| Sonnet 5 | $0.00006 | $0.00457 |
| Haiku 4.5 | $0.00003 | $0.00228 |
Grade A, and why
create-astro-website scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 401 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Create Astro Website
Create production-ready static website with modern stack and best practices.
Stack
- Astro v5+ (
output: 'static') - React for interactive components
- Tailwind CSS + typography plugin
- TypeScript strict mode
- SEO: RSS feed, sitemap, Open Graph, favicon set
- Accessibility: ARIA labels, keyboard navigation, WCAG AA contrast
- PWA ready: manifest.json, multi-format icons
Project Setup
# Initialize Astro project
npm create astro@latest -- --template minimal --typescript strict
# Install integrations
npm install @astrojs/react @astrojs/tailwind @astrojs/sitemap @astrojs/rss
npm install react react-dom tailwindcss @tailwindcss/typography
# Initialize Tailwind
npx tailwindcss init
Directory Structure
src/
layouts/
Layout.astro # Main layout with SEO, Open Graph, favicon
pages/
index.astro # Homepage
about.astro # About page with Markdown import
content/
about.md # Markdown content for long-form pages
components/
Footer.astro # Reusable footer
styles/
global.css # Custom Tailwind utilities
config/
content.ts # Centralized content configuration
lib/ # Helper functions
public/
favicon.svg # SVG favicon (optimized)
favicon-16.png # 16x16 PNG
favicon-32.png # 32x32 PNG
favicon-48.png # 48x48 PNG
favicon-180.png # 180x180 Apple Touch Icon
favicon-192.png # 192x192 PWA icon
favicon-512.png # 512x512 PWA icon
favicon.ico # ICO format
manifest.json # Web app manifest
robots.txt
Astro Config
astro.config.mjs:
import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
import tailwind from '@astrojs/tailwind';
import sitemap from '@astrojs/sitemap';
export default defineConfig({
integrations: [react(), tailwind(), sitemap()],
site: 'https://example.com',
output: 'static',
});
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 7d ago First seen · 401 lines · 29 tokens per session scan A c26d2588640d
create-astro-website is a command published in the GitHub repository ondata/ckan-mcp-server (57 stars, last pushed today), licensed MIT. It adds 29 tokens to every session and 2,283 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
scaffold-project
Scaffold a new Vite project (vanilla-ts or lit-ts template) or a library skeleton.
svelte:component
Create new Svelte components with best practices, proper structure, and optional TypeScript support.
scaffold-nextjs
Scaffold a basic Next.js 15 project with modern best practices.
style-guide
Generate comprehensive design system documentation including colors, typography, spacing, components, and usage guidelines. Outputs production-ready Tailwind/CSS configuration.
audit
Perform a comprehensive CSS audit across all project files. Scores overall Divi 5 compatibility, identifies patterns and anti-patterns, and produces an actionable improvement report with prioritized fixes.
rust:tauri:exec-js
Execute JavaScript code in the Tauri app's webview context.