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
Copy file name to clipboardExpand all lines: README.md
+39-24Lines changed: 39 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,49 +22,64 @@ If you want to keep up with changes to these skills, and any new ones I create,
22
22
23
23
[Sign Up To The Newsletter](https://www.aihero.dev/s/skills-newsletter)
24
24
25
-
## Quickstart (30-second setup)
25
+
## Installation (30-second setup)
26
26
27
-
1. Run the skills.sh installer:
27
+
Two ways in, two philosophies. **The [Claude Code plugin](https://code.claude.com/docs/en/plugins)** installs the whole set as a managed, read-only bundle that updates when I ship — you subscribe rather than fork. **[skills.sh](https://skills.sh/mattpocock/skills)** copies editable skill files into your project, so you can hack on them and make them your own. Pick one — installing both leaves you with every skill twice.
28
+
29
+
### 1. Get the skills
30
+
31
+
<details>
32
+
<summary><strong>Claude Code</strong></summary>
28
33
29
34
```bash
30
-
npx skills@latest add mattpocock/skills
35
+
claude plugins install mattpocock-skills
31
36
```
32
37
33
-
2. Pick the skills you want, and which coding agents you want to install them on. **Make sure you select `/setup-matt-pocock-skills`**.
34
-
35
-
3. Run `/setup-matt-pocock-skills` in your agent. It will:
36
-
- Ask you which issue tracker you want to use (GitHub, Linear, or local files)
37
-
- Ask you what labels you apply to tickets when you triage them (`/triage` uses labels)
38
-
- Ask you where you want to save any docs we create
38
+
Or, from inside a session:
39
39
40
-
4. Bam - you're ready to go.
40
+
```
41
+
/plugin install mattpocock-skills
42
+
```
41
43
42
-
## Install as a Claude Code plugin
44
+
It's in Claude Code's official marketplace, so there's nothing to add first, and updates arrive automatically.
43
45
44
-
Prefer a plug-and-play install you don't maintain by hand? These skills also ship as a native [Claude Code plugin](https://code.claude.com/docs/en/plugins). Instead of copying editable files into your repo, the plugin installs the whole skill set as a managed bundle that updates when I ship a new version — you subscribe rather than fork.
46
+
</details>
45
47
46
-
Inside Claude Code:
48
+
<details>
49
+
<summary><strong>Codex, and other agents</strong></summary>
47
50
51
+
```bash
52
+
npx skills@latest add mattpocock/skills
48
53
```
49
-
/plugin marketplace add mattpocock/skills
50
-
/plugin install mattpocock-skills@mattpocock
51
-
```
52
54
53
-
Or from your shell:
55
+
Pick the skills you want, and which coding agents to install them on. **The installer lets you choose which skills to take — make sure `setup-matt-pocock-skills` is one of them.**
56
+
57
+
A native Codex plugin is on the roadmap — see [`.agents/adr/0002-ship-as-a-claude-code-plugin.md`](./.agents/adr/0002-ship-as-a-claude-code-plugin.md).
58
+
59
+
</details>
60
+
61
+
<details>
62
+
<summary><strong>For tinkerers</strong></summary>
63
+
64
+
Use the same installer, on any agent — including Claude Code:
54
65
55
66
```bash
56
-
claude plugin marketplace add mattpocock/skills
57
-
claude plugin install mattpocock-skills@mattpocock
67
+
npx skills@latest add mattpocock/skills
58
68
```
59
69
60
-
Then run `/setup-matt-pocock-skills` once per repo, exactly as in the quickstart above.
70
+
It writes the skills into your repo as ordinary files you own and can edit. Nothing updates behind your back; pull my latest changes when you want them with `npx skills update`.
71
+
72
+
</details>
73
+
74
+
### 2. Run `/setup-matt-pocock-skills`
61
75
62
-
Two ways to install, two philosophies:
76
+
In your agent, run it once per repo. It will:
63
77
64
-
-**[skills.sh](https://skills.sh/mattpocock/skills)** copies the skills into your project so you can hack on them and make them your own.
65
-
-**The plugin** keeps them as a read-only, always-current bundle you don't edit — best when you just want my set to work and follow along as it evolves.
78
+
- Ask you which issue tracker you want to use (GitHub, Linear, or local files)
79
+
- Ask you what labels you apply to tickets when you triage them (`/triage` uses labels)
80
+
- Ask you where you want to save any docs we create
66
81
67
-
> Using Codex or another agent? The [skills.sh installer](https://skills.sh/mattpocock/skills) already installs these skills into Codex and other Agent-Skills-standard harnesses today. A native Codex plugin is on the roadmap — see [`.agents/adr/0002-ship-as-a-claude-code-plugin.md`](./.agents/adr/0002-ship-as-a-claude-code-plugin.md).
0 commit comments