/ 디렉터리 / 플레이그라운드 / 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는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

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
    }
  }
}

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "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는 맵이 아닌 서버 오브젝트 배열 사용.

~/.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와 조합해 10배 효율

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

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

🔍 400+ MCP 서버 및 Skills 전체 보기