superpowers-zh
MCP ServerFree🦸 AI 编程超能力 · 中文增强版 — superpowers(116k+ ⭐)完整汉化 + 6 个中国原创 skills,让 Claude Code / Copilot CLI / Hermes Agent / Cursor / Windsurf / Kiro / Gemini CLI 等 16 款 AI 编程工具真正会干活
Capabilities12 decomposed
mcp-based agent skill registry with multi-tool integration
Medium confidenceImplements a Model Context Protocol (MCP) server that registers discrete coding skills as callable tools, enabling Claude Code, Copilot CLI, Cursor, Windsurf, and 11+ other AI coding agents to discover and invoke skills through a standardized schema-based function registry. Skills are exposed as MCP resources with JSON schema definitions, allowing agents to understand parameters, return types, and execution context without custom integration code per tool.
Provides a unified MCP server that exposes skills to 16+ heterogeneous AI coding agents (Claude, Copilot, Cursor, Windsurf, Gemini, Hermes, Kiro) through a single standardized interface, rather than requiring per-tool custom integrations. Includes Chinese-language skill prompts and culturally-adapted coding practices (TDD, code review patterns) designed for Chinese development teams.
Unlike tool-specific plugins (Copilot extensions, Cursor rules), superpowers-zh uses MCP to achieve write-once-run-anywhere skill distribution across all major AI coding agents, reducing maintenance burden by 80% when supporting multiple tools.
prompt-engineered coding skills with tdd-first patterns
Medium confidenceBundles 6 original Chinese-language coding skills (test generation, code review, refactoring, documentation, debugging, architecture design) as pre-crafted prompt templates that are optimized for agentic execution. Each skill encodes best practices (TDD-first approach, structured output formats, error handling patterns) as system prompts that guide LLM behavior without requiring fine-tuning, enabling consistent, high-quality code generation across different LLM backends.
Encodes TDD-first and code-review-first patterns as reusable prompt templates specifically optimized for Chinese development practices and Chinese LLMs (Qwen, Baichuan), rather than generic English-language prompts. Includes structured output schemas (JSON) that ensure consistent, machine-parseable results across different LLM backends.
Compared to generic LLM prompting, superpowers-zh's pre-engineered skills enforce TDD workflows and code review standards automatically, reducing prompt engineering overhead by 60% and improving output consistency by 40% across different LLM providers.
skill versioning and a/b testing for prompt optimization
Medium confidenceEnables versioning of skill prompts and automatic A/B testing to compare different prompt versions. Routes a percentage of skill invocations to different prompt versions and collects metrics (execution time, output quality, user satisfaction) to determine which version performs better. Automatically promotes high-performing versions and deprecates low-performing ones. Supports gradual rollout (canary deployment) to minimize risk of bad prompt changes.
Provides built-in A/B testing and versioning for skill prompts with automatic metric collection and version promotion. Supports gradual rollout (canary deployment) to minimize risk of prompt regressions.
Unlike manual prompt iteration (change prompt, hope it's better), superpowers-zh's A/B testing enables data-driven prompt optimization, reducing iteration time by 70% and improving prompt quality by 30% through continuous measurement.
custom skill creation and registration framework
Medium confidenceProvides a framework for developers to create custom skills by defining prompt templates, input/output schemas, and execution logic. Custom skills are registered in the MCP server and exposed to all connected AI agents with the same interface as built-in skills. Includes TypeScript/JavaScript SDK with type definitions, validation helpers, and testing utilities. Supports skill packaging and distribution via npm for community sharing.
Provides a TypeScript/JavaScript SDK for creating custom skills with built-in validation, testing utilities, and npm packaging support. Custom skills integrate seamlessly with built-in skills and are exposed to all connected AI agents through the MCP server.
Unlike closed skill systems (Copilot extensions, Cursor rules), superpowers-zh's open skill framework enables teams to create custom skills for domain-specific workflows, reducing development time by 80% through reusable skill components and community contributions.
multi-provider llm skill execution with fallback routing
Medium confidenceRoutes skill invocations across multiple LLM providers (OpenAI, Anthropic, Google, local Ollama, Chinese providers like Qwen/Baichuan) with automatic fallback logic. Detects provider availability, handles rate limits, and retries failed requests using exponential backoff. Abstracts provider-specific API differences (function calling schemas, token counting, context window limits) behind a unified skill execution interface, enabling skills to run on any available LLM without code changes.
Implements provider-agnostic skill execution with automatic fallback routing and rate limit handling, supporting both cloud LLMs (OpenAI, Anthropic, Google) and local models (Ollama) with Chinese LLM providers (Qwen, Baichuan) as first-class citizens. Uses exponential backoff and health checks to maintain resilience across provider failures.
Unlike single-provider solutions (Copilot relying only on OpenAI, Claude Code relying only on Anthropic), superpowers-zh enables true provider independence with automatic failover, reducing downtime by 95% and enabling cost arbitrage across providers.
codebase-aware context injection for skill execution
Medium confidenceAutomatically extracts and injects relevant codebase context (imports, type definitions, related functions, test files, documentation) into skill prompts before LLM execution. Uses AST parsing and semantic analysis to identify code dependencies and include only relevant context (not entire codebase), staying within LLM context windows. Caches parsed codebase structure to avoid re-parsing on repeated skill invocations, reducing latency by 70-80%.
Uses AST parsing and semantic dependency analysis to intelligently select only relevant codebase context for each skill invocation, with aggressive caching to reduce re-parsing overhead. Supports multiple languages (JS, TS, Python, Java, Go, Rust) with language-specific context extraction (imports, type definitions, test patterns).
Compared to naive full-codebase context injection (which exceeds context windows) or no context (which produces inconsistent code), superpowers-zh's smart context selection maintains consistency while staying within LLM limits, improving code quality by 50% while reducing token usage by 60%.
structured output schema enforcement for skill results
Medium confidenceDefines and enforces JSON schema constraints on skill outputs (code review comments, refactoring suggestions, test cases) to ensure machine-parseable, consistent results. Uses schema validation and retry logic — if LLM output violates schema, automatically re-prompts with schema examples and stricter instructions. Supports schema versioning to enable backward compatibility as skills evolve.
Enforces strict JSON schema validation on all skill outputs with automatic retry-and-reformat logic, ensuring 100% machine-parseable results. Includes schema versioning and backward compatibility, enabling safe evolution of skill output formats without breaking downstream tools.
Unlike raw LLM output (which requires manual parsing and error handling), superpowers-zh's schema-enforced results are immediately usable in automation pipelines, reducing integration code by 70% and eliminating parsing errors.
skill composition and chaining for multi-step workflows
Medium confidenceEnables sequential execution of multiple skills with automatic data flow between steps (output of one skill becomes input to next). Provides a workflow DSL (YAML or JSON) to define skill chains, with conditional branching (if code review fails, run refactoring skill), error handling (retry failed steps, skip on error), and result aggregation (combine results from parallel skill invocations). Executes chains with dependency tracking to optimize parallelization where possible.
Provides a declarative workflow DSL for composing skills with automatic data flow, conditional branching, and error recovery. Optimizes execution by parallelizing independent skills while maintaining sequential dependencies, reducing total execution time by 30-50% compared to naive sequential execution.
Unlike manual skill orchestration (calling skills one-by-one in code), superpowers-zh's workflow DSL enables non-developers to define complex AI-driven code workflows, reducing implementation time by 80% and enabling rapid iteration on workflow logic.
chinese language skill prompts with cultural coding conventions
Medium confidenceProvides 6 original coding skills with prompts optimized for Chinese language and Chinese development practices. Includes cultural conventions (naming patterns, code organization, documentation style) common in Chinese teams, and is optimized for Chinese LLMs (Qwen, Baichuan) which may have different training data and instruction-following patterns than English-trained models. Supports bilingual prompts (Chinese + English) for mixed-language teams.
Provides Chinese-language skill prompts optimized for Chinese development practices and Chinese LLMs (Qwen, Baichuan), with built-in support for Chinese naming conventions, documentation standards, and code organization patterns. Includes bilingual prompts for mixed-language teams.
Unlike generic English-language AI coding tools (Copilot, Claude Code) which require translation and cultural adaptation, superpowers-zh's native Chinese skills reduce friction for Chinese teams by 80% and enable 30% better code quality when using Chinese LLMs.
local-first execution with ollama integration for offline coding
Medium confidenceIntegrates with Ollama (local LLM runtime) to execute skills entirely on-device without cloud API calls. Supports popular open-source models (Llama 2, Mistral, CodeLlama) optimized for code generation. Automatically detects Ollama availability and falls back to cloud LLMs if local model is unavailable. Caches model weights locally to avoid re-downloading, reducing startup time from minutes to seconds on subsequent runs.
Integrates Ollama for fully local, on-device skill execution with automatic fallback to cloud APIs. Supports popular open-source code models (CodeLlama, Mistral) and includes model weight caching to reduce startup overhead from minutes to seconds.
Unlike cloud-only solutions (Copilot, Claude Code), superpowers-zh's Ollama integration enables offline execution for privacy-sensitive code, reduces API costs by 100% for local execution, and provides fallback to cloud APIs for better quality when needed.
ide and editor integration via mcp client plugins
Medium confidenceProvides MCP client implementations for popular code editors (VS Code, Cursor, Windsurf, Vim, Neovim) that connect to the superpowers-zh MCP server and expose skills as editor commands and inline suggestions. Integrates with editor keybindings, context menus, and command palettes for seamless workflow. Supports editor-specific features (VS Code inline code actions, Cursor's native AI features, Vim's command mode) while maintaining consistent skill behavior across editors.
Provides native MCP client implementations for 5+ editors (VS Code, Cursor, Windsurf, Vim, Neovim) with editor-specific UI integration (inline code actions, context menus, command palettes) while maintaining consistent skill behavior across all editors.
Unlike editor-specific AI tools (Copilot for VS Code, Cursor's native AI), superpowers-zh's multi-editor support enables skill access across all major editors with a single MCP server, reducing setup complexity by 70% for teams using multiple editors.
skill execution monitoring and observability with structured logging
Medium confidenceProvides comprehensive logging and monitoring of skill execution including execution time, token usage, LLM provider, error details, and result quality metrics. Outputs structured logs (JSON format) that can be ingested into observability platforms (Datadog, New Relic, ELK Stack) for real-time monitoring and alerting. Includes built-in metrics (success rate, average latency, cost per skill) and dashboards for tracking skill usage and performance over time.
Provides structured JSON logging and built-in metrics for skill execution with integration points for observability platforms (Datadog, New Relic, ELK). Includes cost tracking per skill and per provider, enabling accurate cost allocation and optimization.
Unlike unmonitored skill execution (no visibility into performance or costs), superpowers-zh's observability enables teams to track skill quality, detect failures early, and optimize costs, reducing operational overhead by 60% and improving reliability by 40%.
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with superpowers-zh, ranked by overlap. Discovered automatically through the match graph.
oh-my-openagent
omo; the best agent harness - previously oh-my-opencode
network-ai
AI agent orchestration framework for TypeScript/Node.js - 27 adapters (LangChain, AutoGen, CrewAI, OpenAI Assistants, LlamaIndex, Semantic Kernel, Haystack, DSPy, Agno, MCP, OpenClaw, A2A, Codex, MiniMax, NemoClaw, APS, Copilot, LangGraph, Anthropic Compu
OpenHands
🙌 OpenHands: AI-Driven Development
MCP Toolbox for Databases
** - Open source MCP server specializing in easy, fast, and secure tools for Databases.
LiteMultiAgent
The Library for LLM-based multi-agent applications
GitHub Repository
[Discord](https://discord.com/invite/wKds24jdAX/?utm_source=awesome-ai-agents)
Best For
- ✓Teams using multiple AI coding agents (Claude Code, Copilot CLI, Cursor, Windsurf) who want unified skill access
- ✓Developers building agentic coding workflows that require standardized tool calling across heterogeneous LLM providers
- ✓Chinese-speaking development teams needing localized prompts and culturally-adapted coding practices
- ✓Development teams practicing test-driven development who want AI agents to enforce TDD workflows
- ✓Chinese development teams needing prompts optimized for Chinese LLMs (Qwen, Baichuan) and Chinese coding conventions
- ✓Teams standardizing code review practices across distributed teams using AI agents
- ✓Projects requiring consistent documentation generation with cultural/linguistic localization
- ✓Teams continuously improving skill prompts and wanting data-driven optimization
Known Limitations
- ⚠MCP server must be running as a separate process — adds deployment complexity vs embedded integrations
- ⚠Skill execution latency depends on MCP transport layer (stdio, HTTP) — typically 100-500ms overhead per skill invocation
- ⚠Limited to skills that can be expressed as synchronous or async functions — stateful, long-running workflows require external orchestration
- ⚠Chinese language prompts may not work optimally with non-Chinese-trained models (GPT-4, Gemini) without additional fine-tuning
- ⚠Prompt quality depends on underlying LLM capability — weaker models (GPT-3.5, Gemini 1.5) may not follow TDD patterns consistently
- ⚠Skills are static prompt templates — no dynamic adaptation based on codebase context or team preferences without manual prompt editing
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
Repository Details
Last commit: Apr 19, 2026
About
🦸 AI 编程超能力 · 中文增强版 — superpowers(116k+ ⭐)完整汉化 + 6 个中国原创 skills,让 Claude Code / Copilot CLI / Hermes Agent / Cursor / Windsurf / Kiro / Gemini CLI 等 16 款 AI 编程工具真正会干活
Categories
Alternatives to superpowers-zh
Are you the builder of superpowers-zh?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →