AI студия Владимира Ломтева
УСЛУГИПРОЕКТЫСТАТЬИБАЗА ЗНАНИЙМаркетплейсПолезные сервисы

Оставьте заявку,
чтобы обсудить проект

Напишите ваш вопрос, не забудьте указать телефон. Мы перезвоним и все расскажем.

Контакты

Москва

Работаем по всей России
и миру (онлайн)

+7 (999) 760-24-41

Ежедневно с 9:00 до 21:00

lamooof@gmail.com

По вопросам сотрудничества

TelegramWhatsApp

Есть предложение?

Напишите нам в мессенджеры

© 2025 AI студия Владимира Ломтева

Политика конфиденциальностиСогласие на обработку ПДн|ИНН 623412173261

    Astro

    Skill for building with the Astro web framework. Helps create Astro components and pages, configure SSR adapters, set up content collections, deploy static sites, and manage project structure and CLI commands. Use when the user needs to work with Astro, mentions .astro files, asks about static site generation (SSG), islands architecture, content collections, or deploying an Astro project.

    Скиллы для маркетинга#GitHub#astrolicious/agent-skills#skills.sh
    Скачивания
    0
    В избранном
    0
    Комментарии
    0
    Просмотры
    2

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add astrolicious/agent-skills --skill astro
    Скачать ZIP
    Версия
    1.0.0+cb4839f37941
    Автор
    Владимир Ломтев
    Репозиторий
    astrolicious/agent-skills
    GitHub: astrolicious/agent-skills

    Как установить

    1. 1Скопируйте команду из блока установки.
    2. 2Запустите её в терминале из каталога проекта.

    Документация

    Astro Usage Guide

    Always consult docs.astro.build for code examples and latest API.

    Astro is the web framework for content-driven websites.


    Quick Reference

    File Location

    CLI looks for astro.config.js, astro.config.mjs, astro.config.cjs, and astro.config.ts in: ./. Use --config for custom path.

    CLI Commands

    • npx astro dev - Start the development server.
    • npx astro build - Build your project and write it to disk.
    • npx astro check - Check your project for errors.
    • npx astro add - Add an integration.
    • npx astro sync - Generate TypeScript types for all Astro modules.

    Re-run after adding/changing plugins.

    Project Structure

    Reference project structure docs.

    • src/* - Project source code (components, pages, styles, images, etc.)
    • src/pages - Required. Defines all pages and routes.
    • src/components - Components (convention, not required).
    • src/layouts - Layout components (convention, not required).
    • src/styles - CSS/Sass files (convention, not required).
    • public/* - Non-code, unprocessed assets (fonts, icons, etc.); copied as-is to build output.
    • package.json - Project manifest.
    • astro.config.{js,mjs,cjs,ts} - Astro configuration file. (recommended)
    • tsconfig.json - TypeScript configuration file. (recommended)

    Core Config Options

    Option Notes
    site Your final, deployed URL. Used to generate sitemaps and canonical URLs.

    Example astro.config.ts

    import { defineConfig } from 'astro/config';
    
    export default defineConfig({
      site: 'https://example.com',
    });
    

    Common Workflows

    Creating a Basic Page

    Add a file to src/pages/ — the filename becomes the route:

    ---
    // src/pages/index.astro
    const title = 'Hello, Astro!';
    ---
    <html>
      <head><title>{title}</title></head>
      <body>
        <h1>{title}</h1>
      </body>
    </html>
    

    Creating a Component

    ---
    // src/components/Card.astro
    const { title, body } = Astro.props;
    ---
    <div class="card">
      <h2>{title}</h2>
      <p>{body}</p>
    </div>
    

    Deploying with an Adapter

    1. Add the adapter: npx astro add vercel --yes (or node, cloudflare, netlify)
    2. Run npx astro check to catch type and configuration errors before building.
    3. Run npx astro build to produce the deployment artifact.
    4. Verify the build output directory (e.g. dist/) exists and is non-empty before proceeding.
    5. Deploy the output per the adapter's documentation.

    Adapters

    Deploy to your favorite server, serverless, or edge host with build adapters. Use an adapter to enable on-demand rendering in your Astro project.

    Add Node.js adapter using astro add:

    npx astro add node --yes
    

    Add Cloudflare adapter using astro add:

    npx astro add cloudflare --yes
    

    Add Netlify adapter using astro add:

    npx astro add netlify --yes
    

    Add Vercel adapter using astro add:

    npx astro add vercel --yes
    

    Other Community adapters

    Resources

    • Docs
    • Config Reference
    • llms.txt
    • GitHub

    Требования и возможности

    Источник пакета
    https://github.com/astrolicious/agent-skills/tree/cb4839f3794189ebf35c55d3ba5d3876dff7acf0/skills/astro

    Файлы версии

    ПутьРазмерSHA256
    SKILL.md413864b0cfb9774b1dae...

    Частые вопросы

    Как установить Astro?
    Используйте команду npx skills add astrolicious/agent-skills --skill astro или скачайте ZIP-архив.
    Можно ли скачать Astro бесплатно?
    Да, опубликованную версию можно скачать из маркетплейса бесплатно.

    Похожие инструменты

    Смотреть все
    Nuxt UiBuild UIs with @nuxt/ui v4 — 125+ accessible Vue components with Tailwind CSS theming. Use when creating interfaces, customizing themes to match a brand, building forms, or composing layouts like dashboards, docs sites, and chat interfaces.Gemini Api DevUse this skill when building applications with Gemini API hosted models, including Gemini and Gemma 4, working with multimodal content (text, images, audio, video), implementing function calling, using structured outputs, or needing current model specifications. Covers SDK usage (google-genai for Python, @google/genai for JavaScript/TypeScript, com.google.genai:google-genai for Java, google.golang.org/genai for Go), model selection, and API capabilities.Browser ActBrowser automation CLI for AI agents. NEVER run browser-act commands directly via Bash — always invoke this skill first. Use browser-act when a user mentions it by name, includes or asks to run a browser-act CLI command (e.g., browser-act browser list), or to: fetch, view, or extract rendered content from URLs, access pages requiring JavaScript, handle verification prompts, maintain authenticated sessions, fill forms and click through workflows, type, select, upload, take screenshots, capture XHR/fetch/HAR responses, open multiple URLs in parallel, extract content that loads on scroll or click
    Комментарии

    Войдите, чтобы оставить комментарий.

    Комментариев пока нет.

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add astrolicious/agent-skills --skill astro
    Скачать ZIP
    Версия
    1.0.0+cb4839f37941
    Автор
    Владимир Ломтев
    Репозиторий
    astrolicious/agent-skills
    GitHub: astrolicious/agent-skills
    Seo AuditWhen the user wants to audit, review, or diagnose SEO issues on their site. Also use when the user mentions "SEO audit," "technical SEO," "why am I not ranking," "SEO issues," "on-page SEO," "meta tags review," "SEO health check," "my traffic dropped," "lost rankings," "not showing up in Google," "site isn't ranking," "Google update hit me," "page speed," "core web vitals," "crawl errors," or "indexing issues." Use this even if the user just says something vague like "my SEO is bad" or "help with SEO" — start with an audit. For building pages at scale to target keywords, see programmatic-seo.
    Astro — Скилл для ИИ-агентов | AI Рассвет