Refactor README: deduplicate lists, add top picks, improve structure
This commit is contained in:
parent
63eceeee2e
commit
2802a24e8a
2 changed files with 32 additions and 10 deletions
21
.github/workflows/lint.yml
vendored
Normal file
21
.github/workflows/lint.yml
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
name: Lint
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
markdown-lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Use Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '18'
|
||||
- name: Install markdownlint-cli
|
||||
run: npm install -g markdownlint-cli
|
||||
- name: Run markdownlint
|
||||
run: markdownlint '**/*.md' --ignore node_modules --disable MD013 MD033 MD041
|
||||
21
README.md
21
README.md
|
|
@ -55,14 +55,20 @@ This architecture delivers:
|
|||
|
||||
### 📚 Skills Collections & Repositories
|
||||
|
||||
**Multi-skill repositories** with diverse capabilities:
|
||||
**Multi-skill repositories** with diverse capabilities.
|
||||
> ℹ️ *Resources are sorted by popularity (GitHub stars) where applicable.*
|
||||
|
||||
#### 🔥 Top Picks
|
||||
|
||||
- <a href="https://github.com/anthropics/skills" target="_blank" rel="noopener noreferrer">🏢 Official collection from Anthropic (document editing, data analysis, etc.)</a>
|
||||
- <a href="https://github.com/GuDaStudio/skills" target="_blank" rel="noopener noreferrer">🤝 Multi-agent collaboration skills</a>
|
||||
- <a href="https://github.com/karanb192/awesome-claude-skills" target="_blank" rel="noopener noreferrer">⭐ 50+ verified skills for Claude Code and Claude.ai</a>
|
||||
- <a href="https://github.com/shajith003/awesome-claude-skills" target="_blank" rel="noopener noreferrer">🎯 Skills for specialized capabilities</a>
|
||||
|
||||
#### 📂 More Collections
|
||||
|
||||
- <a href="https://github.com/GuDaStudio/skills" target="_blank" rel="noopener noreferrer">🤝 Multi-agent collaboration skills</a>
|
||||
- <a href="https://github.com/DougTrajano/pydantic-ai-skills" target="_blank" rel="noopener noreferrer">🐍 Pydantic AI integration</a>
|
||||
- <a href="https://github.com/OmidZamani/dspy-skills" target="_blank" rel="noopener noreferrer">🔮 Skills for DSPy framework</a>
|
||||
- <a href="https://github.com/shajith003/awesome-claude-skills" target="_blank" rel="noopener noreferrer">🎯 Skills for specialized capabilities</a>
|
||||
- <a href="https://github.com/ponderous-dustiness314/awesome-claude-skills" target="_blank" rel="noopener noreferrer">📊 Document editing, data analysis, and project management</a>
|
||||
- <a href="https://github.com/hikanner/agent-skills" target="_blank" rel="noopener noreferrer">🗂️ Curated Claude Agent Skills collection</a>
|
||||
- <a href="https://github.com/gradion-ai/freeact-skills" target="_blank" rel="noopener noreferrer">🎬 Freeact agent library skills</a>
|
||||
|
|
@ -71,6 +77,8 @@ This architecture delivers:
|
|||
|
||||
### 🎯 Individual Skills by Category
|
||||
|
||||
**Specialized capabilities for specific domains.**
|
||||
|
||||
#### 💻 Development & Programming
|
||||
|
||||
- <a href="https://github.com/kylehughes/the-unofficial-swift-concurrency-migration-skill" target="_blank" rel="noopener noreferrer">Swift Concurrency Migration guide</a>
|
||||
|
|
@ -104,10 +112,6 @@ This architecture delivers:
|
|||
**The ecosystem is here.** Industry-leading platforms have already integrated Agent Skills - your next agent build starts with choosing the right foundation.
|
||||
|
||||
### 🎨 IDEs & Code Editors
|
||||
- [Cursor](https://cursor.com/) - ⚡ AI-powered code editor with native skills integration ([docs](https://cursor.com/docs/context/skills))
|
||||
- [Claude Code](https://claude.ai/code) - 🤖 Anthropic's coding tool with first-class skills support
|
||||
- [OpenAI Codex](https://developers.openai.com/codex/skills/) - 💻 OpenAI's CLI agent with Agent Skills support
|
||||
|
||||
- [Cursor](https://cursor.com/) - ⚡ AI-powered code editor with native skills integration ([docs](https://cursor.com/docs/context/skills))
|
||||
- [Claude Code](https://claude.ai/code) - 🤖 Anthropic's coding tool with first-class skills support
|
||||
- [OpenAI Codex](https://developers.openai.com/codex/skills/) - 💻 OpenAI's CLI agent with Agent Skills support
|
||||
|
|
@ -115,9 +119,6 @@ This architecture delivers:
|
|||
- [Amp](https://ampcode.com/) - 🚀 Next-gen AI coding assistant
|
||||
|
||||
### 🤖 AI Agent Platforms
|
||||
- [GitHub Copilot](https://github.com/features/copilot) - 💙 GitHub's AI coding assistant with Agent Skills support ([docs](https://docs.github.com/copilot/concepts/agents/about-agent-skills), [announcement](https://github.blog/changelog/2025-12-18-github-copilot-now-supports-agent-skills/))
|
||||
- [VS Code](https://code.visualstudio.com/) - 💻 Microsoft's editor with Agent Skills in Insiders build
|
||||
|
||||
- [GitHub Copilot](https://github.com/features/copilot) - 💙 GitHub's AI coding assistant with Agent Skills support ([docs](https://docs.github.com/copilot/concepts/agents/about-agent-skills), [announcement](https://github.blog/changelog/2025-12-18-github-copilot-now-supports-agent-skills/))
|
||||
- [VS Code](https://code.visualstudio.com/) - 💻 Microsoft's editor with Agent Skills in Insiders build
|
||||
- [Goose](https://block.github.io/goose/) - 🦆 Open source AI agent framework
|
||||
|
|
|
|||
Loading…
Reference in a new issue