Co-Pilot / 辅助式
更新于 a month ago

my-claude-code-settings

Bbahayonghang
0.0k
bahayonghang/my-claude-code-settings
82
Agent 评分

💡 摘要

一个统一的框架,用于管理和安装跨多个平台的AI技能。

🎯 适合人群

寻找模块化技能的AI开发者需要简化工作流程的项目经理需要AI辅助文档的研究人员寻求设计工具的前端开发者需要LaTeX支持的学者

🤖 AI 吐槽:看起来很能打,但别让配置把人劝退。

安全分析中风险

风险:Medium。建议检查:是否执行 shell/命令行指令;是否发起外网请求(SSRF/数据外发);文件读写范围与路径穿越风险。以最小权限运行,并在生产环境启用前审计代码与依赖。

MyClaude Skills

License: MIT

A curated collection of Claude Code skills, prompts, and workflows for enhanced AI-assisted development. This project provides a unified framework for managing and installing AI skills across multiple platforms including Claude Code, Codex, Gemini, Qwen, Google Antigravity, and Windsurf.

Features

  • 🎯 Modular Skills: Reusable AI skill modules covering frontend design, research, documentation, academic writing, and more.
  • 📦 Unified Format: Standardized SKILL.md definition for easy extension and maintenance.
  • 🔄 Cross-Platform: Single Python installation script (install.py) that works everywhere (Windows, Linux, macOS).
  • 🎛️ Multi-Target Support:
    • Claude Code (~/.claude/)
    • Codex CLI (~/.codex/)
    • Gemini CLI (~/.gemini/)
    • Qwen Code (~/.qwen/)
    • Google Antigravity (~/.gemini/antigravity/)
    • Windsurf (~/.codeium/windsurf/)
    • Trae (~/.trae/)
  • Slash Commands: Quick access to common workflows like git commit, export-summary, and more.
  • 🖥️ TUI Management: Interactive Terminal User Interface for easy skill browsing and installation.
  • 🧩 External Skills: Support for installing skills from npm, pip, and git repositories.

Quick Start

# Clone the repository git clone https://github.com/anthropics/my-claude-skills.git cd my-claude-skills # Run the interactive TUI (Recommended) python3 install_tui.py

Or use the command line:

# Install all skills to Claude (default) python3 install.py install-all # Update global prompt configuration python3 install.py prompt-update

Skills

Skills are specialized capabilities that can be added to your AI assistant. They are categorized by domain.

🎨 Design

| Skill | Description | |-------|-------------| | article-cover | Generate professional SVG cover images for blog posts and articles | | drawio | AI-powered Draw.io diagram generation with real-time browser preview | | excalidraw | Create hand-drawn style diagrams as Excalidraw JSON files | | frontend-design | Build distinctive, production-grade frontend interfaces | | gemini-image | AI image generation via Gemini API (text-to-image, image-to-image) | | ui-ux-pro-max | Advanced UI/UX design intelligence (External Skill) |

💻 Development

| Skill | Description | |-------|-------------| | codex | Codex CLI integration for deep code analysis and web search | | paper-replication | Replicate deep learning papers into industrial-grade PyTorch code | | paper-check | Code review and validation assistant | | claude-expert-skill-creator | Create production-ready skills from expert knowledge | | mcp-to-skill | Convert MCP servers to Claude Code Skills | | skill-manager | Search and install 31,767+ community skills | | skill-seekers | Generate LLM skills from documentation and codebases | | explore | Fast code search agent for locating code and tracing dependencies | | agent-browser | Browser automation skill from Vercel Labs (External Skill) | | gemini | Gemini integration for enhanced reasoning |

🔍 Research

| Skill | Description | |-------|-------------| | research | Technical research with web search and citation support | | librarian | Documentation researcher for external docs and best practices | | multimodal-looker | Visual analyst for images, PDFs, charts, and diagrams |

📝 Documentation

| Skill | Description | |-------|-------------| | tech-blog | Write technical blog posts with source code analysis | | tech-design-doc | Generate structured technical design documents | | spec-interview | Systematic interview to refine technical specs with OpenSpec integration | | document-writer | Technical writer for README, API docs, and architecture docs |

🎓 Academic

| Skill | Description | |-------|-------------| | IEEE-writing-skills | Translate, polish, and validate academic papers for IEEE publications | | latex-paper-en | LaTeX academic paper assistant for English conference/journal papers | | latex-thesis-zh | Chinese doctoral/master thesis LaTeX assistant with GB/T 7714 support | | typst-paper | Typst academic paper assistant with modular workflow | | git-commit-cn | Chinese version of git commit message generator |

🤖 OMO Agents (Multi-Agent System)

| Skill | Description | |-------|-------------| | omo-agents | Multi-agent orchestration system overview | | sisyphus | Main orchestrator for complex task planning and execution | | oracle | Expert architect for design decisions and code review |

🛠️ Utilities

| Skill | Description | |-------|-------------| | yt-dlp | Video downloader for YouTube, Bilibili, and 1000+ sites |

Commands

Slash commands provide quick access to common workflows. Available for Claude, Gemini, Antigravity, and Windsurf.

Core Commands

| Command | Description | |---------|-------------| | export-summary | Summarize session context and export to a markdown file | | import-summary | Restore session context from a summary file |

Git Utilities (ZCF)

| Command | Description | |---------|-------------| | git-commit | Analyze changes and generate Conventional Commits messages | | git-cleanBranches | Safely find and clean merged or stale Git branches | | git-rollback | Interactive rollback of Git branches to historical revisions | | git-worktree | Manage Git worktrees with smart defaults | | init-project | Initialize project AI context with CLAUDE.md index generation |

Planning (Gemini)

| Command | Description | |---------|-------------| | plan/impl | Implementation planning workflow | | plan/new | New feature planning workflow |

Installation Guide

Basic Installation

# Install all skills to Claude (default) python3 install.py install-all # Install to specific platform python3 install.py --target gemini install-all python3 install.py --target codex install-all python3 install.py --target antigravity install-all python3 install.py --target windsurf install-all

Project-Level Installation

Install skills to a specific project directory instead of globally:

# Install to a project directory python3 install.py install frontend-engineer --project ./my-web-app # Install to a Kiro project (.kiro/skills/ structure) python3 install.py install skill-name --project ./my-kiro-project --kiro

TUI Mode (Recommended)

For a user-friendly experience, use the Terminal User Interface:

python3 install_tui.py

TUI Features:

  • 🎯 Visual platform selection
  • 📁 Project path input for local installation
  • 🔍 Real-time search and filtering
  • ✅ Multi-select batch installation
  • ⌨️ Keyboard shortcuts (/ to search, Space to select, i to install)

Project Structure

.
├── install.py              # Unified Python installer
├── install_tui.py          # Terminal User Interface
├── prompts/                # Global prompts (CLAUDE.md)
├── commands/               # Slash commands
│   ├── claude/             # Claude-specific commands
│   ├── gemini/             # Gemini-specific commands
│   ├── antigravity/        # Antigravity workflows
│   ├── windsurf/           # Windsurf workflows
│   └── trae/               # Trae workflows
├── skills/                 # Local skills directory
│   └── <skill-name>/       # Individual skill modules
└── external-skills/        # External skill configurations
    └── registry.toml       # Registry for npm/pip/git skills

Contributing

  1. Create a new directory under skills/.
  2. Create SKILL.md with the skill definition.
  3. (Optional) Add scripts/, config/, or references/.
  4. Run ./install.py install <your-skill> to test.

License

MIT

五维分析
清晰度8/10
创新性7/10
实用性9/10
完整性9/10
可维护性8/10
优缺点分析

优点

  • 适用于各个领域的模块化技能
  • 跨平台安装支持
  • 用户友好的TUI,便于导航

缺点

  • 复杂性可能让新用户感到不知所措
  • 依赖管理可能具有挑战性
  • 某些技能的文档有限

相关技能

pytorch

S
toolCode Lib / 代码库
92/ 100

“它是深度学习的瑞士军刀,但祝你好运能从47种安装方法里找到那个不会搞崩你系统的那一个。”

agno

S
toolCode Lib / 代码库
90/ 100

“它承诺成为智能体领域的Kubernetes,但得看开发者有没有耐心学习又一个编排层。”

nuxt-skills

S
toolCo-Pilot / 辅助式
90/ 100

“这本质上是一份组织良好的小抄,能把你的 AI 助手变成一只 Nuxt 框架的复读机。”

免责声明:本内容来源于 GitHub 开源项目,仅供展示和评分分析使用。

版权归原作者所有 bahayonghang.