原始内容
My Claude Skills
A collection of custom Claude Code skills following the official Anthropic skills format.
What are Claude Code Skills?
Skills are modular capabilities that extend Claude Code's functionality. Each skill is a self-contained folder with a SKILL.md file containing YAML metadata and instructions that Claude follows when the skill is activated.
📁 Repository Structure
my-claude-skills/
└── round-table-analysis/ # Deep analysis framework using philosophical perspectives
└── SKILL.md
Available Skills
🔄 Round Table Analysis
Purpose: Deep pre-execution analysis framework using four philosophers (Socrates, Aristotle, Feynman, Drucker) for structured critical thinking.
When to use:
- Before implementing complex features
- When you need to thoroughly understand a topic
- To question assumptions and explore multiple perspectives
- For complex decisions requiring deeper analysis
Trigger phrases:
- "help me think through"
- "analyze this topic"
- "before we start"
- "I want to understand"
Location: round-table-analysis/
🚀 How to Add Skills to Claude Code
Prerequisites
You need Claude Code (CLI or Desktop) installed to use these skills.
Installation Methods
Method 1: Add Skills Directory to Claude Code
The easiest way is to add this entire repository as a skills directory:
Clone this repository:
git clone https://github.com/pianzhu/my-claude-skills.gitAdd to Claude Code configuration:
Edit your Claude configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
Add the skills directory path:
{ "skillDirectories": [ "/path/to/my-claude-skills" ] }- macOS:
Restart Claude to load the skills.
Method 2: Copy Individual Skills
You can copy individual skill folders to your local Claude skills directory:
Locate your Claude skills directory (create if it doesn't exist):
- macOS/Linux:
~/.claude/skills/ - Windows:
%USERPROFILE%\.claude\skills\
- macOS/Linux:
Copy the skill folder:
cp -r round-table-analysis ~/.claude/skills/Restart Claude to load the skill.
Using Skills
Once installed, skills are automatically available in Claude Code:
- Automatic activation: Claude will use skills when it detects relevant trigger phrases
- Manual activation: You can explicitly invoke a skill by name
- Skill context: Skills provide additional instructions and capabilities to Claude
📖 Skill Format
Each skill follows this structure:
---
name: skill-name
description: What the skill does and when to use it
---
# Skill Title
[Instructions that Claude follows when skill is active]
## Usage Guidelines
- Guideline 1
- Guideline 2
## Examples
- Example usage patterns
🛠️ Creating Your Own Skills
Want to create a custom skill? Follow these steps:
- Create a new folder with a descriptive name (lowercase, hyphens for spaces)
- Add a
SKILL.mdfile with YAML frontmatter - Define the skill:
name: Unique identifier (lowercase, hyphenated)description: Complete description of functionality and use cases
- Write instructions for Claude to follow
- Test the skill in Claude Code
See the official skills repository for more examples.
📝 Contributing
Contributions are welcome! To add a new skill:
- Fork this repository
- Create a new skill folder following the standard format
- Test your skill thoroughly
- Submit a pull request with:
- The skill folder containing
SKILL.md - Updated README with skill description
- Usage examples (optional)
- The skill folder containing
📄 License
This project is licensed under the Apache License, Version 2.0. See the LICENSE file for details.
Attribution Requirements
When using or redistributing this software:
- Retain copyright notice: Include the original copyright notice in all copies
- State changes: If you modify the software, clearly indicate the changes made
- Include NOTICE: Distribute the NOTICE file with any derivative works
- Credit original author: Bingjian Zhu (https://github.com/pianzhu)
🔗 Resources
Current Skills: 1 | Status: Active Development