ordinary-claude-skills

作者 Microck已验证

An unappealing collection of Claude Skills and resources.

379
Stars
52
Forks
Python
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

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

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/Microck/ordinary-claude-skills

快速入门

使用 ordinary-claude-skills 等 Skills 的指南。

安全报告

已验证

上次扫描:—

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

README.md

i drew this with my left hand. as you can deduce, im indeed right-handed

a massive local repository of official and community-built claude skills, organized by category.

docs license maintenance claude


quickstart

there are two ways to consume this library.

1. the civilized way (search & browse)

go to the static site. i have indexed everything with search and categories. it is much easier than digging through folders.

2. the developer way (raw files)

clone the repo to map these skills into your own mcp servers or agents.

  1. clone the repo

    git clone https://github.com/Microck/ordinary-claude-skills.git
    cd ordinary-claude-skills
    
  2. choose your weapon

    • for claude.ai: go to your profile, hit custom skills, and upload the specific folder for the skill you want.
    • for api/devs: point your mcp client or system prompt config to the relevant skill directory.
  3. verify ask claude can you use the [skill name] skill now? if it says yes, you are gucci.

table of contents

overview

skills are basically fancy prompt packages and scripts that teach claude how to do specific things without you having to explain the context every single time. they load lazily (only when needed), which saves context window space and keeps claude from getting confused by instructions it doesn't need yet.

this repo aggregates hundreds of skills from anthropic, composiohq, k-dense-ai, and random internet geniuses.

features

  • non-curated selection: i dumped everything in here. if it doesnt work i probably havent noticed. just let me know and i may or may not fix it.
  • categorized: everything is sorted so you don't have to doomscroll to find the python tools.
  • standardized: i tried to keep the folder structures somewhat consistent.
  • local first: designed to be cloned locally so you aren't dependent on a third party url staying up forever.

skill catalog

i used to list all 600+ skills here, but it made the readme scroll for eternity.

view the full inventory on the documentation site →

categories include:

  • science & academia (protein folding, astronomy, lab automation)
  • software engineering (api design, debugging, testing)
  • infrastructure (kubernetes, docker, terraform)
  • data & ai (vector dbs, llm evaluation, rag)
  • business (marketing, finance, legal)
  • creative (writing, art, philosophy)
  • web3 (solidity, smart contracts, defi)
page

configuration

getting this to work depends on your environment. here is the recommended way to set things up if you are using mcp or a local client.

file structure

ordinary-claude-skills/
├── docs/                  # the static website files
├── skills_all/    		   # everything
├── skills_categorized/    # everything in its right place
│   ├── backend/
│   │   └── api-design-principles/
│   └── web3-tools/
│       └── solidity-security/
└── README.md

config.json example

if you are using a tool that requires a config file to point to skills, it usually looks something like this.

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/ordinary-claude-skills/skills_all"
      ]
    }
  }
}

or map only the category or specific skill you need.

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/ordinary-claude-skills/skills_categorized/[category]"
      ]
    }
  }
}

how-to examples

here is how you actually talk to claude once the skills are loaded.

scenario 1: debugging a react app

load the debugging-strategies and frontend-design skills.

you:

i have a react component that is not rendering the list items correctly. please use the systematic debugging skill to analyze the code i paste next, and then use the frontend design skill to propose a fix.

claude:

acknowledged. i will apply the systematic debugging protocol. please paste the code.

scenario 2: analyzing a competitor

load the competitive-ads-extractor skill.

you:

here is a url to a landing page. run the ads extractor and tell me what their primary value proposition is.

claude:

running extraction...

scenario 3: pdf extracting

load the pdf skill.

you:

a client just sent me a scanned image of a spreadsheet pasted into a word doc and then exported as a pdf. i am losing my will to live. please use the pdf skill to extract the text so i don't walk the plank.

claude:

extracting text now. please drink some water while i handle this crime against data structures.

scenario 4: deploy roulette

load the webapp-testing skill.

you:

i am about to push to prod on a friday afternoon. run the webapp testing skill on localhost:3000 and tell me if i am going to get fired.

claude:

starting playwright tests. i suggest you keep your resume updated just in case the login modal is broken again.

troubleshooting

sometimes computers are hard.

  • claude refuses to use the skill: make sure you explicitly told claude the skill exists in the system prompt or that the file was successfully attached to the project context. usually it just doesn't know it's there.

  • "file too large" error: some of these skills have massive dependency folders. ignore the node_modules inside skill folders. you only need the source scripts and the instructions.

  • skills contradicting each other: don't load creative-writing and technical-documentation at the same time. claude will get confused about whether it should be shakespeare or a robot.

dependencies

technically none for the repo itself, but individual skills have requirements.

  • mandatory: an active internet connection and a claude account (or api key).
  • optional:
    • python 3.x (for data analysis skills)
    • node.js (for mcp builder and testing skills)
    • playwright (if you want to do browser automation)

license & credits

i did not write most of these. i just collected them.

  • anthropic skills: mit license (mostly)
  • community skills: check the LICENSE file in each specific folder.

credits go to anthropic, composiohq, k-dense-ai, and the other legends listed in the source tables. if you own one of these and want me to take it down, just open an issue and i will nuke it.

常见问题

What is ordinary-claude-skills?

ordinary-claude-skills is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by Microck. An unappealing collection of Claude Skills and resources. It has 379 GitHub stars.

Is ordinary-claude-skills safe to use?

Yes. ordinary-claude-skills 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 ordinary-claude-skills?

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

What programming language is ordinary-claude-skills written in?

ordinary-claude-skills is primarily written in Python. It is open-source under Microck on GitHub, so you can review or fork the full source.

Are there alternatives to ordinary-claude-skills?

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 ordinary-claude-skills 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
查看详情