/ 目录 / 演练场 / 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 搭配,撬动十倍杠杆

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
每次调用 Token 数
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

🐙 查看未解决的 issue

🔍 浏览全部 400+ MCP 服务器和 Skills