/ Каталог / Песочница / claude-skills
● Сообщество secondsky ⚡ Сразу

claude-skills

автор secondsky · secondsky/claude-skills

Production-ready Claude Code skills for Cloudflare, React, Tailwind v4, and AI integrations — the modern full-stack bundle.

A focused set of skills for the Cloudflare + React + Tailwind v4 + AI stack. Opinionated toward what actually ships in 2026: Workers, D1, R2, Pages on Cloudflare; React 19 + Tailwind v4 on the frontend; provider-agnostic AI integration patterns.

Зачем использовать

Ключевые функции

Живое демо

Как выглядит на практике

claude-skill-5.replay ▶ готово
0/0

Установка

Выберите клиент

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "claude-skill-5": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/secondsky/claude-skills",
        "~/.claude/skills/claude-skills"
      ],
      "_inferred": true
    }
  }
}

Откройте Claude Desktop → Settings → Developer → Edit Config. Перезапустите после сохранения.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "claude-skill-5": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/secondsky/claude-skills",
        "~/.claude/skills/claude-skills"
      ],
      "_inferred": true
    }
  }
}

Cursor использует ту же схему mcpServers, что и Claude Desktop. Конфиг проекта приоритетнее глобального.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "claude-skill-5": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/secondsky/claude-skills",
        "~/.claude/skills/claude-skills"
      ],
      "_inferred": true
    }
  }
}

Щёлкните значок MCP Servers на боковой панели Cline, затем "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "claude-skill-5": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/secondsky/claude-skills",
        "~/.claude/skills/claude-skills"
      ],
      "_inferred": true
    }
  }
}

Тот же формат, что и Claude Desktop. Перезапустите Windsurf для применения.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "claude-skill-5",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/secondsky/claude-skills",
        "~/.claude/skills/claude-skills"
      ]
    }
  ]
}

Continue использует массив объектов серверов, а не map.

~/.config/zed/settings.json
{
  "context_servers": {
    "claude-skill-5": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/secondsky/claude-skills",
          "~/.claude/skills/claude-skills"
        ]
      }
    }
  }
}

Добавьте в context_servers. Zed перезагружается автоматически.

claude mcp add claude-skill-5 -- git clone https://github.com/secondsky/claude-skills ~/.claude/skills/claude-skills

Однострочная команда. Проверить: claude mcp list. Удалить: claude mcp remove.

Сценарии использования

Реальные сценарии: claude-skills

Ship a new Cloudflare-hosted React app in one session

👤 Devs building on the CF stack ⏱ ~60 min intermediate

Когда использовать: You want Workers + Pages + D1 wired up without reading 5 Cloudflare docs.

Предварительные требования
  • Cloudflare account + wrangler — npm i -g wrangler; wrangler login
  • Skill installed — git clone https://github.com/secondsky/claude-skills ~/.claude/skills/claude-skills
Поток
  1. Scaffold
    Use claude-skills. Scaffold a React 19 + Tailwind v4 app deployed to Cloudflare Pages with a Workers API and D1 DB.✓ Скопировано
    → Monorepo structure with apps/web, apps/api (Worker), wrangler.toml
  2. Add a feature
    Add a 'notes' feature — D1 schema, CRUD Worker endpoints, React UI with Tailwind v4 styling.✓ Скопировано
    → Migration + Worker + React page
  3. Deploy
    Deploy to Cloudflare.✓ Скопировано
    → wrangler deploy output; URLs returned

Итог: Live URL within an hour.

Подводные камни
  • Wrangler config drift between environments — Use wrangler environments from the start — dev/staging/prod sections
Сочетать с: cloudflare · cloudflare-api

Migrate a Tailwind v3 project to v4

👤 Teams on v3 hitting the v4 release ⏱ ~45 min intermediate

Когда использовать: You want the new engine + CSS-first config without breaking everything.

Поток
  1. Audit current
    Use claude-skills. Audit my tailwind.config.js for v4 breaking changes.✓ Скопировано
    → Change list with severity
  2. Migrate config
    Convert to v4 CSS-first config with @theme directives.✓ Скопировано
    → New globals.css with @theme block
  3. Fix utilities
    Find v3 utilities that changed or were removed; rewrite usage.✓ Скопировано
    → Grep + rewrite pass

Итог: Project on v4 without visual regressions.

Подводные камни
  • Plugin ecosystem not v4-ready yet — Check each plugin's v4 status; stay on v3 if a critical one lags
Сочетать с: filesystem

Wrap multiple AI providers behind one adapter

👤 Devs who want to swap Claude / GPT / local models without rewriting ⏱ ~45 min advanced

Когда использовать: Locking into one provider feels wrong and you want a clean interface.

Поток
  1. Define interface
    Use claude-skills ai-adapter pattern. Define a TS interface that abstracts chat completion across Claude, OpenAI, and a local model.✓ Скопировано
    → Interface + 3 implementations
  2. Wire up streaming
    Add SSE streaming support to the adapter.✓ Скопировано
    → Streaming implementation consistent across providers

Итог: A swappable AI layer.

Подводные камни
  • Over-abstracting and losing provider-specific features — Keep a provider-specific escape hatch alongside the shared interface

Комбинации

Сочетайте с другими MCP — эффект x10

claude-skill-5 + cloudflare

Deploy + manage the CF resources the scaffold creates

After scaffold, use cloudflare MCP to verify DNS and tail Worker logs.✓ Скопировано
claude-skill-5 + cloudflare-api

Bulk CF config operations

Configure cache rules and WAF for the deployed Pages project.✓ Скопировано

Инструменты

Что предоставляет этот MCP

ИнструментВходные данныеКогда вызыватьСтоимость
cf_scaffold app type, features New CF app 0
tailwind_migrate v3 config Tailwind upgrade 0
ai_adapter_scaffold providers list Multi-provider AI setup 0

Стоимость и лимиты

Во что обходится

Квота API
None in skill
Токенов на вызов
Moderate
Деньги
Cloudflare has a generous free tier; paid features as you grow
Совет
Use wrangler dev locally; reserve cloud deploys for staging/prod.

Безопасность

Права, секреты, радиус поражения

Хранение учётных данных: Wrangler handles CF auth; AI provider keys via env / CF secrets
Исходящий трафик: CF, AI providers you configure

Устранение неполадок

Частые ошибки и исправления

D1 migration fails

Wrangler D1 migrations are finicky; run with --local first and inspect the SQL

Проверить: wrangler d1 migrations list <db>
Tailwind v4 styles not applying

Check the @source directive captures your content paths

Deploy succeeds but Worker returns 500

wrangler tail to see the actual error

Проверить: wrangler tail <worker>

Альтернативы

claude-skills в сравнении

АльтернативаКогда использоватьКомпромисс
Vercel / Next.js stackYou prefer Next ecosystemDifferent deployment model, pricing
cc-frontend-skillYou care most about visual identityNot stack-specific

Ещё

Ресурсы

📖 Читать официальный README на GitHub

🐙 Открытые задачи

🔍 Все 400+ MCP-серверов и Skills