Skip to content

Commit ab2fd63

Browse files
committed
feat: add Agents & Commands section and fix marketplace config
- Add "Agents & Commands" section to README with 6 agents and 6 commands - Rename marketplace from "agent-skills" (reserved) to "skills-collection" - Update install commands to use correct marketplace name
1 parent 7e9ef47 commit ab2fd63

2 files changed

Lines changed: 53 additions & 11 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
2-
"name": "agent-skills",
2+
"name": "skills-collection",
33
"owner": {
44
"name": "softaworks",
55
"url": "https://github.com/softaworks"
66
},
7-
"description": "Collection of skills for AI coding agents following the Agent Skills format",
8-
"version": "1.0.14",
9-
"pluginRoot": ".",
7+
"metadata": {
8+
"description": "Skills, agents, and commands for AI coding agents",
9+
"version": "1.0.14"
10+
},
1011
"plugins": [
1112
{
1213
"name": "agent-skills",
@@ -18,14 +19,16 @@
1819
"url": "https://github.com/leonardocouy"
1920
},
2021
"license": "MIT",
22+
"repository": "https://github.com/softaworks/agent-skills",
2123
"keywords": [
2224
"agent",
2325
"skills",
2426
"claude",
2527
"ai",
26-
"coding"
28+
"coding",
29+
"automation"
2730
],
28-
"category": "development"
31+
"category": "productivity"
2932
}
3033
]
3134
}

README.md

Lines changed: 44 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Skills follow the [Agent Skills](https://agentskills.io/) format.
88

99
## 🧭 Quick Navigation
1010

11-
**[📚 Available Skills](#-available-skills)****[🚀 Installation](#-installation)****[📖 Skill Structure](#-skill-structure)****[🤝 Contributing](#-contributing)****[📄 License](#-license)****[🔗 Links](#-links)**
11+
**[📚 Available Skills](#-available-skills)****[🤖 Agents & Commands](#-agents--commands)****[🚀 Installation](#-installation)****[📖 Skill Structure](#-skill-structure)****[🤝 Contributing](#-contributing)****[📄 License](#-license)****[🔗 Links](#-links)**
1212

1313
---
1414

@@ -57,6 +57,44 @@ Skills follow the [Agent Skills](https://agentskills.io/) format.
5757

5858
---
5959

60+
## 🤖 Agents & Commands
61+
62+
> **Requires [Claude Code CLI](https://docs.anthropic.com/claude-code)** — These agents and commands are exclusive to Claude Code users.
63+
>
64+
> For full access, add the marketplace and install the plugin:
65+
> ```bash
66+
> /plugin marketplace add softaworks/agent-skills
67+
> /plugin install agent-skills@skills-collection
68+
> ```
69+
70+
### Agents
71+
72+
Specialized sub-agents that Claude Code can delegate tasks to:
73+
74+
| Agent | Description |
75+
|-------|-------------|
76+
| ascii-ui-mockup-generator | Visualize UI concepts through ASCII mockups |
77+
| codebase-pattern-finder | Find similar implementations and patterns |
78+
| communication-excellence-coach | Email refinement, tone calibration, roleplay |
79+
| general-purpose | Default agent for complex multi-step tasks |
80+
| mermaid-diagram-specialist | Create flowcharts, sequence diagrams, ERDs |
81+
| ui-ux-designer | Research-backed UI/UX design feedback |
82+
83+
### Slash Commands
84+
85+
Reusable workflows invoked with `/command-name`:
86+
87+
| Command | Description |
88+
|---------|-------------|
89+
| `/codex-plan` | Create implementation plans using Codex 5.2 |
90+
| `/compose-email` | Draft professional emails |
91+
| `/explain-changes-mental-model` | Build mental model of code changes |
92+
| `/explain-pr-changes` | Generate PR summaries |
93+
| `/sync-branch` | Sync feature branch with main |
94+
| `/sync-skills-readme` | Update README skills table |
95+
96+
---
97+
6098
## 🚀 Installation
6199
62100
### Recommended: Universal Installation (Works with all AI agents)
@@ -73,17 +111,18 @@ This method works with multiple AI coding agents:
73111

74112
### Alternative Methods
75113

76-
**For Claude Code (Plugin)**
114+
**For Claude Code (Plugin)** — Recommended for full access to agents & commands
77115
```bash
78-
/plugin install agent-skills@softaworks
116+
/plugin marketplace add softaworks/agent-skills
117+
/plugin install agent-skills@skills-collection
79118
```
80119

81-
**For Claude Code (Manual)**
120+
**For Claude Code (Manual)** — Skills only
82121
```bash
83122
cp -r skills/<skill-name> ~/.claude/skills/
84123
```
85124

86-
**For claude.ai**
125+
**For claude.ai** — Skills only
87126

88127
Add skills to project knowledge or paste SKILL.md contents into the conversation.
89128

0 commit comments

Comments
 (0)