/ Directorio / Playground / skills
● Comunidad tenequm ⚡ Instantáneo

skills

por 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).

Por qué usarlo

Características clave

Demo en vivo

Cómo se ve en la práctica

skills-skill-9.replay ▶ listo
0/0

Instalar

Elige tu cliente

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

Abre Claude Desktop → Settings → Developer → Edit Config. Reinicia después de guardar.

~/.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 usa el mismo esquema mcpServers que Claude Desktop. La configuración del proyecto prevalece sobre la global.

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

Haz clic en el icono MCP Servers de la barra lateral de Cline y luego en "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
    }
  }
}

Mismo formato que Claude Desktop. Reinicia Windsurf para aplicar.

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

Continue usa un array de objetos de servidor en lugar de un mapa.

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

Añádelo a context_servers. Zed recarga en caliente al guardar.

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

Un solo comando. Verifica con claude mcp list. Quita con claude mcp remove.

Casos de uso

Usos del mundo real: skills

Ship a React + TanStack feature with idiomatic patterns

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

Cuándo usarlo: New feature on a modern React stack and you want conventions locked in.

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

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

Combinar con: github

Write and audit a Solana program with security baked in

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

Cuándo usarlo: Writing an Anchor program that will hold user funds.

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

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

Errores comunes
  • Skill audit doesn't replace a real audit firm — Treat it as first pass; get a formal audit before mainnet with real TVL
Combinar con: github

Ship an HTTP API on Cloudflare Workers

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

Cuándo usarlo: Need a low-latency API without running your own servers.

Flujo
  1. Scaffold with cloudflare-workers
    cloudflare-workers skill — REST API with D1 backend for <entities>.✓ Copiado
    → 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?✓ Copiado
    → Specific protocol conformance review

Resultado: A deployable Worker with modern conventions.

Combinaciones

Combínalo con otros MCPs para multiplicar por 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.✓ Copiado
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/.✓ Copiado

Herramientas

Lo que expone este MCP

HerramientaEntradasCuándo llamarCoste
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

Coste y límites

Lo que cuesta ejecutarlo

Cuota de API
None
Tokens por llamada
Moderate per sub-skill
Monetario
Free — skills are local files
Consejo
Don't auto-load all 40; reference by specific sub-skill name to keep context tight.

Seguridad

Permisos, secretos, alcance

Almacenamiento de credenciales: No credentials in the skill files. Deploy-related sub-skills reference your own secrets (Wrangler, deployer keypairs).
Salida de datos: None from the skills themselves

Resolución de problemas

Errores comunes y soluciones

Skill not invoked — Claude uses generic React advice

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

Verificar: 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.

Verificar: 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.

Alternativas

skills vs otros

AlternativaCuándo usarlaContrapartida
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

Más

Recursos

📖 Lee el README oficial en GitHub

🐙 Ver issues abiertas

🔍 Ver todos los 400+ servidores MCP y Skills