Files
knowledge-base/1 - Inbox/从裸奔到全副武装:Claude Code 10 个精选仓库.md
Yaojia Wang ab980cce7c Sync
2026-05-21 21:48:34 +02:00

113 lines
8.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "从裸奔到全副武装Claude Code 10 个精选仓库"
source: "https://x.com/ai_super_niko/article/2057444411727134926"
author:
- "[[Niko · 开发老兵 · AI编程实战 (@ai_super_niko)]]"
published: 2026-05-21
created: 2026-05-21
description: "昨天刷到 @neil_xbt 发了篇 \"100 Repositories You Need for Claude Code\"100 个仓库。我看了眼目录就知道大部分人会收藏然后忘掉。过了一遍,砍掉 awesome-list 索引(本身没功能)、场景太窄的、架构太重个人用不动的,..."
tags:
- "clippings"
---
![Image](https://pbs.twimg.com/media/HIx0b_5awAEnXxV?format=jpg&name=large)
昨天刷到 [@neil\_xbt](https://x.com/@neil_xbt) 发了篇 "100 Repositories You Need for Claude Code"100 个仓库。我看了眼目录就知道大部分人会收藏然后忘掉。
过了一遍,砍掉 awesome-list 索引(本身没功能)、场景太窄的、架构太重个人用不动的,再加上几个原文没收录但我自己在用的,精选 10 个分享一下。
![Image](https://pbs.twimg.com/media/HIx01rOboAAxlxl?format=jpg&name=large)
## 1\. cc-switch (76.3K stars)
一个桌面 app 管所有 AI coding 工具Claude Code、Codex、OpenCode、OpenClaw、Gemini CLI、Hermes Agent。Rust + Tauri 写的。
你现在用几个 AI coding 工具我用三个。每个一个终端窗口、一套配置、一套快捷键。cc-switch 把它们塞进一个 app切 agent 跟切 tab 一样。76K stars 不意外,这个痛点太普遍了。我比较喜欢的是 MCP server 配置可以跨 agent 复用不用每个工具配一遍。provider 管理和 skills 同步也做了WSL 也支持。
repo: [https://github.com/farion1231/cc-switch](https://github.com/farion1231/cc-switch)
## 2\. web-access (6.6K stars)
给 Claude Code 加联网能力的 skill。
Claude Code 默认不能上网。这个限制在写代码时还好一旦你想让它帮你查资料、读文档、看个网页内容就卡住了。web-access 接管你日常 Chrome 的 CDP 协议,让 Claude 直接用你的浏览器上网。搜索、抓页面、填表单、操作需要登录的站点都行。它分三层:简单页面走 Jina/WebFetch复杂页面走 CDP 直连浏览器(准),多个目标同时调研时自动拆给子 agent 并行(省时间)。我每天用,写文章找素材全靠它。
repo: [https://github.com/eze-is/web-access](https://github.com/eze-is/web-access)
## 3\. OpenCLI (22K stars)
把网站变成 CLI 命令AI agent 直接操作。
想法挺妙的。你浏览器里已经登录了 GitHub、Jira、Notion、公司内部工具OpenCLI 把这些网站的操作抽象成命令行。Claude 不需要 API key不需要 OAuth直接用你已有的登录态操作。对没有开放 API 的内部系统特别好使。比给每个网站写 MCP server 省事多了。
repo: [https://github.com/jackwener/OpenCLI](https://github.com/jackwener/OpenCLI)
## 4\. anthropics/skills (37.5K stars)
官方 Skills 库。处理 PDF、DOCX、XLSX、PPTX还有 art generation。
放这个不是因为功能强,是因为它是标准答案。想写自己的 skill先看官方怎么组织文件、怎么写 SKILL.md、参数怎么传。照着来就行。我当初写第一个 skill 的时候走了不少弯路,后来发现官方仓库里每个 skill 的结构都很统一SKILL.md 里怎么声明触发词、怎么描述能力边界、怎么处理多参数,全是现成的范本。
repo: [https://github.com/anthropics/skills](https://github.com/anthropics/skills)
## 5\. courses (Anthropic)
官方免费课程。prompt engineering、API 用法、agent 构建都有。
我见过太多人上来就装插件prompt 基本功一塌糊涂。写出来的 CLAUDE.md 又长又散skill 触发不了还不知道为什么。这套课程不长,几个 notebook 跑一遍就能建立正确的心智模型:什么时候该用 system prompt、什么时候该用 tool use、怎么控制输出格式。过一遍再折腾社区工具顺序别搞反了。
repo: [https://github.com/anthropics/courses](https://github.com/anthropics/courses)
## 6\. obra/superpowers (148K stars)
面向软件开发的 skills 框架。一整套开发流程brainstorm → spec → plan → TDD → review → merge。不是零散 skill 的合集,是一个有明确工作流编排的系统。
我用了 /brainstorm 和 /write-plan比手写 prompt 引导效果好。它会先让你描述需求,然后自动生成 spec再拆成可执行的 plan每一步都有 checkpoint。复杂任务自动拆给多个 agent 并行。148K stars生态里目前最火的一个社区活跃度也高基本每周都有新 skill 贡献进来。
repo: [https://github.com/obra/superpowers](https://github.com/obra/superpowers)
## 7\. everything-claude-code
Cerebral Valley x Anthropic hackathon 冠军。10 个月实际使用攒出来的东西30 个 agents、136 个 skills、60 个 slash commands、1282 个测试98% 覆盖率。
跟 superpowers 不一样。superpowers 是框架,这个是一个人把自己的完整工具箱开源了。里面 agent 的职责拆分和协作写法值得翻翻,比如它怎么让一个 "architect" agent 先出方案,再交给 "implementer" agent 执行,中间还有 "reviewer" agent 做质量把关。这种多角色协作的模式,比单 agent 硬写效果好不少。
repo: [https://github.com/affaan-m/everything-claude-code](https://github.com/affaan-m/everything-claude-code)
## 8\. graphify
代码库生成交互式知识图谱。能搜索、能探索、能提问。Claude Code、Codex、Cursor 都支持。
接手陌生项目时我会用这个。Repomix 是把代码打成一个平面文件信息全但没有结构。graphify 保留模块间的依赖关系和调用链,你能直观看到哪个模块是核心枢纽、哪些模块耦合严重。对大型项目做架构决策之前,先用它跑一张图出来,比读代码快得多。特别是那种文档缺失、前任已离职的项目。
repo: [https://github.com/safishamsi/graphify](https://github.com/safishamsi/graphify)
## 9\. claude-mem
跨会话长期记忆,压缩存储。
Claude Code 自带 MEMORY.md 要手动维护claude-mem 自动做。上周为什么选了这个方案、那个 bug 怎么修的、构建命令要加什么参数,下次开会话不用重新说一遍。它的压缩机制比较聪明,不是简单截断,而是提取关键决策和上下文,丢掉过程细节。对长期维护的项目来说,这个比每次手动更新 MEMORY.md 省心太多。
repo: [https://github.com/thedotmack/claude-mem](https://github.com/thedotmack/claude-mem)
## 10\. claude-code-system-prompts (10.3K stars)
Claude Code 每个版本的完整 system prompt新版本发布后几分钟就更新。27 个内置工具描述、Plan/Explore/Task 子 agent prompt、compact、statusline、WebFetch 的具体指令,全在里面。
你用 Claude Code 时觉得"它就是这样的"那些行为,其实是 system prompt 写死的。什么时候自动建 plan、什么时候拒绝执行、为什么有时候突然问你问题翻一下 prompt 就明白了。我写 CLAUDE.md 的时候踩过坑写了一条规则Claude 死活不听,后来发现是跟 system prompt 里的默认行为冲突了。看懂底层 prompt写配置就不会跟系统打架。我隔几天就翻一下它的 changelog。
repo: [https://github.com/Piebald-AI/claude-code-system-prompts](https://github.com/Piebald-AI/claude-code-system-prompts)
## 安装顺序
1. 过一遍 courses
2. 翻一遍 claude-code-system-prompts理解底层行为
3. 装 anthropics/skills看官方标准
4. 装 obra/superpowers日常开发用
5. cc-switch、web-access、OpenCLI 按需装
6. graphify、claude-mem 按项目需求加
不用一次全装。
原文来自 [@neil\_xbt](https://x.com/@neil_xbt) 的完整 100 仓库推荐: [https://x.com/neil\\\_xbt/status/2056386359376396458](https://x.com/neil/_xbt/status/2056386359376396458)
> 我是Niko每天分享 AI 编程实战、小白入门教程、AI提效工作流。觉得有用欢迎关注转发让更多人看到。