Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 23 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ skillport add hello-world

# Or add from GitHub
skillport add https://github.com/anthropics/skills/tree/main/skills

# Or add from GitHub with custom skills directory (Claude Code, Codex)
skillport --skills-dir .claude/skills add https://github.com/anthropics/skills/tree/main/skills
skillport --skills-dir ~/.codex/skills add https://github.com/anthropics/skills/tree/main/skills/frontend-design
```

### 3. Add to Your MCP Client
Expand All @@ -110,17 +114,17 @@ skillport add https://github.com/anthropics/skills/tree/main/skills
**CLI Agents**

```bash
# Claude Code
claude mcp add skillport -- uvx skillport

# With custom skills directory
claude mcp add skillport --env SKILLPORT_SKILLS_DIR=~/.claude/skills -- uvx skillport

# Codex
codex mcp add skillport -- uvx skillport

# With custom skills in the project directory
codex mcp add skillport --env SKILLPORT_SKILLS_DIR=./.agent/skills -- uvx skillport

# Claude Code
claude mcp add skillport -- uvx skillport

# With custom skills directory
claude mcp add skillport --env SKILLPORT_SKILLS_DIR=~/.claude/skills -- uvx skillport
```

**Other MCP Clients** (Windsurf, Cline, Roo Code, Antigravity, etc.)
Expand Down Expand Up @@ -193,6 +197,7 @@ skillport init
# 3. Add skills (uses skills_dir from .skillportrc)
skillport add hello-world
skillport add https://github.com/anthropics/skills/tree/main/skills
skillport add https://github.com/anthropics/skills/tree/main/skills/frontend-design
```

**How it works:** Your agent reads the skills table in AGENTS.md, then runs `skillport show <id>` to load full instructions.
Expand Down Expand Up @@ -258,12 +263,18 @@ skillport add https://github.com/anthropics/skills/tree/main/skills
skillport add https://github.com/wshobson/agents/tree/main/plugins/developer-essentials/skills
```

**Discover more:**
- [Anthropic Official Skills](https://github.com/anthropics/skills/tree/main/skills)
- [Awesome Claude Skills](https://github.com/ComposioHQ/awesome-claude-skills)
- [Claude Scientific Skills](https://github.com/K-Dense-AI/claude-scientific-skills)
- [Kubernetes Operations](https://github.com/wshobson/agents/tree/main/plugins/kubernetes-operations/skills)
- [Notion Skills](https://github.com/gotalab/skillport/tree/main/.agent/skills/notion-skills)
**Discover more:**

| Skills | Features | Target | URL |
|--------|----------|--------|-----|
| Anthropic Official | Document skills (docx, pdf, pptx, xlsx), design, MCP builder | All users | [GitHub](https://github.com/anthropics/skills/tree/main/skills) |
| Awesome Claude Skills | Curated community collection, 2.5k+ stars | Discovery | [GitHub](https://github.com/ComposioHQ/awesome-claude-skills) |
| Hugging Face Skills | Dataset creation, model evaluation, LLM training, paper publishing | ML/AI engineers | [GitHub](https://github.com/huggingface/skills) |
Copy link

Copilot AI Dec 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The "Hugging Face Skills" entry is added but not mentioned in the PR description. Consider updating the PR description to include all new additions (Hugging Face Skills, ClaudeKit Skills, and Superpowers) for better documentation of changes.

Copilot uses AI. Check for mistakes.
| Claude Scientific Skills | 128+ scientific skills (bio, chem, ML), 26+ databases | Researchers | [GitHub](https://github.com/K-Dense-AI/claude-scientific-skills) |
| ClaudeKit Skills | 30+ skills, auth, multimodal, problem-solving frameworks | Full-stack devs | [GitHub](https://github.com/mrgoonie/claudekit-skills) |
| Superpowers | TDD, debugging, parallel agents, code review workflows | Quality-focused devs | [GitHub](https://github.com/obra/superpowers) |
| Kubernetes Operations | K8s deployment, monitoring, troubleshooting | DevOps/SRE | [GitHub](https://github.com/wshobson/agents/tree/main/plugins/kubernetes-operations/skills) |
| Notion Skills | Meeting notes, research docs, knowledge capture | Notion users | [GitHub](https://github.com/gotalab/skillport/tree/main/.agent/skills/notion-skills) |
Copy link

Copilot AI Dec 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description mentions adding "SkillsMP Marketplace" to the table, but this entry is missing from the actual implementation. Consider adding the SkillsMP Marketplace entry or updating the PR description to reflect what was actually added.

Suggested change
| Notion Skills | Meeting notes, research docs, knowledge capture | Notion users | [GitHub](https://github.com/gotalab/skillport/tree/main/.agent/skills/notion-skills) |
| Notion Skills | Meeting notes, research docs, knowledge capture | Notion users | [GitHub](https://github.com/gotalab/skillport/tree/main/.agent/skills/notion-skills) |
| SkillsMP Marketplace | Discover, share, and install agent skills | All users | [GitHub](https://github.com/gotalab/skillport) |

Copilot uses AI. Check for mistakes.

### Organize: Categories & Namespaces

Expand Down