mirror of
https://github.com/borghei/Claude-Skills.git
synced 2026-09-14 19:41:02 +08:00
docs(readme): rebrand as universal AI skills library with multi-platform badges
Update title, badges, footer, and repo structure diagram to reflect universal platform support. Update header.svg, CLAUDE.md, INSTALLATION.md, and marketplace.json with platform-neutral messaging.
This commit is contained in:
@@ -4,11 +4,11 @@
|
||||
"name": "borghei",
|
||||
"url": "https://borghei.me"
|
||||
},
|
||||
"description": "Production-ready skill packages for Claude AI - 93 expert skills across marketing, engineering, product, C-level advisory, project management, regulatory compliance, business growth, finance, data analytics, HR operations, and sales success",
|
||||
"description": "Production-ready AI skill packages for every coding assistant - 97 expert skills across marketing, engineering, product, C-level advisory, project management, regulatory compliance, business growth, finance, data analytics, HR operations, and sales success",
|
||||
"homepage": "https://github.com/borghei/Claude-Skills",
|
||||
"repository": "https://github.com/borghei/Claude-Skills",
|
||||
"metadata": {
|
||||
"description": "93 production-ready skill packages across 11 domains: marketing, engineering, product, C-level advisory, project management, regulatory compliance, business growth, finance, data analytics, HR operations, and sales success",
|
||||
"description": "97 production-ready AI skill packages for every coding assistant across 13 domains: marketing, engineering, product, C-level advisory, project management, regulatory compliance, business growth, finance, data analytics, HR operations, and sales success",
|
||||
"version": "2.0.0"
|
||||
},
|
||||
"plugins": [
|
||||
|
||||
@@ -4,11 +4,11 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
|
||||
|
||||
## Project Purpose
|
||||
|
||||
This is a **comprehensive skills library** for Claude AI - reusable, production-ready skill packages that bundle domain expertise, best practices, analysis tools, and strategic frameworks. The repository provides modular skills that teams can download and use directly in their workflows.
|
||||
This is the **universal AI skills library** — reusable, production-ready skill packages that bundle domain expertise, best practices, analysis tools, and strategic frameworks. Works with every major AI coding assistant: Claude Code, Cursor, Copilot, Codex, Windsurf, Cline, Aider, Goose, and more.
|
||||
|
||||
**Current Scope:** 97+ production-ready skills across 13 domains with 170+ Python automation tools, 6 Claude Code subagents, and 11 CI/CD workflows.
|
||||
|
||||
**Key Distinction**: This is NOT a traditional application. It's a library of skill packages meant to be extracted and deployed by users into their own Claude workflows.
|
||||
**Key Distinction**: This is NOT a traditional application. It's a library of skill packages meant to be extracted and deployed by users into their AI coding workflows.
|
||||
|
||||
## Navigation Map
|
||||
|
||||
@@ -42,7 +42,9 @@ claude-code-skills/
|
||||
├── .claude/
|
||||
│ ├── agents/ # 6 Claude Code subagents (code-reviewer, qa, docs, etc.)
|
||||
│ └── commands/ # Slash commands (git:cm, git:cp, git:pr, review, security-scan)
|
||||
├── .github/workflows/ # 11 CI/CD workflows (quality, docs, QA, changelog, release)
|
||||
├── .github/
|
||||
│ ├── copilot-instructions.md # GitHub Copilot config
|
||||
│ └── workflows/ # 11 CI/CD workflows (quality, docs, QA, changelog, release)
|
||||
├── agents/ # cs-* prefixed skill agents
|
||||
├── engineering-team/ # 25 engineering skills + Python tools
|
||||
├── engineering/ # 12 POWERFUL-tier architecture skills
|
||||
@@ -58,7 +60,12 @@ claude-code-skills/
|
||||
├── finance/ # 1 finance skill + Python tools
|
||||
├── standards/ # 5 standards library files
|
||||
├── templates/ # Reusable templates
|
||||
└── documentation/ # Implementation plans, sprints, delivery
|
||||
├── documentation/ # Implementation plans, sprints, delivery
|
||||
├── AGENTS.md # Universal agent config (Codex, Aider, Jules, etc.)
|
||||
├── .cursorrules # Cursor AI config
|
||||
├── .windsurfrules # Windsurf config
|
||||
├── .clinerules # Cline config
|
||||
└── .goosehints # Goose config
|
||||
```
|
||||
|
||||
### Skill Package Pattern
|
||||
@@ -185,7 +192,7 @@ See [standards/git/git-workflow-standards.md](standards/git/git-workflow-standar
|
||||
|
||||
## Additional Resources
|
||||
|
||||
- **.gitignore:** Excludes .vscode/, .DS_Store, AGENTS.md, PROMPTS.md, .env*
|
||||
- **.gitignore:** Excludes .vscode/, .DS_Store, .env*, __pycache__/, node_modules/
|
||||
- **Standards Library:** [standards/](standards/) - Communication, quality, git, documentation, security
|
||||
- **Implementation Plans:** [documentation/implementation/](documentation/implementation/)
|
||||
- **Sprint Delivery:** [documentation/delivery/](documentation/delivery/)
|
||||
|
||||
+32
-3
@@ -1,6 +1,6 @@
|
||||
# Installation Guide - Claude Skills Library
|
||||
# Installation Guide - AI Skills Library
|
||||
|
||||
Complete installation guide for all 97 production-ready skills across 13 domains, 178 Python tools, 6 subagents, and 12 GitHub workflows.
|
||||
Complete installation guide for all 97 production-ready skills across 13 domains, 178 Python tools, 6 subagents, and 12 GitHub workflows. Works with Claude Code, Cursor, Copilot, Codex, Windsurf, Cline, Aider, Goose, and more.
|
||||
|
||||
## Table of Contents
|
||||
|
||||
@@ -47,7 +47,36 @@ cd claude-skills
|
||||
|
||||
Skills install to `~/.codex/skills/`. See [OpenAI Codex Installation](#openai-codex-installation) for detailed instructions.
|
||||
|
||||
### For All Other Agents (Cursor, VS Code, Goose, etc.)
|
||||
### For Windsurf Users
|
||||
|
||||
```bash
|
||||
git clone https://github.com/borghei/Claude-Skills.git
|
||||
cd Claude-Skills
|
||||
python scripts/skill-installer.py install senior-fullstack --agent windsurf
|
||||
```
|
||||
|
||||
Windsurf auto-detects the `.windsurfrules` config file from the project root.
|
||||
|
||||
### For Cline Users
|
||||
|
||||
```bash
|
||||
git clone https://github.com/borghei/Claude-Skills.git
|
||||
cd Claude-Skills
|
||||
python scripts/skill-installer.py install senior-fullstack --agent cline
|
||||
```
|
||||
|
||||
Cline auto-detects the `.clinerules` config file from the project root.
|
||||
|
||||
### For Aider Users
|
||||
|
||||
```bash
|
||||
git clone https://github.com/borghei/Claude-Skills.git
|
||||
cd Claude-Skills
|
||||
# Aider reads AGENTS.md automatically
|
||||
python scripts/skill-installer.py list
|
||||
```
|
||||
|
||||
### For All Other Agents (Goose, Jules, RooCode, etc.)
|
||||
|
||||
```bash
|
||||
npx agent-skills-cli add borghei/Claude-Skills
|
||||
|
||||
@@ -1,18 +1,38 @@
|
||||
<p align="center">
|
||||
<img src="assets/header.svg" alt="Claude Skills Library" width="100%"/>
|
||||
<img src="assets/header.svg" alt="AI Skills Library" width="100%"/>
|
||||
</p>
|
||||
|
||||
# Claude Skills Library
|
||||
# AI Skills Library
|
||||
|
||||
**Production-ready skill packages for Claude AI & Claude Code** — 97 expert-level skills with 178 Python automation tools, 6 Claude Code subagents, and 12 CI/CD workflows across 13 professional domains.
|
||||
**The universal AI skills library for every coding assistant** — 97 expert-level skills with 178 Python automation tools, 6 subagents, and 12 CI/CD workflows across 13 professional domains.
|
||||
|
||||
[](LICENSE)
|
||||
[](https://claude.ai)
|
||||
[](https://claude.ai/code)
|
||||
[](https://github.com/borghei/Claude-Skills)
|
||||
[](#-skills-library)
|
||||
[](https://claude.ai/code)
|
||||
[](https://cursor.com)
|
||||
[](https://github.com/features/copilot)
|
||||
[](https://openai.com/codex)
|
||||
[](https://codeium.com/windsurf)
|
||||
[](https://github.com/cline/cline)
|
||||
[](https://aider.chat)
|
||||
[](#skills-library-97-skills)
|
||||
[](#python-automation-tools-178)
|
||||
[](#claude-code-subagents)
|
||||
|
||||
## Supported Platforms
|
||||
|
||||
Works out of the box with every major AI coding assistant:
|
||||
|
||||
| Platform | Config File | Status |
|
||||
|----------|------------|--------|
|
||||
| **Claude Code** | `CLAUDE.md` | Primary |
|
||||
| **OpenAI Codex** | `AGENTS.md` | Full |
|
||||
| **Cursor** | `.cursorrules` | Full |
|
||||
| **GitHub Copilot** | `.github/copilot-instructions.md` | Full |
|
||||
| **Windsurf** | `.windsurfrules` | Full |
|
||||
| **Cline** | `.clinerules` | Full |
|
||||
| **Goose** | `.goosehints` | Full |
|
||||
| **Aider** | `AGENTS.md` | Full |
|
||||
| **Jules** | `AGENTS.md` | Full |
|
||||
| **RooCode / Kilo Code** | `AGENTS.md` | Full |
|
||||
|
||||
---
|
||||
|
||||
@@ -764,6 +784,7 @@ Claude-Skills/
|
||||
├── .claude-plugin/ # Plugin marketplace config
|
||||
├── .codex/ # OpenAI Codex compatibility (97 skill symlinks)
|
||||
├── .github/ # 12 CI/CD workflows, templates, automation
|
||||
│ ├── copilot-instructions.md # GitHub Copilot config
|
||||
│ └── workflows/ # Quality gates, release drafting, auto-update
|
||||
├── agents/ # 5 production agents
|
||||
├── business-growth/ # 3 skills + 9 Python tools
|
||||
@@ -781,14 +802,19 @@ Claude-Skills/
|
||||
├── scripts/ # Skill installer + utility scripts
|
||||
├── standards/ # Best practices library
|
||||
├── templates/ # Reusable templates
|
||||
├── CLAUDE.md # Development guide
|
||||
├── AGENTS.md # Universal agent config (Codex, Aider, Jules, etc.)
|
||||
├── CLAUDE.md # Claude Code development guide
|
||||
├── CHANGELOG.md # Version history
|
||||
├── CODE_OF_CONDUCT.md # Community guidelines
|
||||
├── CONTRIBUTING.md # Contribution guidelines
|
||||
├── INSTALLATION.md # Comprehensive installation guide
|
||||
├── LICENSE # MIT License
|
||||
├── README.md # This file
|
||||
└── SECURITY.md # Security policy
|
||||
├── SECURITY.md # Security policy
|
||||
├── .clinerules # Cline config
|
||||
├── .cursorrules # Cursor config
|
||||
├── .goosehints # Goose config
|
||||
└── .windsurfrules # Windsurf config
|
||||
```
|
||||
|
||||
---
|
||||
@@ -812,8 +838,8 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for detailed guidelines.
|
||||
---
|
||||
|
||||
<p align="center">
|
||||
<strong>97 production-ready skills. 178 Python tools. 6 subagents. 12 workflows. 13 domains.</strong><br>
|
||||
Built for the Claude community.
|
||||
<strong>The universal AI skills library. 97 skills. 178 Python tools. 12 workflows. 13 domains.</strong><br>
|
||||
Works with Claude, Cursor, Copilot, Codex, Windsurf, Cline, Aider, Goose & more.
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
|
||||
+3
-3
@@ -19,11 +19,11 @@
|
||||
<text x="1000" y="480" font-family="monospace" font-weight="bold" font-size="280" fill="#ffffff" opacity="0.03"></></text>
|
||||
|
||||
<text x="120" y="240" font-family="system-ui, -apple-system, sans-serif" font-weight="800" font-size="76" fill="#F0F0F0" letter-spacing="-1">
|
||||
Claude Skills Library
|
||||
AI Skills Library
|
||||
</text>
|
||||
|
||||
<text x="120" y="325" font-family="system-ui, -apple-system, sans-serif" font-weight="600" font-size="34" fill="url(#accentGradient)">
|
||||
Expert-Level AI Skills — Transform Claude into a
|
||||
Expert-Level AI Skills — Transform any AI assistant into a
|
||||
</text>
|
||||
<text x="120" y="375" font-family="system-ui, -apple-system, sans-serif" font-weight="600" font-size="34" fill="url(#accentGradient)">
|
||||
world-class specialist for any professional domain.
|
||||
@@ -33,7 +33,7 @@
|
||||
Each skill contains production-ready frameworks, templates, code
|
||||
</text>
|
||||
<text x="120" y="500" font-family="system-ui, -apple-system, sans-serif" font-size="24" fill="#A0A4A8" font-weight="400">
|
||||
examples, and domain expertise that makes Claude perform like
|
||||
examples, and domain expertise that makes your AI assistant perform like
|
||||
</text>
|
||||
<text x="120" y="540" font-family="system-ui, -apple-system, sans-serif" font-size="24" fill="#A0A4A8" font-weight="400">
|
||||
a senior professional with 10+ years of experience.
|
||||
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
Reference in New Issue
Block a user