@linchpinagency/skills 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,6 +5,25 @@ A shared library of **AI agent skills** for the kinds of projects Linchpin build
|
|
|
5
5
|
instruction sets ([Agent Skills](https://agentskills.io) format) that work in Claude Code,
|
|
6
6
|
GitHub Copilot, and other compatible coding agents.
|
|
7
7
|
|
|
8
|
+
[](https://www.npmjs.com/package/@linchpinagency/skills)
|
|
9
|
+

|
|
10
|
+

|
|
11
|
+

|
|
12
|
+

|
|
13
|
+
|
|
14
|
+
<!-- x-release-please-start-version -->
|
|
15
|
+
### Latest release: 0.1.3
|
|
16
|
+
<!-- x-release-please-end -->
|
|
17
|
+
|
|
18
|
+
| Release | Skill standard | Install |
|
|
19
|
+
| --- | --- | --- |
|
|
20
|
+
| [](https://github.com/linchpin/skills/actions/workflows/release-please.yml) | [](https://github.com/linchpin/skills/actions/workflows/validate-skills.yml) | `npx @linchpinagency/skills --global` |
|
|
21
|
+
|
|
22
|
+
**Releases are automated.** Merge conventional commits to `main` → release-please maintains a
|
|
23
|
+
rolling **:gem: Automated Release** PR → merging it tags, writes `CHANGELOG.md`, and publishes
|
|
24
|
+
to npm via Trusted Publishing. Every PR runs the skill validator and a commit-convention
|
|
25
|
+
check. Details: [How releases work](#how-releases-work).
|
|
26
|
+
|
|
8
27
|
---
|
|
9
28
|
|
|
10
29
|
## Getting started
|
|
@@ -64,7 +83,7 @@ The fastest way to understand the library is to run one loop end to end:
|
|
|
64
83
|
| Test a site like a user, and fix what's found | "QA the checkout flow" | `web-qa` |
|
|
65
84
|
| Check it's ready to commit | "is this ready to commit?" | `quality-gates` |
|
|
66
85
|
| Commit and open the PR properly | "commit this and open a PR" | `commit-and-release` + `task-tracking` |
|
|
67
|
-
| Handle a client support ticket | "
|
|
86
|
+
| Handle a client support ticket | "the client says their contact form isn't sending" | `support-triage` |
|
|
68
87
|
| Add guardrails before touching prod | "careful mode — I'm on production" | `safety-hooks` |
|
|
69
88
|
|
|
70
89
|
The full list is in [Available skills](#available-skills) — 20 of them, each with a
|
|
@@ -324,3 +343,11 @@ in `package.json`).
|
|
|
324
343
|
WordPress expertise our overlay builds on. (Upstream is v1 and AI-authored then
|
|
325
344
|
human-reviewed — treat it as a strong baseline, which is exactly why house rules win on
|
|
326
345
|
conflict.)
|
|
346
|
+
|
|
347
|
+
## Status
|
|
348
|
+
|
|
349
|
+
**Actively maintained** by [Linchpin](https://linchpin.com). Bugs and feature requests:
|
|
350
|
+
open a GitHub issue. Internally, work is tracked in ClickUp — see
|
|
351
|
+
[`task-tracking`](skills/task-tracking/SKILL.md).
|
|
352
|
+
|
|
353
|
+
[](https://linchpin.com)
|