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

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

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

Контакты

Москва

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

+7 (999) 760-24-41

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

lamooof@gmail.com

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

TelegramWhatsApp

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

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

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

Политика конфиденциальностиСогласие на обработку ПДн|ИНН 623412173261
    Nuxt — Скилл для ИИ-агентов | AI Рассвет

    Nuxt

    Nuxt application development and maintenance. Use for project structure, pages and routing, data fetching, SSR safe state, middleware, plugins, server routes, runtime config, route rules, layers, built in components, hydration, upgrades, and testing.

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

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

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

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

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

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

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

    Nuxt

    Use Nuxt-owned primitives for Nuxt lifecycle, rendering, routing, and server behavior. Hand module-specific behavior to the matching module skill instead of reproducing its API here.

    Start here

    1. Inspect package.json, the lockfile, nuxt.config.*, and the directory layout before choosing an API. Nuxt features move, so verify the installed version instead of assuming the latest release.
    2. Open only the reference that owns the task.
    3. Prefer the smallest Nuxt primitive that preserves SSR, hydration, and generated types.
    4. Run nuxt prepare after config, module, alias, or generated-type changes, then verify the affected runtime path.

    Reference map

    • Project structure, upgrades, deployment mode, and testing: project-setup.md
    • Data fetching, state, request context, cookies, head, and hydration: nuxt-composables.md
    • Pages, layouts, navigation, route metadata, and errors: routing.md
    • Route middleware, app plugins, and runtime hooks: middleware-plugins.md
    • API routes, server middleware, validation, caching, and Nitro: server.md
    • Built-in components, assets, images, and lazy hydration: nuxt-components.md
    • Nuxt config, runtime config, route rules, layers, modules, Vite, and Nitro options: nuxt-config.md

    Ownership boundaries

    • Use the nuxt-modules skill for authoring or publishing a Nuxt module.
    • Use the relevant module skill for Nuxt UI, Nuxt Content, Nuxt Studio, NuxtHub, Nuxt Image, Nuxt Scripts, Nuxt SEO, or another installed module.
    • Use official VueUse guidance for VueUse composables. When names overlap, Nuxt owns Nuxt lifecycle and SSR semantics; see nuxt-composables.md.
    • Use Vue guidance for component-local reactivity that has no Nuxt lifecycle or rendering concern.

    Baseline

    <script setup lang="ts">
    const { data: products, status, error } = await useFetch('/api/products')
    
    useSeoMeta({
      title: 'Products',
      description: 'Browse the product catalog.',
    })
    </script>
    
    <template>
      <main>
        <p v-if="status === 'pending'">Loading…</p>
        <p v-else-if="error">Could not load products.</p>
        <ProductList v-else :products="products ?? []" />
      </main>
    </template>
    

    useFetch integrates the request with Nuxt's SSR payload, while useSeoMeta participates in Nuxt's head lifecycle. Reach for lower-level primitives only when the task needs behavior these do not provide.

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

    Источник пакета
    https://github.com/onmax/nuxt-skills/tree/47546739d8af796a5bfe8151c1c8c26564aa9d7d/skills/nuxt

    Файлы версии

    ПутьРазмерSHA256
    SKILL.md2919bd0a3a6f779fbca8...
    references/middleware-plugins.md27548c9938d0e353d8ba...
    references/nuxt-components.md3093e3fbe4b62eb633b7...
    references/nuxt-composables.md457429a9f3b5f9eadcab...
    references/nuxt-config.md3800b1800c4e079d1172...

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

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

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

    Смотреть все
    Terraform Style GuideGenerate Terraform HCL code following HashiCorp's official style conventions and best practices. Use when writing, reviewing, or generating Terraform configurations.2ГИС: Матрица расстояний 2ГИСРассчитать время и расстояния между наборами точек.Svelte Code WriterCLI tools for Svelte 5 documentation lookup and code analysis. MUST be used whenever creating, editing or analyzing any Svelte component (.svelte) or Svelte module (.svelte.ts/.svelte.js). If possible, this skill should be executed within the svelte-file-editor agent for optimal results.
    Комментарии

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

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

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

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

    npx skills add onmax/nuxt-skills --skill nuxt
    Скачать ZIP
    Версия
    1.0.0+47546739d8af
    Автор
    Владимир Ломтев
    Репозиторий
    onmax/nuxt-skills
    GitHub: onmax/nuxt-skills
    Self Improving AgentCaptures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Claude ('No, that's wrong...', 'Actually...'), (3) User requests a capability that doesn't exist, (4) An external API or tool fails, (5) Claude realizes its knowledge is outdated or incorrect, (6) A better approach is discovered for a recurring task. Also review learnings before major tasks.