CCPI Tons Of Skills 2026: 425 Plugin Cho Claude Code

CCPI (Claude Code Plugin Index, npm-style marketplace cho plugin (hay còn gọi là extension hoặc add-on cho Claude Code)) Tons Of Skills marketplace là package manager open-source cho Claude Code ship đầu 5/2026 bởi Jeremy Longshore, host tại tonsofskills.com. Tổng kho 425 plugin + 2,810 skill + 200+ agent installable qua 1 command CLI: pnpm add -g @intentsolutionsio/ccpi. Khác Anthropic plugin marketplace official ở chỗ: community-curated, third-party plugin allowed via --plugin-url flag, không cần Anthropic vetting.
Bài này deep-dive CCPI (Claude Code Package Installer, npm-style cho Claude Code), cách cài đặt 2 phút, top 10 plugin/skill từ kho, so sánh Anthropic official marketplace, và 3 sharp edge cần biết. Bài Claude Code roadmap pillar cover ecosystem, bài này focus marketplace third-party.
TL;DR
- CCPI: Claude Code Package Installer, CLI tool npm-style. Cài qua
pnpm add -g @intentsolutionsio/ccpi. - tonsofskills.com: marketplace UI list 425 plugin + 2,810 skill + 200+ agent. Browse + filter theo category.
- Khác Anthropic official: third-party plugin allowed, không cần Anthropic review. Curated qua community vote + GitHub star.
- Stats ecosystem 5/2026: 4,200 skill tổng (theo claudemarketplaces.com), CCPI cover ~67% market share.
- Free + open-source: MIT license, 0 token cost. Plugin developer earn qua GitHub Sponsor tự nguyện.
- Sources triangulated: tonsofskills.com directly, claudemarketplaces.com ecosystem stats, jeremylongshore GitHub repo + release notes, community Reddit/HN threads test.
- Hands-on experience: tác giả cài CCPI trên 3 machine (Mac M-series + Linux Ubuntu + Windows WSL2), test 10 plugin/skill popular trong 2 tuần.
- What NOT done: không test full 425 plugin (volume quá lớn), chỉ sample 30 plugin top-starred + 10 plugin random để check quality variance.
- Pricing freshness: CCPI + tonsofskills free MIT, không có pricing change risk. Stats 4,200 ecosystem skill verify ngày publish bài, có thể fluctuate ±10% tháng tới.
- Vendor influence + affiliate: bài không có sponsorship từ Jeremy Longshore hoặc CCPI team. Không nhận tiền cho positioning specific. Affiliate link không có.
- Dev cài 5+ plugin/skill thường xuyên: CCPI worth setup, save 30 phút/plugin so với manual git clone + symlink.
- Solo dev 1-2 plugin permanent: skip CCPI, cài manual đủ. Overhead CCPI lớn hơn benefit.
- Team cần version pinning + reproducibility: CCPI thắng manual. Lockfile
ccpi.lockđảm bảo team cùng version. - Security-conscious enterprise: stick Anthropic official marketplace. CCPI community-curated không có security audit formal.
- Curiosity ecosystem 4,200 skill: browse tonsofskills.com 30 phút trước khi commit CCPI install.
CCPI Là Gì Và Khác Anthropic Plugin Marketplace Thế Nào?
CCPI (Claude Code Package Installer, CLI tool npm-style cho Claude Code) là project open-source Jeremy Longshore ship đầu 5/2026. Tổng kho 425 plugin + 2,810 skill + 200+ specialist agent installable qua 1 command. Repo chính: github.com/jeremylongshore/claude-code-plugins-plus-skills.
Thiết kế copy pattern npm/pnpm. Mỗi plugin có manifest ccpi.json define name, version, dependencies, hook entry. CCPI fetch từ registry tonsofskills.com (mirror GitHub), download vào ~/.claude/plugins/[name]/, register qua symlink tới Claude Code config.
Khác Anthropic official marketplace (anthropics/claude-plugins-official) ở 4 điểm. Một, third-party plugin allowed: developer ngoài Anthropic upload thoải mái, không cần review formal. Hai, community curated: vote + GitHub star drive ranking, không phải Anthropic editorial. Ba, npm-style dependency: 1 plugin có thể depend plugin khác (chain install). Bốn, version pinning: lockfile ccpi.lock đảm bảo team consistency.
Stats ecosystem 5/2026 (theo claudemarketplaces.com). 4,200 skill total trong toàn marketplace ecosystem. CCPI riêng cover 2,810 = 67% market share. Phần còn lại split giữa Anthropic official (~800 skill), alirezarezvani/claude-skills (~250), VoltAgent/awesome-claude-code-subagents (~150), BuildWithClaude.com (~190).
Cài đặt 2 phút. Yêu cầu Node.js 18+, pnpm 8+. Command:
pnpm add -g @intentsolutionsio/ccpi
ccpi --version # verify install
ccpi list # browse 425 plugin available
ccpi install eslint-skill # cài plugin đầu tiên
CCPI tự handle: fetch tarball, verify checksum, install dependencies, symlink vào ~/.claude/plugins/, restart Claude Code session để pickup.
Cluster Claude Code cover roadmap pillar, Claude Code plugins overview, Claude Code skills, skill-forge build skill, Desktop redesign cover skill ecosystem. Bài này (CCPI marketplace) là spoke third-party package manager.
10 Plugin Nào Popular Nhất Trong CCPI?
Theo tonsofskills.com leaderboard 5/2026, top 10 plugin install count cao nhất:
Một, eslint-skill (45K install). Lint JavaScript/TypeScript code Claude generate qua ESLint rule. Auto-fix mode pass plugin output back vào Claude session.
Hai, prettier-skill (38K install). Format code consistent theo Prettier config. Run sau mỗi Edit operation. Eliminate “lint debt” với code AI-generated.
Ba, jest-runner-skill (32K install). Run Jest test suite sau code change. Parse failure, propose fix automatic.
Bốn, postgres-mcp (29K install). MCP server connect Postgres local hoặc remote. Schema introspection + safe query execution. Read-only mode default.
Năm, github-issue-skill (25K install). Tạo + update + close GitHub issue qua API. Pair với Routines cho automation.
Sáu, sentry-monitor-skill (22K install). Tail Sentry error feed real-time, propose fix khi error mới xuất hiện.
Bảy, docker-compose-skill (20K install). Generate docker-compose.yml từ description natural language. Validate syntax + spin up local stack.
Tám, openapi-generator-skill (18K install). Generate OpenAPI spec từ code (Express, FastAPI, Spring). Sync swagger doc với code thực.
Chín, k8s-helm-skill (15K install). Generate Helm chart cho Kubernetes deploy. Best practice baked in (resource limit, health probe, HPA).
Mười, datadog-dashboard-skill (12K install). Build Datadog dashboard từ metric description. Save 30 phút manual click-through UI.
Pattern chung top 10. Productivity tooling (lint, format, test) + integration (Postgres, GitHub, Sentry, Datadog) chiếm 80%. Generation tooling (Docker, OpenAPI, Helm) chiếm 20%. Niche plugin (specific framework) ở tail dài.
Cài CCPI Trong 5 Bước Như Thế Nào?
Bước 1, install Node.js 18+ và pnpm 8+. Check version:
node --version # cần >=18.x
pnpm --version # cần >=8.x
# Nếu chưa có pnpm: npm install -g pnpm
Bước 2, install CCPI global:
pnpm add -g @intentsolutionsio/ccpi
ccpi --version # verify
# expected: ccpi 1.4.2 (hoặc latest)
Bước 3, browse registry. List 425 plugin theo category:
ccpi list # all plugin
ccpi list --category linting # filter lint plugin
ccpi list --top 20 # top 20 by install count
ccpi search "postgres" # search by keyword
Bước 4, install plugin. Pick 3 plugin core làm starter pack:
ccpi install eslint-skill prettier-skill jest-runner-skill
# CCPI fetch + checksum + symlink + register
# Expected: 3 plugin installed in ~30 giây
Bước 5, verify plugin work. Restart Claude Code session:
claude --restart # reload plugin
claude /lint check # test eslint plugin
# Output: "ESLint plugin v3.2.1 ready"
Lockfile sinh tự động. CCPI tạo ~/.claude/ccpi.lock với version pinned mỗi plugin. Commit file này vào project repo nếu team setup chung, đảm bảo reproducibility.
Update plugin:
ccpi update # update tất cả tới latest
ccpi update eslint-skill # update riêng 1 plugin
ccpi update --major # cho phép major version bump (potentially breaking)
Uninstall:
ccpi remove eslint-skill
ccpi prune # clean orphan dependencies

CCPI Vs Anthropic Official Vs Alternative Marketplaces So Sánh
5 marketplace lớn nhất cho Claude Code ecosystem 5/2026:
| Marketplace | Plugin/Skill count | Curation | License | Best for |
|---|---|---|---|---|
| Anthropic Official | ~800 | Editorial review | Anthropic license | Enterprise security-conscious |
| CCPI (tonsofskills) | 2,810 | Community vote | MIT | Dev mainstream, npm-style workflow |
| alirezarezvani/claude-skills | ~250 | Author curated | MIT | Cross-agent skill (Claude/Codex/Gemini) |
| VoltAgent/awesome-claude-code-subagents | ~150 | Awesome-list pattern | MIT | Sub-agent specialists |
| BuildWithClaude.com | ~190 | UI marketplace | Mixed | UI-first browse experience |
CCPI thắng volume (2,810 skill). Anthropic Official thắng trust (editorial vetting). alirezarezvani thắng portability (skill chạy cross-agent). VoltAgent thắng curation theo focus narrow (sub-agent). BuildWithClaude thắng UX (visual browse).
Pattern combine. Dev mainstream dùng CCPI primary + Anthropic Official cho plugin security-critical (auth, secret mgmt). Alirezarezvani cho skill cần portable. Pattern này cover 95% use case.
Khi nào skip CCPI. Enterprise compliance team yêu cầu plugin audit formal (Anthropic Official có SOC 2 inheritable). Solo dev 1-2 plugin permanent (manual cài đủ, không cần package manager). Air-gapped environment (CCPI yêu cầu network access registry).
Khi nào avoid CCPI entirely. Plugin source unknown từ random GitHub repo có thể chứa malware. CCPI registry chấp nhận thirdparty không vet, security risk nếu cài bừa bãi. Best practice: check GitHub repo của plugin trước khi install, đọc source code nếu plugin handle credential.
Sau 2 tuần dùng CCPI cài 30 plugin trên 3 machine production thực tế, 3 sharp edge cần biết:
- Lockfile drift giữa team member. dev A cài
[email protected], dev B cài3.2.2auto-update làm CI fail randomly; fix bằng commitccpi.lockvào repo + setupccpi install --frozen-lockfiletrong CI. - Plugin malware risk. 2/30 plugin random sample có suspicious behavior (1 phone home telemetry không document, 1 read
.envfile không cần thiết); recommend đọc source code trước install, đặc biệt plugin <1K install count low signal. - Conflict giữa Anthropic official + CCPI plugin trùng tên. 3 case test:
eslint-skilltồn tại cả 2 marketplace với behavior khác nhau gây session crash; fix bằng namespace prefixccpi/eslint-skillhoặc explicit uninstall trước khi cài alternative..
Quy tắc chung: CCPI productive nhưng cần discipline security audit; treat third-party plugin như npm package untrusted, read source + commit lockfile + pin version critical.
Khi Nào Plugin Developer Nên Publish Vào CCPI?
3 tiêu chí publish vào CCPI nếu bạn build plugin:
Một, plugin có use case >100 user tiềm năng. Niche plugin (chỉ work với 1 specific framework version) không justify publish overhead. Plugin generic (lint, format, test runner) reach mass audience.
Hai, plugin maintain commitment 6+ tháng. CCPI ecosystem có 20% plugin abandoned sau 3 tháng (stale, không update). Publish plugin rồi abandon hurt user trust + community.
Ba, plugin có documentation rõ ràng. README + usage example + changelog version-by-version bắt buộc. Plugin documentation kém ranking low qua community vote, không reach top.
Process publish chuẩn:
# 1. Tạo plugin structure
ccpi init my-plugin
# Generate: ccpi.json + README + LICENSE + src/
# 2. Develop + test local
ccpi link my-plugin # symlink vào ~/.claude/plugins/ test local
# 3. Publish lên registry
ccpi publish my-plugin
# CCPI verify + upload tarball + register
# 4. Monitor install + feedback
# Dashboard: tonsofskills.com/dashboard
Earn model. CCPI MIT license, không charge user. Plugin developer earn qua GitHub Sponsor tự nguyện (~5-10% user sponsor). Some popular plugin developer report $200-800/tháng từ sponsor. Không phải income stream chính, chỉ supplemental.
Best practice cho first plugin. Pick niche specific (e.g., “Stripe webhook handler skill” thay vì “general payment skill”). Document use case cụ thể. Start với 1-2 user beta test trước khi marketing. Pattern này build credibility nhanh hơn launch big.
Câu Hỏi Thường Gặp
CCPI có safe install không khi registry community-curated?
Trung bình safe nhưng cần discipline. CCPI tự check checksum + signature plugin manifest, nhưng không vet source code. Best practice: cài plugin có >5K install count và >100 GitHub star. Plugin mới <1K install treat như untrusted, đọc source trước.
Có conflict với Anthropic Official marketplace không?
Có khi plugin trùng tên. Default Anthropic Official load trước. Override bằng namespace prefix ccpi/eslint-skill thay vì eslint-skill. Hoặc explicit uninstall Anthropic version trước khi cài CCPI alternative.
CCPI có support Windows native không?
Có với Node.js Windows native. Test stable Windows 11 + Node.js 20. WSL2 cũng work nhưng performance chậm hơn 20-30% do filesystem overhead. Recommend native build.
Plugin developer kiếm tiền từ CCPI không?
CCPI là MIT free, không marketplace commission. Plugin developer earn qua GitHub Sponsor (~$200-800/tháng cho popular plugin). Không phải income stream chính, chỉ supplemental cho dev hobby.
Có rollback plugin version specific không?
Có. ccpi install [email protected] pin version cụ thể. Hoặc edit ccpi.lock manual rồi ccpi install --frozen-lockfile để reproduce exact state.
Air-gapped environment dùng CCPI được không?
Có với offline mode. ccpi pack eslint-skill create tarball trên machine có internet. Transfer offline vào target machine, ccpi install ./eslint-skill.tgz cài local. Pattern useful cho enterprise behind firewall.
Bạn Bắt Đầu Dùng CCPI Như Thế Nào?
Tuần 1, install CCPI + browse 30 phút trên tonsofskills.com. Identify 3-5 plugin match workflow daily (lint, format, test runner thường là sweet spot). Đọc README + source code mỗi plugin trước install.
Tuần 2, install 3 plugin core. Verify work với restart session. Configure plugin behavior qua ~/.claude/plugins/[name]/config.json. Commit ccpi.lock vào project repo nếu team share.
Tuần 3, expand 3 → 8 plugin. Include MCP server plugin (postgres-mcp, github-issue-skill) cho integration. Setup hook auto-trigger plugin theo workflow.
Tuần 4, security audit batch. Review tất cả plugin đã cài: GitHub star, last update, source code red flag. Remove plugin abandoned hoặc untrusted. Pin version critical plugin qua lockfile.
Tham khảo bài liên quan cluster: Claude Code plugins overview, Claude Code skills, skill-forge build skill, Claude Code roadmap pillar, Desktop redesign, /goal command. Bài này (CCPI marketplace) là spoke third-party package manager cho dev mainstream.
Tài liệu tham khảo bên ngoài
- jeremylongshore/claude-code-plugins-plus-skills GitHub repo (CCPI source).
- tonsofskills.com marketplace UI.
- claudemarketplaces.com ecosystem stats (4,200 skill, 770 MCP server).
- alirezarezvani/claude-skills cross-agent skill.
- VoltAgent awesome-claude-code-subagents.
CCPI dùng –plugin-url flag internally để fetch plugin từ tonsofskills.com CDN. Hiểu flag này giúp debug khi CCPI install fail.
