@olegkoval/agent-skills 1.3.0 → 1.3.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.2.2",
4
+ "version": "1.3.0",
5
5
  "author": {
6
6
  "name": "Oleg Koval"
7
7
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@olegkoval/agent-skills",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -31,23 +31,27 @@ Use this skill to audit whether an OSS repository is ready to publish, then help
31
31
  - `Weak`: existing pieces that are present but incomplete, stale, broken, inconsistent, or below the house standard
32
32
  - `Missing`: publish-critical pieces that do not exist
33
33
  - `Optional`: nice-to-have pieces such as donations or extra badges
34
- 3. For existing usable pieces, do not propose replacement by default. Ask a change-oriented question only when useful, for example:
34
+ 3. Classify the repository type before recommending changes:
35
+ - `library`, `CLI`, `web app`, `framework`, `docs site`, or `other`
36
+ - use the type to decide whether governance, packaging, or presentation work should come first
37
+ 4. For existing usable pieces, do not propose replacement by default. Ask a change-oriented question only when useful, for example:
35
38
  - "You already have a terminal-style GitHub Pages site. Do you want to keep it or restyle it?"
36
39
  - "You already have an icon and social card. Do you want a refresh, or should I leave them as-is?"
37
40
  - "You already have release automation. Do you want me to audit only, or also tighten it?"
38
- 4. Ask only for choices needed to fix missing or weak pieces:
41
+ 5. Ask only for choices needed to fix missing or weak pieces:
39
42
  - If GitHub Pages is missing or weak, ask for style: `oldschool linux`, `terminal`, `modern`, `brutalist`, `glassmorphism`, `y2k`, `hacker`, or custom.
40
43
  - If donation wiring is missing, ask whether to enable it: `none`, `GitHub Sponsors`, `Ko-fi`, `Buy Me a Coffee`, `Open Collective`, `Thanks.dev`, or custom URL.
41
44
  - If the repo has no clear product essence, ask for a one-sentence positioning statement.
42
- 5. Implement only approved, missing, or weak work in this order:
45
+ 6. Implement only approved, missing, or weak work in this order:
46
+ - OSS governance and support files
43
47
  - minimal icon
44
48
  - social preview image
45
49
  - README standard
46
50
  - GitHub Pages landing page
47
51
  - CI/CD and release audit/fixes
48
52
  - donation wiring, if requested
49
- 6. Validate locally and with browser/screenshots when possible.
50
- 7. Commit/push only when the user asks or the current task explicitly requires it.
53
+ 7. Validate locally and with browser/screenshots when possible.
54
+ 8. Commit/push only when the user asks or the current task explicitly requires it.
51
55
 
52
56
  ## Readiness Audit
53
57
 
@@ -57,6 +61,7 @@ Publish-critical checklist:
57
61
 
58
62
  - repository identity: clear project name, description, topic/keywords, author, license
59
63
  - install path: package manager, release assets, source build, or direct download instructions
64
+ - OSS governance: `LICENSE`, `CONTRIBUTING.md`, `SECURITY.md`, `CODE_OF_CONDUCT.md`, support policy, issue/PR templates, changelog or release notes path
60
65
  - README standard: centered shields, icon, title, short description, horizontal rule, essential sections
61
66
  - icon: simple SVG mark, renders at small sizes, committed in a predictable path
62
67
  - social image: 1200x630 image with matching metadata, committed source when practical
@@ -227,6 +232,29 @@ Rules:
227
232
  - Do not claim coverage, license, support, CI, or releases that are not actually present.
228
233
  - Add or fix `LICENSE` before saying MIT/Apache/etc.
229
234
 
235
+ ## OSS Governance
236
+
237
+ Treat governance files as first-class publishing work, not optional paperwork.
238
+
239
+ Check for, or add when appropriate:
240
+
241
+ - `LICENSE`
242
+ - `CONTRIBUTING.md`
243
+ - `SECURITY.md`
244
+ - `CODE_OF_CONDUCT.md`
245
+ - `SUPPORT.md`
246
+ - `.github/ISSUE_TEMPLATE/*`
247
+ - `.github/PULL_REQUEST_TEMPLATE.md`
248
+ - `CHANGELOG.md` or a release notes workflow
249
+ - package metadata for homepage, repository, bugs, and funding links
250
+
251
+ Rules:
252
+
253
+ - For libraries and CLIs, prioritize governance and release path before visual polish.
254
+ - For web apps or product sites, keep the governance checks but allow branding and landing page work to happen earlier when the public-facing experience is the main product.
255
+ - If a repo already has governance docs that are good enough, mark them `Ready` and move on.
256
+ - If the project has no maintainer/support policy, ask whether support should be community-only, maintainer-only, or commercial.
257
+
230
258
  ## GitHub Pages
231
259
 
232
260
  Create a simple essential GitHub Pages site when the project lacks one or the existing one is weak.
@@ -272,9 +300,15 @@ Check whether the repository has:
272
300
  - linter/static analysis
273
301
  - tests
274
302
  - build/package check
303
+ - dependency review / lockfile integrity checks
304
+ - secret scanning or secret prevention
305
+ - license scanning / OSS compliance scan
306
+ - SBOM or provenance generation where appropriate
275
307
  - security scan or OpenSSF Scorecard where appropriate
276
308
  - release automation
277
309
  - docs/site-only path filters when release runs on `main`
310
+ - docs link checker or markdown validation for repo/docs sites
311
+ - package-specific smoke install / publish dry-run matrix
278
312
 
279
313
  For Go projects, prefer:
280
314
 
@@ -302,6 +336,8 @@ Release automation rules:
302
336
  - Make Homebrew/package formulas update from real release artifacts and checksums.
303
337
  - Use least-privilege secrets and document required secret names.
304
338
  - If automation pushes tags, guard against rerun/version reuse.
339
+ - Prefer signed or attestable releases where the ecosystem supports it.
340
+ - Prefer release notes generation from tags or merged PRs instead of hand-written release bodies when the repo is release-heavy.
305
341
 
306
342
  ## Donations
307
343
 
@@ -33,23 +33,27 @@ Use this skill to audit whether an OSS repository is ready to publish, then help
33
33
  - `Weak`: existing pieces that are present but incomplete, stale, broken, inconsistent, or below the house standard
34
34
  - `Missing`: publish-critical pieces that do not exist
35
35
  - `Optional`: nice-to-have pieces such as donations or extra badges
36
- 3. For existing usable pieces, do not propose replacement by default. Ask a change-oriented question only when useful, for example:
36
+ 3. Classify the repository type before recommending changes:
37
+ - `library`, `CLI`, `web app`, `framework`, `docs site`, or `other`
38
+ - use the type to decide whether governance, packaging, or presentation work should come first
39
+ 4. For existing usable pieces, do not propose replacement by default. Ask a change-oriented question only when useful, for example:
37
40
  - "You already have a terminal-style GitHub Pages site. Do you want to keep it or restyle it?"
38
41
  - "You already have an icon and social card. Do you want a refresh, or should I leave them as-is?"
39
42
  - "You already have release automation. Do you want me to audit only, or also tighten it?"
40
- 4. Ask only for choices needed to fix missing or weak pieces:
43
+ 5. Ask only for choices needed to fix missing or weak pieces:
41
44
  - If GitHub Pages is missing or weak, ask for style: `oldschool linux`, `terminal`, `modern`, `brutalist`, `glassmorphism`, `y2k`, `hacker`, or custom.
42
45
  - If donation wiring is missing, ask whether to enable it: `none`, `GitHub Sponsors`, `Ko-fi`, `Buy Me a Coffee`, `Open Collective`, `Thanks.dev`, or custom URL.
43
46
  - If the repo has no clear product essence, ask for a one-sentence positioning statement.
44
- 5. Implement only approved, missing, or weak work in this order:
47
+ 6. Implement only approved, missing, or weak work in this order:
48
+ - OSS governance and support files
45
49
  - minimal icon
46
50
  - social preview image
47
51
  - README standard
48
52
  - GitHub Pages landing page
49
53
  - CI/CD and release audit/fixes
50
54
  - donation wiring, if requested
51
- 6. Validate locally and with browser/screenshots when possible.
52
- 7. Commit/push only when the user asks or the current task explicitly requires it.
55
+ 7. Validate locally and with browser/screenshots when possible.
56
+ 8. Commit/push only when the user asks or the current task explicitly requires it.
53
57
 
54
58
  ## Readiness Audit
55
59
 
@@ -59,6 +63,7 @@ Publish-critical checklist:
59
63
 
60
64
  - repository identity: clear project name, description, topic/keywords, author, license
61
65
  - install path: package manager, release assets, source build, or direct download instructions
66
+ - OSS governance: `LICENSE`, `CONTRIBUTING.md`, `SECURITY.md`, `CODE_OF_CONDUCT.md`, support policy, issue/PR templates, changelog or release notes path
62
67
  - README standard: centered shields, icon, title, short description, horizontal rule, essential sections
63
68
  - icon: simple SVG mark, renders at small sizes, committed in a predictable path
64
69
  - social image: 1200x630 image with matching metadata, committed source when practical
@@ -229,6 +234,29 @@ Rules:
229
234
  - Do not claim coverage, license, support, CI, or releases that are not actually present.
230
235
  - Add or fix `LICENSE` before saying MIT/Apache/etc.
231
236
 
237
+ ## OSS Governance
238
+
239
+ Treat governance files as first-class publishing work, not optional paperwork.
240
+
241
+ Check for, or add when appropriate:
242
+
243
+ - `LICENSE`
244
+ - `CONTRIBUTING.md`
245
+ - `SECURITY.md`
246
+ - `CODE_OF_CONDUCT.md`
247
+ - `SUPPORT.md`
248
+ - `.github/ISSUE_TEMPLATE/*`
249
+ - `.github/PULL_REQUEST_TEMPLATE.md`
250
+ - `CHANGELOG.md` or a release notes workflow
251
+ - package metadata for homepage, repository, bugs, and funding links
252
+
253
+ Rules:
254
+
255
+ - For libraries and CLIs, prioritize governance and release path before visual polish.
256
+ - For web apps or product sites, keep the governance checks but allow branding and landing page work to happen earlier when the public-facing experience is the main product.
257
+ - If a repo already has governance docs that are good enough, mark them `Ready` and move on.
258
+ - If the project has no maintainer/support policy, ask whether support should be community-only, maintainer-only, or commercial.
259
+
232
260
  ## GitHub Pages
233
261
 
234
262
  Create a simple essential GitHub Pages site when the project lacks one or the existing one is weak.
@@ -274,9 +302,15 @@ Check whether the repository has:
274
302
  - linter/static analysis
275
303
  - tests
276
304
  - build/package check
305
+ - dependency review / lockfile integrity checks
306
+ - secret scanning or secret prevention
307
+ - license scanning / OSS compliance scan
308
+ - SBOM or provenance generation where appropriate
277
309
  - security scan or OpenSSF Scorecard where appropriate
278
310
  - release automation
279
311
  - docs/site-only path filters when release runs on `main`
312
+ - docs link checker or markdown validation for repo/docs sites
313
+ - package-specific smoke install / publish dry-run matrix
280
314
 
281
315
  For Go projects, prefer:
282
316
 
@@ -304,6 +338,8 @@ Release automation rules:
304
338
  - Make Homebrew/package formulas update from real release artifacts and checksums.
305
339
  - Use least-privilege secrets and document required secret names.
306
340
  - If automation pushes tags, guard against rerun/version reuse.
341
+ - Prefer signed or attestable releases where the ecosystem supports it.
342
+ - Prefer release notes generation from tags or merged PRs instead of hand-written release bodies when the repo is release-heavy.
307
343
 
308
344
  ## Donations
309
345
 
@@ -33,23 +33,27 @@ Use this skill to audit whether an OSS repository is ready to publish, then help
33
33
  - `Weak`: existing pieces that are present but incomplete, stale, broken, inconsistent, or below the house standard
34
34
  - `Missing`: publish-critical pieces that do not exist
35
35
  - `Optional`: nice-to-have pieces such as donations or extra badges
36
- 3. For existing usable pieces, do not propose replacement by default. Ask a change-oriented question only when useful, for example:
36
+ 3. Classify the repository type before recommending changes:
37
+ - `library`, `CLI`, `web app`, `framework`, `docs site`, or `other`
38
+ - use the type to decide whether governance, packaging, or presentation work should come first
39
+ 4. For existing usable pieces, do not propose replacement by default. Ask a change-oriented question only when useful, for example:
37
40
  - "You already have a terminal-style GitHub Pages site. Do you want to keep it or restyle it?"
38
41
  - "You already have an icon and social card. Do you want a refresh, or should I leave them as-is?"
39
42
  - "You already have release automation. Do you want me to audit only, or also tighten it?"
40
- 4. Ask only for choices needed to fix missing or weak pieces:
43
+ 5. Ask only for choices needed to fix missing or weak pieces:
41
44
  - If GitHub Pages is missing or weak, ask for style: `oldschool linux`, `terminal`, `modern`, `brutalist`, `glassmorphism`, `y2k`, `hacker`, or custom.
42
45
  - If donation wiring is missing, ask whether to enable it: `none`, `GitHub Sponsors`, `Ko-fi`, `Buy Me a Coffee`, `Open Collective`, `Thanks.dev`, or custom URL.
43
46
  - If the repo has no clear product essence, ask for a one-sentence positioning statement.
44
- 5. Implement only approved, missing, or weak work in this order:
47
+ 6. Implement only approved, missing, or weak work in this order:
48
+ - OSS governance and support files
45
49
  - minimal icon
46
50
  - social preview image
47
51
  - README standard
48
52
  - GitHub Pages landing page
49
53
  - CI/CD and release audit/fixes
50
54
  - donation wiring, if requested
51
- 6. Validate locally and with browser/screenshots when possible.
52
- 7. Commit/push only when the user asks or the current task explicitly requires it.
55
+ 7. Validate locally and with browser/screenshots when possible.
56
+ 8. Commit/push only when the user asks or the current task explicitly requires it.
53
57
 
54
58
  ## Readiness Audit
55
59
 
@@ -59,6 +63,7 @@ Publish-critical checklist:
59
63
 
60
64
  - repository identity: clear project name, description, topic/keywords, author, license
61
65
  - install path: package manager, release assets, source build, or direct download instructions
66
+ - OSS governance: `LICENSE`, `CONTRIBUTING.md`, `SECURITY.md`, `CODE_OF_CONDUCT.md`, support policy, issue/PR templates, changelog or release notes path
62
67
  - README standard: centered shields, icon, title, short description, horizontal rule, essential sections
63
68
  - icon: simple SVG mark, renders at small sizes, committed in a predictable path
64
69
  - social image: 1200x630 image with matching metadata, committed source when practical
@@ -229,6 +234,29 @@ Rules:
229
234
  - Do not claim coverage, license, support, CI, or releases that are not actually present.
230
235
  - Add or fix `LICENSE` before saying MIT/Apache/etc.
231
236
 
237
+ ## OSS Governance
238
+
239
+ Treat governance files as first-class publishing work, not optional paperwork.
240
+
241
+ Check for, or add when appropriate:
242
+
243
+ - `LICENSE`
244
+ - `CONTRIBUTING.md`
245
+ - `SECURITY.md`
246
+ - `CODE_OF_CONDUCT.md`
247
+ - `SUPPORT.md`
248
+ - `.github/ISSUE_TEMPLATE/*`
249
+ - `.github/PULL_REQUEST_TEMPLATE.md`
250
+ - `CHANGELOG.md` or a release notes workflow
251
+ - package metadata for homepage, repository, bugs, and funding links
252
+
253
+ Rules:
254
+
255
+ - For libraries and CLIs, prioritize governance and release path before visual polish.
256
+ - For web apps or product sites, keep the governance checks but allow branding and landing page work to happen earlier when the public-facing experience is the main product.
257
+ - If a repo already has governance docs that are good enough, mark them `Ready` and move on.
258
+ - If the project has no maintainer/support policy, ask whether support should be community-only, maintainer-only, or commercial.
259
+
232
260
  ## GitHub Pages
233
261
 
234
262
  Create a simple essential GitHub Pages site when the project lacks one or the existing one is weak.
@@ -274,9 +302,15 @@ Check whether the repository has:
274
302
  - linter/static analysis
275
303
  - tests
276
304
  - build/package check
305
+ - dependency review / lockfile integrity checks
306
+ - secret scanning or secret prevention
307
+ - license scanning / OSS compliance scan
308
+ - SBOM or provenance generation where appropriate
277
309
  - security scan or OpenSSF Scorecard where appropriate
278
310
  - release automation
279
311
  - docs/site-only path filters when release runs on `main`
312
+ - docs link checker or markdown validation for repo/docs sites
313
+ - package-specific smoke install / publish dry-run matrix
280
314
 
281
315
  For Go projects, prefer:
282
316
 
@@ -304,6 +338,8 @@ Release automation rules:
304
338
  - Make Homebrew/package formulas update from real release artifacts and checksums.
305
339
  - Use least-privilege secrets and document required secret names.
306
340
  - If automation pushes tags, guard against rerun/version reuse.
341
+ - Prefer signed or attestable releases where the ecosystem supports it.
342
+ - Prefer release notes generation from tags or merged PRs instead of hand-written release bodies when the repo is release-heavy.
307
343
 
308
344
  ## Donations
309
345