You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Browse filesBrowse the repository at this point in the historyBrowse files
authored and
Kasper Junge
committed
docs: expand skill directory with all 18 official skills and descriptions for users who want to discover available skills
The skill directory previously listed only 4 of 18 official Anthropic skills
and had no descriptions. Users couldn't evaluate which skills to install
without clicking through to each GitHub repo.
Changes:
- Add all 18 official Anthropic skills organized by category (Documents,
Design, Development, Productivity)
- Add descriptions for every skill (sourced from SKILL.md frontmatter)
- Fix broken handles: kasperjunge/commit → kasperjunge/commit-work,
kasperjunge/pr removed (doesn't exist),
dsjacobsen/golang-pro → dsjacobsen/agent-resources/golang-pro
- Fix kasperjunge/migrate-to-skills → kasperjunge/agent-resources/migrate-to-skills
- Add descriptions to all community skills
- Update llms-full.txt to match
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Browse the full list at [github.com/anthropics/skills](https://github.com/anthropics/skills).
29
58
@@ -35,42 +64,41 @@ Skills built and shared by the community.
35
64
36
65
### Go
37
66
38
-
| Skill | Author | Install command|
39
-
|-------|--------|----------------|
40
-
| Go Pro |[@dsjacobsen](https://github.com/dsjacobsen)|`agr add dsjacobsen/golang-pro`|
67
+
| Skill |Description |Author | Install |
68
+
|-------|-------------|--------|---------|
69
+
| Go Pro |Expert Go 1.21+ development for concurrent, scalable systems |[@dsjacobsen](https://github.com/dsjacobsen)|`agr add dsjacobsen/agent-resources/golang-pro`|
| DDEV Expert |DDEV local development, containers, and configuration |[@madsnorgaard](https://github.com/madsnorgaard)|`agr add madsnorgaard/drupal-agent-resources/ddev-expert`|
79
+
| Docker Local |Docker Compose local development patterns |[@madsnorgaard](https://github.com/madsnorgaard)|`agr add madsnorgaard/drupal-agent-resources/docker-local`|
| Migrate to Skills |[@kasperjunge](https://github.com/kasperjunge)|`agr add kasperjunge/migrate-to-skills`|
83
+
| Skill | Description | Author | Install |
84
+
|-------|-------------|--------|---------|
85
+
| Collaboration | Contributing to GitHub projects, PRs, and code reviews |[@maragudk](https://github.com/maragudk)|`agr add maragudk/skills/collaboration`|
86
+
| Commit Work | Run quality checks, update changelog, and create commits |[@kasperjunge](https://github.com/kasperjunge)|`agr add kasperjunge/commit-work`|
87
+
| Migrate to Skills | Convert legacy agent resources to the Agent Skills format |[@kasperjunge](https://github.com/kasperjunge)|`agr add kasperjunge/agent-resources/migrate-to-skills`|
60
88
61
89
---
62
90
63
91
## Discovering More Skills
64
92
65
-
### Browse GitHub
93
+
### Search GitHub
66
94
67
-
Any GitHub repository with a `SKILL.md` file can be installed with agr. Search GitHub for repositories containing skill files:
95
+
Any GitHub repository with a `SKILL.md` file can be installed with agr:
68
96
69
97
-[Search for SKILL.md files on GitHub](https://github.com/search?q=filename%3ASKILL.md&type=code)
70
98
71
99
### List skills in a repository
72
100
73
-
Use the Python SDK to list all skills in a repo:
101
+
Use the Python SDK to list all skills in any repo:
74
102
75
103
```python
76
104
from agr import list_skills
@@ -79,13 +107,16 @@ for info in list_skills("anthropics/skills"):
79
107
print(f"{info.handle}: {info.description}")
80
108
```
81
109
110
+
Or check a repo manually — agr looks for any directory containing a `SKILL.md`
111
+
file.
112
+
82
113
### Try before you install
83
114
84
115
Use `agrx` to run any skill without adding it to your project:
85
116
86
117
```bash
87
-
agrx user/skill-name
88
-
agrx user/skill-name -i # Interactive: continue chatting after the skill runs
118
+
agrx anthropics/skills/webapp-testing
119
+
agrx anthropics/skills/pdf -i # Interactive: continue chatting after the skill runs
0 commit comments