/ Diretório / Playground / skills
● Comunidade 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 que usar

Principais recursos

Demo ao vivo

Como fica na prática

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

Instalar

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

Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.

~/.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 o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a 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
    }
  }
}

Clique no ícone MCP Servers na barra lateral do Cline, depois "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
    }
  }
}

Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.

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

O Continue usa um array de objetos de servidor em vez de um map.

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

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

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

Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.

Casos de uso

Usos do mundo real: skills

Ship a React + TanStack feature with idiomatic patterns

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

Quando usar: New feature on a modern React stack and you want conventions locked in.

Pré-requisitos
  • Skill cloned — git clone https://github.com/tenequm/skills ~/.claude/skills/tenequm-skills
Fluxo
  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.

Combine com: github

Write and audit a Solana program with security baked in

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

Quando usar: Writing an Anchor program that will hold user funds.

Pré-requisitos
  • Solana + Anchor toolchain installed — https://docs.anthropic.com/en/docs/... — actually: https://www.anchor-lang.com/install
Fluxo
  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.

Armadilhas
  • Skill audit doesn't replace a real audit firm — Treat it as first pass; get a formal audit before mainnet with real TVL
Combine com: github

Ship an HTTP API on Cloudflare Workers

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

Quando usar: Need a low-latency API without running your own servers.

Fluxo
  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.

Combinações

Combine com outros MCPs para 10× de alavancagem

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

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
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

Custo e limites

O que custa rodar

Cota de API
None
Tokens por chamada
Moderate per sub-skill
Monetário
Free — skills are local files
Dica
Don't auto-load all 40; reference by specific sub-skill name to keep context tight.

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: No credentials in the skill files. Deploy-related sub-skills reference your own secrets (Wrangler, deployer keypairs).
Saída de dados: None from the skills themselves

Solução de problemas

Erros comuns e correções

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. outros

AlternativaQuando usarTroca
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

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills