@aholbreich/agent-skills 0.3.0 → 0.4.0
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/CHANGELOG.md +2 -0
- package/COMPATIBILITY.md +65 -45
- package/README.md +56 -24
- package/bin/agent-skills.js +6 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,8 @@ Added:
|
|
|
7
7
|
- `jira-browser-fetch --backlog URL|BOARD_ID` to fetch all issues from a Jira Software board backlog through the authenticated browser session.
|
|
8
8
|
- Backlog manifests at `raw/jira-board-<board-id>-backlog.json` and a `backlogs` section in `raw/jira-browser-fetch-run.json`.
|
|
9
9
|
- Documentation examples for natural-language user requests that should invoke the skills.
|
|
10
|
+
- Recommended `npx skills add aholbreich/agent-skills -g` cross-agent install path, plus collision/update guidance for Pi and project-local overrides.
|
|
11
|
+
- CI/package dry-run scripts that use `npm pack --dry-run` for compatibility with older local pnpm launchers.
|
|
10
12
|
|
|
11
13
|
## 0.1.0 - 2026-05-06
|
|
12
14
|
|
package/COMPATIBILITY.md
CHANGED
|
@@ -4,96 +4,111 @@ This package is designed as a pure [Agent Skills](https://agentskills.io/) packa
|
|
|
4
4
|
|
|
5
5
|
Each bundled skill is a directory containing `SKILL.md` plus scripts and references. The frontmatter follows the Agent Skills conventions: required `name` and `description`, directory name matching the skill name, lowercase hyphenated names, and optional `license`/`compatibility` metadata.
|
|
6
6
|
|
|
7
|
-
##
|
|
8
|
-
|
|
9
|
-
| Tool / Harness | Status | Install method |
|
|
10
|
-
|---|---:|---|
|
|
11
|
-
| Pi | Supported and tested | `pi install npm:@aholbreich/agent-skills` or `npx @aholbreich/agent-skills --target pi` |
|
|
12
|
-
| Claude Code | Compatible Agent Skills layout | `npx @aholbreich/agent-skills --target claude` or copy `skills/*` into Claude's skills directory |
|
|
13
|
-
| OpenAI Codex | Compatible Agent Skills layout | `npx @aholbreich/agent-skills --target codex` or copy `skills/*` into Codex's skills directory |
|
|
14
|
-
| OpenClaw / generic Agent Skills harnesses | Compatible Agent Skills layout | `npx @aholbreich/agent-skills --target agents` or copy `skills/*` into `.agents/skills` / configured skills directory |
|
|
15
|
-
| Any Agent Skills-compatible tool | Compatible layout | Copy each folder under `skills/` into the tool's configured skills directory |
|
|
7
|
+
## Recommended installer
|
|
16
8
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
### Generic Agent Skills default
|
|
9
|
+
For cross-agent installation, prefer the open Skills CLI:
|
|
20
10
|
|
|
21
11
|
```bash
|
|
22
|
-
npx
|
|
12
|
+
npx skills add aholbreich/agent-skills -g
|
|
23
13
|
```
|
|
24
14
|
|
|
25
|
-
|
|
15
|
+
The Skills CLI discovers `skills/*/SKILL.md`, supports many agent clients, and symlinks agent-specific installs to a managed source by default. Use `--copy` only when symlinks are not supported.
|
|
16
|
+
|
|
17
|
+
Useful variants:
|
|
26
18
|
|
|
27
19
|
```bash
|
|
28
|
-
npx
|
|
20
|
+
npx skills add aholbreich/agent-skills --list
|
|
21
|
+
npx skills add aholbreich/agent-skills # project-local/team install
|
|
22
|
+
npx skills add aholbreich/agent-skills -g -y # non-interactive global install
|
|
23
|
+
npx skills update -g # update global skills installed by the Skills CLI
|
|
24
|
+
npx skills list -g # list global skills
|
|
29
25
|
```
|
|
30
26
|
|
|
31
|
-
|
|
27
|
+
## Compatibility matrix
|
|
32
28
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
29
|
+
| Tool / Harness | Status | Recommended install method |
|
|
30
|
+
|---|---:|---|
|
|
31
|
+
| Pi | Supported and tested | `pi install npm:@aholbreich/agent-skills` for Pi-managed package updates, or `npx skills add aholbreich/agent-skills -g` for cross-agent installs |
|
|
32
|
+
| Claude Code | Compatible Agent Skills layout | `npx skills add aholbreich/agent-skills -g --agent claude-code` |
|
|
33
|
+
| OpenAI Codex | Compatible Agent Skills layout | `npx skills add aholbreich/agent-skills -g --agent codex` |
|
|
34
|
+
| OpenClaw / generic Agent Skills harnesses | Compatible Agent Skills layout | `npx skills add aholbreich/agent-skills -g` or install to `.agents/skills` |
|
|
35
|
+
| Any Agent Skills-compatible tool | Compatible layout | Copy or symlink each folder under `skills/` into the tool's configured skills directory |
|
|
36
|
+
|
|
37
|
+
## Pi-native install commands
|
|
36
38
|
|
|
37
|
-
|
|
39
|
+
Pi can install this repository as a Pi package directly from npm:
|
|
38
40
|
|
|
39
41
|
```bash
|
|
40
|
-
|
|
42
|
+
pi install npm:@aholbreich/agent-skills
|
|
41
43
|
```
|
|
42
44
|
|
|
43
|
-
|
|
45
|
+
Project-local Pi package install:
|
|
44
46
|
|
|
45
47
|
```bash
|
|
46
48
|
pi install -l npm:@aholbreich/agent-skills
|
|
47
49
|
```
|
|
48
50
|
|
|
49
|
-
|
|
51
|
+
Temporary Pi run without installing:
|
|
50
52
|
|
|
51
53
|
```bash
|
|
52
|
-
|
|
54
|
+
pi -e npm:@aholbreich/agent-skills
|
|
53
55
|
```
|
|
54
56
|
|
|
55
|
-
|
|
57
|
+
## Package fallback installer
|
|
58
|
+
|
|
59
|
+
The npm package also ships a small dependency-free installer for environments where the Skills CLI is not available:
|
|
56
60
|
|
|
57
61
|
```bash
|
|
58
|
-
npx @aholbreich/agent-skills
|
|
62
|
+
npx @aholbreich/agent-skills
|
|
59
63
|
```
|
|
60
64
|
|
|
61
|
-
|
|
65
|
+
This installs to `~/.agents/skills` and is equivalent to:
|
|
62
66
|
|
|
63
67
|
```bash
|
|
64
|
-
npx @aholbreich/agent-skills --target
|
|
68
|
+
npx @aholbreich/agent-skills --target agents
|
|
65
69
|
```
|
|
66
70
|
|
|
67
|
-
|
|
71
|
+
Other targets:
|
|
68
72
|
|
|
69
73
|
```bash
|
|
74
|
+
npx @aholbreich/agent-skills --target pi
|
|
75
|
+
npx @aholbreich/agent-skills --target claude
|
|
70
76
|
npx @aholbreich/agent-skills --target codex
|
|
77
|
+
npx @aholbreich/agent-skills --target project
|
|
78
|
+
npx @aholbreich/agent-skills --target project-agents
|
|
79
|
+
npx @aholbreich/agent-skills install --dir /path/to/skills
|
|
71
80
|
```
|
|
72
81
|
|
|
73
|
-
|
|
82
|
+
This fallback copies files. For symlinked, multi-agent installs, prefer `npx skills add aholbreich/agent-skills`.
|
|
74
83
|
|
|
75
|
-
|
|
76
|
-
npx @aholbreich/agent-skills --target project-codex
|
|
77
|
-
```
|
|
84
|
+
## Collision behavior
|
|
78
85
|
|
|
79
|
-
|
|
86
|
+
Agent Skills are identified by their `name` frontmatter. If the same skill name exists in more than one discovered location, agents apply their own precedence rules.
|
|
80
87
|
|
|
81
|
-
|
|
82
|
-
npx @aholbreich/agent-skills --target agents
|
|
83
|
-
```
|
|
88
|
+
Common precedence pattern:
|
|
84
89
|
|
|
85
|
-
Project-local
|
|
90
|
+
1. Project-local skills override user/global skills.
|
|
91
|
+
2. User/global skills override bundled/system skills.
|
|
92
|
+
3. Duplicate names are not merged.
|
|
86
93
|
|
|
87
|
-
|
|
88
|
-
|
|
94
|
+
Pi example:
|
|
95
|
+
|
|
96
|
+
```text
|
|
97
|
+
.pi/skills/jira-browser-fetch/SKILL.md
|
|
89
98
|
```
|
|
90
99
|
|
|
91
|
-
|
|
100
|
+
shadows:
|
|
92
101
|
|
|
93
|
-
```
|
|
94
|
-
|
|
102
|
+
```text
|
|
103
|
+
~/.nvm/.../@aholbreich/agent-skills/skills/jira-browser-fetch/SKILL.md
|
|
95
104
|
```
|
|
96
105
|
|
|
106
|
+
That is useful for intentional repo-specific overrides, but it also means package updates may not affect the active skill in that repository. If you see a collision warning, choose one source of truth:
|
|
107
|
+
|
|
108
|
+
- Keep the project-local skill if the repository intentionally customizes it.
|
|
109
|
+
- Remove the project-local copy if you want the package/global install to be active.
|
|
110
|
+
- Re-run the installer/update command for the install method that owns the active copy.
|
|
111
|
+
|
|
97
112
|
## Discoverability
|
|
98
113
|
|
|
99
114
|
The package is tagged for discovery with npm keywords including:
|
|
@@ -106,7 +121,11 @@ The package is tagged for discovery with npm keywords including:
|
|
|
106
121
|
- `claude-code`
|
|
107
122
|
- `codex`
|
|
108
123
|
|
|
109
|
-
|
|
124
|
+
The repository is also compatible with the Skills CLI GitHub shorthand:
|
|
125
|
+
|
|
126
|
+
```bash
|
|
127
|
+
npx skills add aholbreich/agent-skills --list
|
|
128
|
+
```
|
|
110
129
|
|
|
111
130
|
If a registry requires manual submission, use:
|
|
112
131
|
|
|
@@ -114,6 +133,7 @@ If a registry requires manual submission, use:
|
|
|
114
133
|
Package: @aholbreich/agent-skills
|
|
115
134
|
Repository: https://github.com/aholbreich/agent-skills
|
|
116
135
|
Skills directory: skills/
|
|
136
|
+
Install command: npx skills add aholbreich/agent-skills -g
|
|
117
137
|
```
|
|
118
138
|
|
|
119
139
|
## Compliance checks in this repo
|
|
@@ -129,6 +149,6 @@ That includes:
|
|
|
129
149
|
- JavaScript syntax checks.
|
|
130
150
|
- Unit tests.
|
|
131
151
|
- Skill frontmatter compliance checks.
|
|
132
|
-
- `
|
|
152
|
+
- `npm pack --dry-run` package content check.
|
|
133
153
|
|
|
134
154
|
The compliance tests are intentionally local and dependency-free; they validate the parts of the Agent Skills structure that matter for broad tool compatibility.
|
package/README.md
CHANGED
|
@@ -15,18 +15,16 @@ This repository is a pure skills package. It currently contains browser-authenti
|
|
|
15
15
|
|
|
16
16
|
This repository follows the Agent Skills directory convention: each skill lives under `skills/<skill-name>/SKILL.md` with matching frontmatter.
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
Recommended install paths:
|
|
19
19
|
|
|
20
|
-
|
|
|
20
|
+
| Use case | Command |
|
|
21
21
|
|---|---|
|
|
22
|
-
|
|
|
23
|
-
| Pi
|
|
24
|
-
|
|
|
25
|
-
|
|
|
26
|
-
| OpenClaw / generic `.agents/skills` | `npx @aholbreich/agent-skills --target agents` |
|
|
27
|
-
| Project-local generic skills | `npx @aholbreich/agent-skills --target project-agents` |
|
|
22
|
+
| Cross-agent wizard (recommended) | `npx skills add aholbreich/agent-skills -g` |
|
|
23
|
+
| Pi package-managed install | `pi install npm:@aholbreich/agent-skills` |
|
|
24
|
+
| Project-local/team skills | `npx skills add aholbreich/agent-skills` |
|
|
25
|
+
| Package fallback without the aggregator | `npx @aholbreich/agent-skills` |
|
|
28
26
|
|
|
29
|
-
See [`COMPATIBILITY.md`](COMPATIBILITY.md) for details.
|
|
27
|
+
See [`COMPATIBILITY.md`](COMPATIBILITY.md) for details, including collision behavior.
|
|
30
28
|
|
|
31
29
|
## Requirements
|
|
32
30
|
|
|
@@ -37,52 +35,74 @@ See [`COMPATIBILITY.md`](COMPATIBILITY.md) for details.
|
|
|
37
35
|
|
|
38
36
|
No npm runtime dependencies are required.
|
|
39
37
|
|
|
40
|
-
##
|
|
38
|
+
## Recommended install with the Skills CLI
|
|
41
39
|
|
|
42
|
-
|
|
40
|
+
For most users, use the open `skills` installer. It discovers the skills in this repository, prompts for compatible agents, and symlinks agent-specific installs to a single managed source by default.
|
|
41
|
+
|
|
42
|
+
Global/user install:
|
|
43
43
|
|
|
44
44
|
```bash
|
|
45
|
-
|
|
45
|
+
npx skills add aholbreich/agent-skills -g
|
|
46
46
|
```
|
|
47
47
|
|
|
48
48
|
Project-local install, useful for teams:
|
|
49
49
|
|
|
50
50
|
```bash
|
|
51
|
-
|
|
51
|
+
npx skills add aholbreich/agent-skills
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
-
|
|
54
|
+
List available skills without installing:
|
|
55
55
|
|
|
56
56
|
```bash
|
|
57
|
-
|
|
57
|
+
npx skills add aholbreich/agent-skills --list
|
|
58
58
|
```
|
|
59
59
|
|
|
60
|
-
|
|
60
|
+
Non-interactive examples:
|
|
61
61
|
|
|
62
|
-
|
|
62
|
+
```bash
|
|
63
|
+
npx skills add aholbreich/agent-skills -g --skill '*' -y
|
|
64
|
+
npx skills add aholbreich/agent-skills -g --agent claude-code --agent codex --skill jira-browser-fetch -y
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Use `--copy` only when symlinks are not supported in your environment.
|
|
68
|
+
|
|
69
|
+
## Pi-native install
|
|
70
|
+
|
|
71
|
+
If you only use Pi and want Pi to manage package updates, install the npm package directly:
|
|
63
72
|
|
|
64
73
|
```bash
|
|
65
|
-
|
|
74
|
+
pi install npm:@aholbreich/agent-skills
|
|
66
75
|
```
|
|
67
76
|
|
|
68
|
-
|
|
77
|
+
Project-local Pi package install, useful for teams that already standardize on Pi packages:
|
|
69
78
|
|
|
70
79
|
```bash
|
|
71
|
-
|
|
80
|
+
pi install -l npm:@aholbreich/agent-skills
|
|
72
81
|
```
|
|
73
82
|
|
|
74
|
-
|
|
83
|
+
Try without installing:
|
|
75
84
|
|
|
76
85
|
```bash
|
|
77
|
-
|
|
86
|
+
pi -e npm:@aholbreich/agent-skills
|
|
78
87
|
```
|
|
79
88
|
|
|
80
|
-
|
|
89
|
+
## Package fallback with npx
|
|
90
|
+
|
|
91
|
+
If you cannot use the `skills` aggregator, this package also ships a small installer. It copies bundled skills into a selected skills directory.
|
|
92
|
+
|
|
93
|
+
Install bundled skills into the generic Agent Skills directory `~/.agents/skills`:
|
|
81
94
|
|
|
82
95
|
```bash
|
|
96
|
+
npx @aholbreich/agent-skills
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
Install for a specific target:
|
|
100
|
+
|
|
101
|
+
```bash
|
|
102
|
+
npx @aholbreich/agent-skills install --target agents
|
|
83
103
|
npx @aholbreich/agent-skills install --target claude
|
|
84
104
|
npx @aholbreich/agent-skills install --target codex
|
|
85
|
-
npx @aholbreich/agent-skills install --target
|
|
105
|
+
npx @aholbreich/agent-skills install --target project
|
|
86
106
|
```
|
|
87
107
|
|
|
88
108
|
Overwrite existing installed skill directories:
|
|
@@ -97,6 +117,18 @@ List bundled skills:
|
|
|
97
117
|
npx @aholbreich/agent-skills list
|
|
98
118
|
```
|
|
99
119
|
|
|
120
|
+
## Collision and update notes
|
|
121
|
+
|
|
122
|
+
Avoid installing the same skill into multiple locations for the same agent unless you intentionally want one copy to shadow another. Most agents give project-local skills priority over user/global skills.
|
|
123
|
+
|
|
124
|
+
For example, in Pi a project skill at `.pi/skills/jira-browser-fetch/SKILL.md` shadows the same skill installed from `npm:@aholbreich/agent-skills`. In that case `pi update` updates the package, but the active project-local copy remains unchanged.
|
|
125
|
+
|
|
126
|
+
Recommended rule of thumb:
|
|
127
|
+
|
|
128
|
+
- Cross-agent users: prefer `npx skills add aholbreich/agent-skills -g`.
|
|
129
|
+
- Pi-only users: prefer `pi install npm:@aholbreich/agent-skills`.
|
|
130
|
+
- Team/repo-specific overrides: commit project-local skills intentionally and update them intentionally.
|
|
131
|
+
|
|
100
132
|
## Manual install
|
|
101
133
|
|
|
102
134
|
```bash
|
package/bin/agent-skills.js
CHANGED
|
@@ -27,6 +27,11 @@ function usage() {
|
|
|
27
27
|
|
|
28
28
|
Install this package's Agent Skills into a local skills directory.
|
|
29
29
|
|
|
30
|
+
Recommended cross-agent installer:
|
|
31
|
+
npx skills add aholbreich/agent-skills -g
|
|
32
|
+
|
|
33
|
+
This fallback installer copies files for environments where the Skills CLI is unavailable.
|
|
34
|
+
|
|
30
35
|
Commands:
|
|
31
36
|
install Install skills (default command)
|
|
32
37
|
list List bundled skills
|
|
@@ -40,6 +45,7 @@ Options for install:
|
|
|
40
45
|
--dry-run Show what would be copied without writing
|
|
41
46
|
|
|
42
47
|
Examples:
|
|
48
|
+
npx skills add aholbreich/agent-skills -g
|
|
43
49
|
npx @aholbreich/agent-skills
|
|
44
50
|
npx @aholbreich/agent-skills install --target agents --force
|
|
45
51
|
npx @aholbreich/agent-skills install --target pi --force
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aholbreich/agent-skills",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Handcrafted Agent Skills for browser-authenticated Jira and Confluence ingestion, LLM wiki workflows, and developer automation.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -42,10 +42,10 @@
|
|
|
42
42
|
"scripts": {
|
|
43
43
|
"check": "node --check bin/agent-skills.js && node --check skills/jira-browser-fetch/scripts/jira-browser-fetch.js && node --check skills/jira-browser-fetch/scripts/lib.js && node --check skills/confluence-browser-fetch/scripts/confluence-browser-fetch.js && node --check skills/confluence-browser-fetch/scripts/lib.js",
|
|
44
44
|
"test": "node --test",
|
|
45
|
-
"ci": "
|
|
46
|
-
"pack:dry": "
|
|
47
|
-
"prepack": "
|
|
48
|
-
"prepublishOnly": "
|
|
45
|
+
"ci": "npm run check && npm test && npm pack --dry-run",
|
|
46
|
+
"pack:dry": "npm pack --dry-run",
|
|
47
|
+
"prepack": "npm run check",
|
|
48
|
+
"prepublishOnly": "npm run check && npm test"
|
|
49
49
|
},
|
|
50
50
|
"pi": {
|
|
51
51
|
"skills": [
|