Claude-OS

作者 rohanmistry231已验证

A concise Claude reference bundle for developers, covering commands, MCP servers, plugins, tools, workflows, and agent frameworks in one place. Designed for fast discovery and practical integration.

122
Stars
28
Forks
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/rohanmistry231/Claude-OS

快速入门

使用 Claude-OS 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

🧠 Claude OS

The complete operating layer for Claude.

Commands · MCP Servers · Plugins · Tools · Workflows · Agent Frameworks

Files Lines Updated License


The Problem

You can spend 40 hours searching GitHub, Reddit, Medium, and Anthropic's docs — and still not have a complete picture of what Claude can actually do.

The ecosystem exploded in 2025–2026.

  • 14,600+ repositories indexed
  • 1,200+ MCP servers available
  • 400+ plugins and skills
  • 25+ agent frameworks
  • 100+ commands and prompt codes

Nobody documented all of it in one place.

“This isn’t a resource. It’s a complete operating layer for Claude.”

Until now.


📦 What's Inside

6 reference files. 4,700+ lines. Everything verified and current as of April 2026.

FileWhat It CoversLinesSize
commands.mdEvery slash command, CLI flag, keyboard shortcut, and prompt code65324 KB
mcp-servers.md25 MCP servers + 10 memory systems, install configs, usage patterns78124 KB
plugins.md40+ plugins and skills across 6 tiers, install commands, role-based setups82929 KB
tools.md25 tools — frameworks, vector DBs, deployment platforms, automation56120 KB
workflows.md25 production workflows from RAG pipelines to multi-agent orchestration1,17833 KB
agent-frameworks.md25 agent frameworks with benchmarks, code examples, decision guide73227 KB

Total: 4,734 lines · 157 KB of curated, production-verified reference material


🗺️ How to Navigate This Repo

New to Claude Code?

commands.md → mcp-servers.md → plugins.md

Learn what Claude can do natively → connect it to the world → extend with skills.

Building a production app?

tools.md → workflows.md → agent-frameworks.md

Pick your stack → follow the workflow pattern → choose the right orchestration.

Looking for something specific?

I want to...Go to
Learn all Claude commandscommands.md
Connect Claude to GitHub / Postgres / Slackmcp-servers.md
Give Claude persistent memorymcp-servers.md#memory-systems
Install the best pluginsplugins.md
Build a RAG pipelineworkflows.md
Compare CrewAI vs LangGraphagent-frameworks.md
Pick a vector databasetools.md
Deploy Claude to productiontools.md + workflows.md

Claude OS — Layer Model

This is a framework, not just a collection.

  1. Commands — Interaction
  2. MCP — Execution
  3. Plugins — Capabilities
  4. Tools — Infrastructure
  5. Workflows — Automation
  6. Agents — Intelligence scaling

Start Here If You Have 10 Minutes

  • Install 3 plugins
  • Add Memory MCP
  • Try Builder–Validator

⚡ Quick Wins — 5 Things to Do Right Now

1. Install the 3 plugins that matter most

/plugin marketplace add obra/superpowers-marketplace
/plugin install superpowers@superpowers-marketplace      # Plans before it builds
/plugin install context7@claude-plugins-official         # Live docs, no hallucinated APIs
claude skills add juliusbrussee/caveman                  # 65-75% fewer output tokens

2. Set up your core MCP servers

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/projects"]
    },
    "github": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-github"],
      "env": { "GITHUB_PERSONAL_ACCESS_TOKEN": "your_token" }
    },
    "memory": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-memory"]
    }
  }
}

3. Initialize project memory

/init           # Creates CLAUDE.md — Claude reads this every session
/memory         # Edit it with your stack, conventions, and rules

4. Learn the 5 keyboard shortcuts that save the most time

Shift+Tab    → Cycle modes: Normal → Auto-Accept → Plan Mode
Ctrl+R       → Search command history
Esc Esc      → Rewind conversation or code
Ctrl+T       → Toggle task list
/compact     → Compress context when it hits 70%

5. Use the right thinking mode for the right task

L99          → Maximum reasoning depth (architecture decisions)
XRAY         → Root cause analysis (debugging)
OODA         → Tactical decisions under uncertainty
BEASTMODE    → Maximum effort, no shortcuts
/plan        → Force planning before execution (production code)

📊 The Ecosystem at a Glance

MCP Servers — By Category

CategoryMust-Have Servers
Version ControlGitHub, Git, GitLab
DatabasePostgreSQL, SQLite, Redis, Supabase, MongoDB
CommunicationSlack, Notion, Gmail, Discord
DesignFigma
DeploymentVercel, Docker, AWS, Kubernetes
SearchBrave Search, Fetch, Puppeteer
MemoryMemory MCP, mem0, Memora, OmniMem

Plugins — By Role

RoleEssential Installs
All developersSuperpowers, Context7, Caveman
Full-stack+ feature-dev, frontend-design, Playwright
Backend+ backend-architect, test-writer-fixer, security-sweep
Product managers+ Taskmaster, backlog, BMAD Method
Security+ security-sweep, AgentLint, Trail of Bits
Content/Marketing+ connect-apps, marketing-skills

Agent Frameworks — Decision Matrix

NeedFramework
Fastest to demoCrewAI
Production + state managementLangGraph
Research + code executionAutoGen
Claude-only stackClaude Agent SDK
Data-heavy agentsLlamaIndex Agents
Enterprise .NET/AzureMicrosoft Agent Framework

Tools — Stack by Use Case

Use CaseStack
Getting startedChroma + LangChain + Streamlit
Production SaaSSupabase + FastAPI + Pinecone + Vercel
EnterpriseLlamaIndex + LangGraph + Qdrant + Kubernetes
No-codeFlowise or Dify + Zapier or Make
Privacy-firstOllama + Chroma + LlamaIndex (fully local)

🏗️ Repo Structure

claude-os/
│
├── README.md                  ← You are here
│
├── commands.md                ← Slash commands, CLI flags, shortcuts, prompt codes
├── mcp-servers.md             ← MCP servers (Tier 1–3) + memory systems
├── plugins.md                 ← Plugins, skills, extensions (Tier 1–6)
├── tools.md                   ← Frameworks, DBs, deployment, automation
├── workflows.md               ← 25 production workflows with steps + tools
└── agent-frameworks.md        ← 25 frameworks with benchmarks + code examples

🔢 Numbers That Matter

MetricNumber
Commands documented100+
MCP servers covered25 (from 1,200+ ecosystem)
Memory systems10
Plugins and skills40+
Tools documented25
Workflows with full steps25
Agent frameworks25
Code examples included60+
Total lines of reference4,700+
Repos indexed as sources14,634

🧭 The Philosophy Behind This Bundle

Most Claude resources are either:

Too shallow — "Here are 10 cool things Claude can do" (no install commands, no real usage)

Too scattered — spread across 50 different GitHub repos, Medium articles, and Discord threads

Too outdated — written for Claude 2 or early MCP, missing everything from 2025–2026

Claude OS is different. Every entry follows the same structure:

  • What it does (one clear sentence)
  • Why it matters for Claude specifically
  • Working install command or code example
  • Honest "best for" and limitations
  • Updated to April 2026

The rule we followed throughout:

If you can't explain what a tool does in one sentence and show working code in 10 lines, it doesn't belong here.


📈 Verified Production Metrics

Real companies. Real results. What's possible when you use this stack properly.

CompanyWorkflowResult
StripeClaude Code across 1,370 engineers10k-line migration: 4 days vs 10 engineer-weeks
RampIncident investigation workflow80% reduction in investigation time
WizMulti-agent code migration50k lines Python→Go in ~20hrs (was 2–3 months)
RakutenFeature delivery pipeline24 working days → 5 working days
FountainMulti-agent code review50% faster delivery
CREDAgent teams across dev lifecycle2x speed, maintained quality

🗓️ Keeping This Current

Claude Code ships weekly. The ecosystem moves fast.

How to know if something is outdated:

  • Run /help in Claude Code — always shows current command list
  • Check claude --version before using CLI flags
  • MCP server transport syntax changed in 2026 (use --transport http for cloud servers)

Last full audit: April 28, 2026 Next planned update: When Claude Code hits v3.0 or major ecosystem shift


🤝 Contributing

Found a command that works but isn't listed? Know a plugin that deserves Tier 1? Discovered a workflow pattern that ships faster?

Open a PR with:

  • Name and one-line description
  • Working install command or code example
  • "Best for" and honest limitations
  • Source (GitHub repo, official docs, your production experience)

We don't accept "it might be useful" entries. Show it working.


📚 Primary Sources

Everything in this bundle was verified against:

  • Anthropic official documentation (code.claude.com/docs)
  • Claude Code release notes (v2.1+)
  • GitHub repository stars and activity (April 2026)
  • Production reports: Gartner Q1 2026, Anthropic 2026 Agentic Coding Trends
  • Community sources: awesome-claude-code, awesome-claude-plugins, quemsah/awesome-claude-plugins (14,634 repos)
  • Benchmark data: GAIA benchmark, LangGraph production metrics, CrewAI execution data
  • Direct testing and production deployments

License

MIT — use, fork, share, build on top of this freely. Attribution appreciated but not required.


If this saved you time, star the repo.

Built for the Claude ecosystem. Updated by the community. April 2026.

commands.md · mcp-servers.md · plugins.md · tools.md · workflows.md · agent-frameworks.md

常见问题

What is Claude-OS?

Claude-OS is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by rohanmistry231. A concise Claude reference bundle for developers, covering commands, MCP servers, plugins, tools, workflows, and agent frameworks in one place. Designed for fast discovery and practical integration. It has 122 GitHub stars.

Is Claude-OS safe to use?

Yes. Claude-OS passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install Claude-OS?

Clone the repository with "git clone https://github.com/rohanmistry231/Claude-OS" and add it to your Claude Code skills directory (see the Installation section above).

Are there alternatives to Claude-OS?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh Claude-OS against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情