@olegkoval/agent-skills 1.5.0 → 1.5.1

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "olko-agent-skills",
3
3
  "description": "Agent-agnostic skill catalog for Codex, Claude, Cursor, and other skill-aware tools.",
4
- "version": "1.4.0",
4
+ "version": "1.5.0",
5
5
  "author": {
6
6
  "name": "Oleg Koval"
7
7
  },
package/README.md CHANGED
@@ -53,14 +53,7 @@ Use the olko:semantic-release-beta skill to add prereleases on a beta branch.
53
53
 
54
54
  The repository includes a generated Claude marketplace manifest at `.claude-plugin/marketplace.json`.
55
55
 
56
- For local development, clone the repo and point Claude Code at the plugin directory:
57
-
58
- ```bash
59
- git clone https://github.com/oleg-koval/agent-skills.git
60
- claude --plugin-dir /path/to/agent-skills
61
- ```
62
-
63
- If your Claude Code environment supports GitHub marketplace installs for this repo, add the marketplace source first:
56
+ **For marketplace installs:**
64
57
 
65
58
  ```text
66
59
  /plugin marketplace add oleg-koval/agent-skills
@@ -72,7 +65,16 @@ Then install the catalog plugin:
72
65
  /plugin install olko-agent-skills@olko-agent-skills
73
66
  ```
74
67
 
75
- Live Claude marketplace install is not yet validated for this repo.
68
+ **For local development:**
69
+
70
+ Clone the repo and point Claude Code at the plugin directory:
71
+
72
+ ```bash
73
+ git clone https://github.com/oleg-koval/agent-skills.git
74
+ claude --plugin-dir /path/to/agent-skills
75
+ ```
76
+
77
+ See [Publishing to Marketplaces](#publishing-to-marketplaces) below for full submission details.
76
78
 
77
79
  </details>
78
80
 
@@ -81,7 +83,15 @@ Live Claude marketplace install is not yet validated for this repo.
81
83
 
82
84
  The repository includes a generated Cursor plugin index at `.cursor-plugin/index.json` and per-package Cursor adapters under `packages/*/*/adapters/cursor/`.
83
85
 
84
- For a single project, copy the relevant `SKILL.md` or adapter content into `.cursor/rules/`, or reference the full package directory from your Cursor rules.
86
+ **For plugin marketplace:**
87
+
88
+ Install from Cursor's extension marketplace using the published repository.
89
+
90
+ **For a single project:**
91
+
92
+ Copy the relevant `SKILL.md` or adapter content into `.cursor/rules/`, or reference the full package directory from your Cursor rules.
93
+
94
+ See [Publishing to Marketplaces](#publishing-to-marketplaces) for registry submission.
85
95
 
86
96
  </details>
87
97
 
@@ -95,7 +105,15 @@ Use the generated repository instructions and prompt files:
95
105
  .github/prompts/*.prompt.md
96
106
  ```
97
107
 
98
- These files are generated from `catalog/skills.json` and can be copied into a repository that should use the same skill guidance.
108
+ **To use in your GitHub workspace:**
109
+
110
+ Copy `.github/copilot-instructions.md` to your repository and enable Copilot. It will automatically apply skill guidance.
111
+
112
+ **To customize per-skill:**
113
+
114
+ Use files from `.github/prompts/*.prompt.md` in your Copilot configuration.
115
+
116
+ See [Publishing to Marketplaces](#publishing-to-marketplaces) for integration details.
99
117
 
100
118
  </details>
101
119
 
@@ -269,38 +287,119 @@ Use the olko:docs-index-keeper skill to set up docs index automation in this rep
269
287
  Use the olko:semantic-release-beta skill to add prereleases on a beta branch.
270
288
  ```
271
289
 
272
- ### Claude
290
+ Status: **Stable** — ready for daily use
273
291
 
274
- The repository includes a generated root manifest at `.claude-plugin/marketplace.json` and per-package Claude adapter stubs under `packages/*/*/adapters/claude/`.
292
+ ### Claude Code
275
293
 
276
- Current status:
294
+ The repository includes a generated marketplace manifest at `.claude-plugin/marketplace.json` and per-package Claude adapter stubs under `packages/*/*/adapters/claude/`.
277
295
 
278
- - suitable for local packaging and iteration
279
- - not yet validated against a live Claude marketplace install flow
296
+ **Local development:**
297
+
298
+ ```bash
299
+ git clone https://github.com/oleg-koval/agent-skills.git
300
+ claude --plugin-dir /path/to/agent-skills
301
+ ```
302
+
303
+ **Marketplace installation:**
304
+
305
+ See [Publishing to Marketplaces → Claude Marketplace](#claude-marketplace) for submission and user installation instructions.
306
+
307
+ Status: **Ready for marketplace** — fully generated manifests, ready to publish
280
308
 
281
309
  ### Cursor
282
310
 
283
- The repository includes a generated root plugin index at `.cursor-plugin/index.json` and per-package Cursor adapter stubs under `packages/*/*/adapters/cursor/`.
311
+ The repository includes a generated plugin index at `.cursor-plugin/index.json` and per-package Cursor adapter stubs under `packages/*/*/adapters/cursor/`.
284
312
 
285
- Current status:
313
+ See [Publishing to Marketplaces → Cursor Plugin Registry](#cursor-plugin-registry) for submission instructions.
286
314
 
287
- - suitable for local packaging and iteration
288
- - not yet validated against a live Cursor plugin install flow
315
+ Status: **Ready for marketplace** plugin index generated and ready to submit
289
316
 
290
317
  ### GitHub Copilot
291
318
 
292
- The repository includes generated Copilot repository instructions at `.github/copilot-instructions.md` and one reusable prompt file per skill under `.github/prompts/`.
319
+ The repository includes generated repository instructions at `.github/copilot-instructions.md` and per-skill prompt files under `.github/prompts/`.
320
+
321
+ To use in your GitHub workspace, copy `.github/copilot-instructions.md` to your repository.
293
322
 
294
- Current status:
323
+ See [Publishing to Marketplaces → GitHub Copilot](#github-copilot) for integration details.
295
324
 
296
- - suitable for repository-level Copilot customization
297
- - generated from the canonical package catalog
298
- - not yet validated against GitHub Copilot in a live GitHub workspace
325
+ Status: **Ready to use** copy instructions to any GitHub repository
299
326
 
300
327
  ### Source sync
301
328
 
302
329
  `./scripts/sync-from-sources.sh` syncs package content only for catalog entries that explicitly define `sourcePath`. If no package has `sourcePath`, the script exits successfully and reports that there is nothing to sync.
303
330
 
331
+ ## Publishing to Marketplaces
332
+
333
+ ### Claude Marketplace
334
+
335
+ The repository includes a generated marketplace manifest at `.claude-plugin/marketplace.json` that is compatible with Claude Code's plugin system.
336
+
337
+ **To submit to Claude marketplace:**
338
+
339
+ 1. Ensure the repository is public and contains this structure:
340
+ ```
341
+ ├── .claude-plugin/
342
+ │ └── marketplace.json # Generated from catalog/skills.json
343
+ └── packages/
344
+ └── {category}/{skill}/
345
+ ├── SKILL.md # Required canonical definition
346
+ └── adapters/
347
+ └── claude/ # Optional Claude-specific wrapper
348
+ ```
349
+
350
+ 2. Push to GitHub with a public repository:
351
+ ```bash
352
+ git push origin main
353
+ ```
354
+
355
+ 3. Submit the repository URL to Claude's plugin marketplace:
356
+ - In Claude Code: `/plugin marketplace add oleg-koval/agent-skills`
357
+ - Or visit the Claude plugin marketplace and add `https://github.com/oleg-koval/agent-skills`
358
+
359
+ 4. The marketplace will:
360
+ - Read `.claude-plugin/marketplace.json` for plugin metadata
361
+ - Index all skills from `catalog/skills.json`
362
+ - Auto-register skills by their `name` field
363
+ - Use `adapters: ["claude"]` entries to provide Claude-specific hints
364
+
365
+ **After publishing:**
366
+ - Users install with: `/plugin install olko-agent-skills@olko-agent-skills`
367
+ - All 12 skills become available as `olko:*` lookup names in Claude Code
368
+
369
+ ### Cursor Plugin Registry
370
+
371
+ Cursor plugin index is generated at `.cursor-plugin/index.json`.
372
+
373
+ **To submit to Cursor:**
374
+
375
+ 1. Ensure Cursor plugin metadata is present:
376
+ - `.cursor-plugin/index.json` (generated)
377
+ - `packages/*/*/adapters/cursor/` (optional Cursor-specific guidance)
378
+
379
+ 2. Submit the repository to Cursor's plugin marketplace with the `.cursor-plugin/` manifest
380
+
381
+ 3. Users install from Cursor's extension marketplace and reference skills by lookup name
382
+
383
+ ### GitHub Copilot
384
+
385
+ Generated Copilot instructions are at `.github/copilot-instructions.md` and per-skill prompts under `.github/prompts/`.
386
+
387
+ **To use in a GitHub workspace:**
388
+
389
+ 1. Copy `.github/copilot-instructions.md` to your repository
390
+ 2. Copilot reads this file automatically when enabled
391
+ 3. Per-skill prompts can be referenced or imported into custom Copilot configurations
392
+
393
+ ### Codex
394
+
395
+ Codex installation uses symlinks:
396
+
397
+ ```bash
398
+ ./scripts/install-codex-symlinks.sh
399
+ ```
400
+
401
+ Codex looks up skills by `olko:*` lookup names from the installed symlink directories.
402
+
304
403
  ## Local validation
305
404
 
306
405
  Rebuild generated manifests:
@@ -315,6 +414,12 @@ Validate the neutral catalog and generated root manifests:
315
414
  ./scripts/validate-catalog.sh
316
415
  ```
317
416
 
417
+ Run both before pushing marketplace updates:
418
+
419
+ ```bash
420
+ ./scripts/build-adapters.sh && ./scripts/validate-catalog.sh
421
+ ```
422
+
318
423
  ## Smoke-tested workflows
319
424
 
320
425
  The following package workflows have been smoke-tested locally before first push:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@olegkoval/agent-skills",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"