/ 디렉터리 / 플레이그라운드 / skills
● 커뮤니티 tenequm ⚡ 바로 사용

skills

제작: tenequm · tenequm/skills

40+ practical skills for shipping software — React/TS, Cloudflare Workers, Solana/Foundry, Biome, code review, effect-ts, Swift macOS.

tenequm/skills is a broad agent skill collection spanning web frontend (react-typescript, shadcn-tailwind, vite, tanstack), backend/infra (cloudflare-workers, python-dev, mcp-best-practices), smart contracts (foundry-solidity, solana-development/compression/security, erc-8004, x402, mpp, privy-integration), code quality (biome, polish, review-github-pr), developer tools (chrome-extension-wxt, effect-ts, swift-macos), and content/strategy (impactful-writing, founder-playbook, web3-protocol-gtm).

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

skills-skill-9.replay ▶ 준비됨
0/0

설치

클라이언트 선택

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

Claude Desktop → Settings → Developer → Edit Config 열기. 저장 후 앱 재시작.

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

Cursor는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

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

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "Edit Configuration" 선택.

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

Claude Desktop과 같은 형식. Windsurf 재시작 후 적용.

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

Continue는 맵이 아닌 서버 오브젝트 배열 사용.

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

context_servers에 추가. 저장 시 Zed가 핫 리로드.

claude mcp add skills-skill-9 -- git clone https://github.com/tenequm/skills ~/.claude/skills/skills

한 줄 명령. claude mcp list로 확인, claude mcp remove로 제거.

사용 사례

실전 활용법: skills

Ship a React + TanStack feature with idiomatic patterns

👤 Frontend devs on TanStack + shadcn stacks ⏱ ~90 min intermediate

언제 쓸까: New feature on a modern React stack and you want conventions locked in.

사전 조건
  • Skill cloned — git clone https://github.com/tenequm/skills ~/.claude/skills/tenequm-skills
흐름
  1. Scaffold components
    Use react-typescript + shadcn-tailwind skills — build a data table with server-side sorting.✓ 복사됨
    → Component + hook pattern idiomatic to TanStack Query
  2. Lint/format pass
    Run the biome skill on the diff.✓ 복사됨
    → Biome-configured config + auto-fixes
  3. Pre-release polish
    Use polish skill — what's not ready to ship?✓ 복사됨
    → Specific pre-release concerns flagged

결과: A feature with conventional code and a pre-ship review done.

함께 쓰기: github

Write and audit a Solana program with security baked in

👤 Solana devs building user-facing contracts ⏱ ~180 min advanced

언제 쓸까: Writing an Anchor program that will hold user funds.

사전 조건
  • Solana + Anchor toolchain installed — https://docs.anthropic.com/en/docs/... — actually: https://www.anchor-lang.com/install
흐름
  1. Build with solana-development
    solana-development skill — Anchor program for <intent>. Cover instructions, state, constraints.✓ 복사됨
    → Proper Anchor account macros, seeds, PDAs
  2. Security review
    Now solana-security — audit for reentrancy, signer-check omissions, arithmetic issues.✓ 복사됨
    → Specific findings tied to account checks
  3. Deploy plan
    What's the safe deployment / program upgrade path?✓ 복사됨
    → Keypair management + program-id steps

결과: A program that's audit-aware from day one.

함정
  • Skill audit doesn't replace a real audit firm — Treat it as first pass; get a formal audit before mainnet with real TVL
함께 쓰기: github

Ship an HTTP API on Cloudflare Workers

👤 Backend devs who want edge deployment ⏱ ~60 min intermediate

언제 쓸까: Need a low-latency API without running your own servers.

흐름
  1. Scaffold with cloudflare-workers
    cloudflare-workers skill — REST API with D1 backend for <entities>.✓ 복사됨
    → Wrangler config + handler patterns + KV/D1 bindings
  2. MCP best-practices cross-check
    If this were an MCP server, does it follow mcp-best-practices?✓ 복사됨
    → Specific protocol conformance review

결과: A deployable Worker with modern conventions.

조합

다른 MCP와 조합해 10배 효율

skills-skill-9 + github

Review + polish directly against PRs in your org

Use review-github-pr on PR #42, then polish the suggested fixes.✓ 복사됨
skills-skill-9 + filesystem

Apply skill-driven patterns across multiple files in a feature

Apply react-typescript patterns across every component under src/features/new-module/.✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
react-typescript component / feature intent Writing React components 0
cloudflare-workers API intent + storage choice Edge backend 0
solana-development program intent Solana smart contract work 0
solana-security program code Before deploying to mainnet 0
polish pending diff Before pushing a release 0
review-github-pr PR number or diff Reviewing PRs 0

비용 및 제한

운영 비용

API 쿼터
None
호출당 토큰
Moderate per sub-skill
금액
Free — skills are local files
Don't auto-load all 40; reference by specific sub-skill name to keep context tight.

보안

권한, 시크릿, 파급범위

자격 증명 저장: No credentials in the skill files. Deploy-related sub-skills reference your own secrets (Wrangler, deployer keypairs).
데이터 외부 송신: None from the skills themselves

문제 해결

자주 발생하는 오류와 해결

Skill not invoked — Claude uses generic React advice

Reference the specific sub-skill by name (react-typescript, shadcn-tailwind, etc.).

확인: ls ~/.claude/skills/tenequm-skills/
SKILL.md frontmatter wrong in a sub-skill

Each sub-skill has its own SKILL.md — inspect the specific folder.

확인: head ~/.claude/skills/tenequm-skills/react-typescript/SKILL.md
Wrong trigger keywords — wrong sub-skill activates for Solana work

Distinguish solana-development (general) vs solana-security vs solana-compression.

대안

skills 다른 것과 비교

대안언제 쓰나단점/장점
ay-skill (AY Automate)You want UI/browser emphasis with artifacts-builder and NotebookLMDifferent focus; less smart-contract and backend coverage
skills-skill-8You want meta-skills for skill authoring rather than product-building skillsDifferent layer

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

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