@olegkoval/agent-skills 1.2.2 → 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.1",
4
+ "version": "1.3.0",
5
5
  "author": {
6
6
  "name": "Oleg Koval"
7
7
  },
@@ -18,6 +18,7 @@
18
18
  "./packages/software-development/promptctl",
19
19
  "./packages/music/fill-music-player",
20
20
  "./packages/software-development/product-builder",
21
+ "./packages/software-development/add-to-my-skills",
21
22
  "./packages/software-development/open-source-publisher",
22
23
  "./packages/marketing/viral-launch",
23
24
  "./packages/marketing/search-console-indexing-audit"
@@ -46,6 +46,11 @@
46
46
  "source": "./packages/software-development/product-builder/adapters/cursor",
47
47
  "description": "Build a full-stack web application or SaaS product from a user description using production-oriented defaults."
48
48
  },
49
+ {
50
+ "name": "olko:add-to-my-skills",
51
+ "source": "./packages/software-development/add-to-my-skills/adapters/cursor",
52
+ "description": "Copy a newly created skill into this catalog, refresh manifests, and publish the change."
53
+ },
49
54
  {
50
55
  "name": "olko:open-source-publisher",
51
56
  "source": "./packages/software-development/open-source-publisher/adapters/cursor",
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  <p><strong>Agent-agnostic skill catalog for Codex, Claude, Cursor, and other skill-aware tools.</strong></p>
4
4
  <p>
5
5
  <img src="https://img.shields.io/badge/license-MIT-16a34a" alt="MIT license">
6
- <img src="https://img.shields.io/badge/skills-11-2563eb" alt="11 skills">
6
+ <img src="https://img.shields.io/badge/skills-12-2563eb" alt="12 skills">
7
7
  <img src="https://img.shields.io/badge/platforms-Codex%20%7C%20Claude%20%7C%20Cursor%20%7C%20Copilot-111827" alt="Codex Claude Cursor Copilot">
8
8
  <img src="https://img.shields.io/badge/status-public%20catalog-16a34a" alt="Public catalog">
9
9
  </p>
@@ -116,7 +116,7 @@ packages/{category}/{skill}/adapters/
116
116
 
117
117
  </details>
118
118
 
119
- ## All 11 Skills
119
+ ## All 12 Skills
120
120
 
121
121
  These packages are the entry points. Each one is a structured workflow with concrete trigger conditions and execution steps. You can reference any skill directly by its `olko:*` lookup name.
122
122
 
@@ -129,6 +129,7 @@ These packages are the entry points. Each one is a structured workflow with conc
129
129
  | [changelog-generator](packages/software-development/changelog-generator/SKILL.md) | Generates user-facing changelogs and release notes from git history | Preparing release notes, app store update text, customer changelogs, or internal release summaries |
130
130
  | [gh-cli](packages/software-development/gh-cli/SKILL.md) | Guides GitHub CLI usage for repos, PRs, Actions, releases, issues, and related GitHub operations | Working with GitHub from the command line and needing reliable `gh` commands |
131
131
  | [git-commit](packages/software-development/git-commit/SKILL.md) | Creates conventional commits with diff-aware staging and message generation | The user asks to commit changes or wants a conventional commit message from the current diff |
132
+ | [add-to-my-skills](packages/software-development/add-to-my-skills/SKILL.md) | Copies a skill from another repo into this catalog, then refreshes docs, manifests, commit, and push | Bringing a newly created skill into this repository |
132
133
  | [promptctl](packages/software-development/promptctl/SKILL.md) | Uses `promptctl` for reusable prompt templates, scoring, and workflow automation | A project needs prompt conventions, prompt review, prompt scoring, or reusable prompt workflows |
133
134
  | [product-builder](packages/software-development/product-builder/SKILL.md) | Builds a full-stack web app or SaaS product from a user description using production-oriented defaults | The user asks to build a complete app, SaaS, dashboard, or product rather than a prototype |
134
135
 
@@ -167,6 +168,10 @@ Use the olko:semantic-release-beta skill to add prereleases on a beta branch.
167
168
  Use the olko:gallery skill to build a photo gallery from this image folder.
168
169
  ```
169
170
 
171
+ ```text
172
+ Use the olko:add-to-my-skills skill to copy a skill from another repo into this catalog, update the README, and push the change.
173
+ ```
174
+
170
175
  ```text
171
176
  Use the olko:viral-launch skill to make this project launch-ready.
172
177
  ```
@@ -224,6 +229,7 @@ agent-skills/
224
229
  │ │ ├── changelog-generator/
225
230
  │ │ ├── gh-cli/
226
231
  │ │ ├── git-commit/
232
+ │ │ ├── add-to-my-skills/
227
233
  │ │ ├── promptctl/
228
234
  │ │ └── product-builder/
229
235
  │ ├── music/
@@ -324,6 +330,11 @@ The following package workflows have been smoke-tested locally before first push
324
330
  - ran `semantic-release --dry-run --no-ci` on `beta`
325
331
  - verified prerelease calculation to `1.0.0-beta.1`
326
332
 
333
+ - `add-to-my-skills`
334
+ - copied a source skill into `packages/software-development/`
335
+ - refreshed generated manifests with `./scripts/build-adapters.sh`
336
+ - validated catalog and generated files with `./scripts/validate-catalog.sh`
337
+
327
338
  The semantic-release smoke test was intentionally self-contained and used a local bare git remote plus a valid `file://` repository URL so dry-run behavior could be validated without real npm or GitHub publishing credentials.
328
339
 
329
340
  ## Licensing notes
@@ -177,6 +177,26 @@
177
177
  "copilot"
178
178
  ]
179
179
  },
180
+ {
181
+ "name": "add-to-my-skills",
182
+ "lookupName": "olko:add-to-my-skills",
183
+ "category": "software-development",
184
+ "path": "packages/software-development/add-to-my-skills",
185
+ "description": "Copy a newly created skill into this catalog, refresh manifests, and publish the change.",
186
+ "tags": [
187
+ "skills",
188
+ "skillshare",
189
+ "catalog",
190
+ "git",
191
+ "push"
192
+ ],
193
+ "adapters": [
194
+ "codex",
195
+ "claude",
196
+ "cursor",
197
+ "copilot"
198
+ ]
199
+ },
180
200
  {
181
201
  "name": "open-source-publisher",
182
202
  "lookupName": "olko:open-source-publisher",
@@ -8,6 +8,7 @@
8
8
  "gh-cli",
9
9
  "git-commit",
10
10
  "promptctl",
11
+ "add-to-my-skills",
11
12
  "open-source-publisher",
12
13
  "product-builder"
13
14
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@olegkoval/agent-skills",
3
- "version": "1.2.2",
3
+ "version": "1.3.1",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -0,0 +1,86 @@
1
+ ---
2
+ name: add-to-my-skills
3
+ description: Copy a newly created skill from another repo into this catalog, refresh the README and generated manifests, then commit and push the change. Use when the user wants to bring a skill they built elsewhere into this repository.
4
+ license: MIT
5
+ compatibility: Codex, Claude Code, Cursor, and other Agent Skills compatible tools. Requires a writable git repository and access to the source skill repo.
6
+ metadata:
7
+ author: Oleg Koval
8
+ tags:
9
+ - skills
10
+ - skillshare
11
+ - catalog
12
+ - git
13
+ - commit
14
+ - push
15
+ ---
16
+
17
+ # Add to My Skills
18
+
19
+ Use this skill when a skill was created in another repository and needs to be copied into this catalog as a first-class package.
20
+
21
+ ## Outcome
22
+
23
+ Bring the source skill into `packages/software-development/`, register it in the catalog, refresh generated docs and adapters, and publish the change with a git commit and push.
24
+
25
+ ## When to Use
26
+
27
+ - The user created a new `SKILL.md` in another repo and wants it added here
28
+ - The user wants this catalog to become the canonical home for that skill
29
+ - The user wants the README, generated manifests, commit, and push handled in one pass
30
+
31
+ ## Clarify Before Acting
32
+
33
+ If any of these are unclear, ask up to 3 questions in one batch before editing:
34
+
35
+ - Source repo or source skill path
36
+ - Final skill name if it should differ from the source
37
+ - Destination branch or remote if the push target is unclear
38
+
39
+ Default assumptions when not specified:
40
+
41
+ - Copy the source skill as a new canonical package in `packages/software-development/<skill-name>/`
42
+ - Keep the source skill name unless the user asks to rename it
43
+ - Use this repository as the destination
44
+ - Commit with a conventional commit message and push to the current branch's upstream
45
+
46
+ ## Workflow
47
+
48
+ 1. Inspect the source skill:
49
+ - locate the source `SKILL.md`
50
+ - copy any supporting `references/`, `scripts/`, or `assets/` files that the skill needs
51
+ - note any repo-specific assumptions that need to be rewritten for this catalog
52
+ 2. Choose the package location:
53
+ - default to `packages/software-development/<skill-name>/`
54
+ - ensure the package directory name matches the `name` frontmatter value
55
+ 3. Create or update the canonical package:
56
+ - write `SKILL.md` first
57
+ - keep the frontmatter accurate and concise
58
+ - make the workflow explicit, actionable, and self-contained
59
+ 4. Register the package in the repository inventory:
60
+ - add the package to `catalog/skills.json`
61
+ - add it to the appropriate collection file if it belongs in a bundle
62
+ - update `README.md` so the package list, counts, and usage examples stay current
63
+ 5. Refresh generated outputs:
64
+ - run `./scripts/build-adapters.sh`
65
+ - run `./scripts/validate-catalog.sh`
66
+ 6. Verify the new package actually exists:
67
+ - confirm `packages/software-development/<skill-name>/SKILL.md`
68
+ - confirm generated adapter files and prompt files were created
69
+ 7. Commit and push:
70
+ - inspect `git status`
71
+ - commit the change with a conventional message
72
+ - push to the current upstream branch
73
+
74
+ ## Git Safety
75
+
76
+ - Never overwrite unrelated changes
77
+ - Never force push unless the user explicitly asks
78
+ - Never commit secrets copied from the source repo
79
+ - If the source skill is incomplete or ambiguous, stop and ask for clarification instead of guessing
80
+
81
+ ## Verification
82
+
83
+ - `./scripts/build-adapters.sh` completes successfully
84
+ - `./scripts/validate-catalog.sh` passes
85
+ - `git status` shows only the intended package, catalog, README, and generated files
86
+ - `git push` succeeds to the expected remote
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "olko-add-to-my-skills",
3
+ "description": "Copy a newly created skill into this catalog, refresh manifests, and publish the change.",
4
+ "skills": "./skills"
5
+ }
@@ -0,0 +1,88 @@
1
+ <!-- Generated by scripts/build-adapters.sh. Do not edit directly. -->
2
+
3
+ ---
4
+ name: add-to-my-skills
5
+ description: Copy a newly created skill from another repo into this catalog, refresh the README and generated manifests, then commit and push the change. Use when the user wants to bring a skill they built elsewhere into this repository.
6
+ license: MIT
7
+ compatibility: Codex, Claude Code, Cursor, and other Agent Skills compatible tools. Requires a writable git repository and access to the source skill repo.
8
+ metadata:
9
+ author: Oleg Koval
10
+ tags:
11
+ - skills
12
+ - skillshare
13
+ - catalog
14
+ - git
15
+ - commit
16
+ - push
17
+ ---
18
+
19
+ # Add to My Skills
20
+
21
+ Use this skill when a skill was created in another repository and needs to be copied into this catalog as a first-class package.
22
+
23
+ ## Outcome
24
+
25
+ Bring the source skill into `packages/software-development/`, register it in the catalog, refresh generated docs and adapters, and publish the change with a git commit and push.
26
+
27
+ ## When to Use
28
+
29
+ - The user created a new `SKILL.md` in another repo and wants it added here
30
+ - The user wants this catalog to become the canonical home for that skill
31
+ - The user wants the README, generated manifests, commit, and push handled in one pass
32
+
33
+ ## Clarify Before Acting
34
+
35
+ If any of these are unclear, ask up to 3 questions in one batch before editing:
36
+
37
+ - Source repo or source skill path
38
+ - Final skill name if it should differ from the source
39
+ - Destination branch or remote if the push target is unclear
40
+
41
+ Default assumptions when not specified:
42
+
43
+ - Copy the source skill as a new canonical package in `packages/software-development/<skill-name>/`
44
+ - Keep the source skill name unless the user asks to rename it
45
+ - Use this repository as the destination
46
+ - Commit with a conventional commit message and push to the current branch's upstream
47
+
48
+ ## Workflow
49
+
50
+ 1. Inspect the source skill:
51
+ - locate the source `SKILL.md`
52
+ - copy any supporting `references/`, `scripts/`, or `assets/` files that the skill needs
53
+ - note any repo-specific assumptions that need to be rewritten for this catalog
54
+ 2. Choose the package location:
55
+ - default to `packages/software-development/<skill-name>/`
56
+ - ensure the package directory name matches the `name` frontmatter value
57
+ 3. Create or update the canonical package:
58
+ - write `SKILL.md` first
59
+ - keep the frontmatter accurate and concise
60
+ - make the workflow explicit, actionable, and self-contained
61
+ 4. Register the package in the repository inventory:
62
+ - add the package to `catalog/skills.json`
63
+ - add it to the appropriate collection file if it belongs in a bundle
64
+ - update `README.md` so the package list, counts, and usage examples stay current
65
+ 5. Refresh generated outputs:
66
+ - run `./scripts/build-adapters.sh`
67
+ - run `./scripts/validate-catalog.sh`
68
+ 6. Verify the new package actually exists:
69
+ - confirm `packages/software-development/<skill-name>/SKILL.md`
70
+ - confirm generated adapter files and prompt files were created
71
+ 7. Commit and push:
72
+ - inspect `git status`
73
+ - commit the change with a conventional message
74
+ - push to the current upstream branch
75
+
76
+ ## Git Safety
77
+
78
+ - Never overwrite unrelated changes
79
+ - Never force push unless the user explicitly asks
80
+ - Never commit secrets copied from the source repo
81
+ - If the source skill is incomplete or ambiguous, stop and ask for clarification instead of guessing
82
+
83
+ ## Verification
84
+
85
+ - `./scripts/build-adapters.sh` completes successfully
86
+ - `./scripts/validate-catalog.sh` passes
87
+ - `git status` shows only the intended package, catalog, README, and generated files
88
+ - `git push` succeeds to the expected remote
@@ -0,0 +1,3 @@
1
+ # Codex adapter
2
+
3
+ Use the canonical skill directly from `packages/software-development/add-to-my-skills/SKILL.md`.
@@ -0,0 +1,6 @@
1
+ {
2
+ "name": "olko:add-to-my-skills",
3
+ "version": "0.1.0",
4
+ "description": "Copy a newly created skill into this catalog, refresh manifests, and publish the change.",
5
+ "skills": "skills/"
6
+ }
@@ -0,0 +1,88 @@
1
+ <!-- Generated by scripts/build-adapters.sh. Do not edit directly. -->
2
+
3
+ ---
4
+ name: add-to-my-skills
5
+ description: Copy a newly created skill from another repo into this catalog, refresh the README and generated manifests, then commit and push the change. Use when the user wants to bring a skill they built elsewhere into this repository.
6
+ license: MIT
7
+ compatibility: Codex, Claude Code, Cursor, and other Agent Skills compatible tools. Requires a writable git repository and access to the source skill repo.
8
+ metadata:
9
+ author: Oleg Koval
10
+ tags:
11
+ - skills
12
+ - skillshare
13
+ - catalog
14
+ - git
15
+ - commit
16
+ - push
17
+ ---
18
+
19
+ # Add to My Skills
20
+
21
+ Use this skill when a skill was created in another repository and needs to be copied into this catalog as a first-class package.
22
+
23
+ ## Outcome
24
+
25
+ Bring the source skill into `packages/software-development/`, register it in the catalog, refresh generated docs and adapters, and publish the change with a git commit and push.
26
+
27
+ ## When to Use
28
+
29
+ - The user created a new `SKILL.md` in another repo and wants it added here
30
+ - The user wants this catalog to become the canonical home for that skill
31
+ - The user wants the README, generated manifests, commit, and push handled in one pass
32
+
33
+ ## Clarify Before Acting
34
+
35
+ If any of these are unclear, ask up to 3 questions in one batch before editing:
36
+
37
+ - Source repo or source skill path
38
+ - Final skill name if it should differ from the source
39
+ - Destination branch or remote if the push target is unclear
40
+
41
+ Default assumptions when not specified:
42
+
43
+ - Copy the source skill as a new canonical package in `packages/software-development/<skill-name>/`
44
+ - Keep the source skill name unless the user asks to rename it
45
+ - Use this repository as the destination
46
+ - Commit with a conventional commit message and push to the current branch's upstream
47
+
48
+ ## Workflow
49
+
50
+ 1. Inspect the source skill:
51
+ - locate the source `SKILL.md`
52
+ - copy any supporting `references/`, `scripts/`, or `assets/` files that the skill needs
53
+ - note any repo-specific assumptions that need to be rewritten for this catalog
54
+ 2. Choose the package location:
55
+ - default to `packages/software-development/<skill-name>/`
56
+ - ensure the package directory name matches the `name` frontmatter value
57
+ 3. Create or update the canonical package:
58
+ - write `SKILL.md` first
59
+ - keep the frontmatter accurate and concise
60
+ - make the workflow explicit, actionable, and self-contained
61
+ 4. Register the package in the repository inventory:
62
+ - add the package to `catalog/skills.json`
63
+ - add it to the appropriate collection file if it belongs in a bundle
64
+ - update `README.md` so the package list, counts, and usage examples stay current
65
+ 5. Refresh generated outputs:
66
+ - run `./scripts/build-adapters.sh`
67
+ - run `./scripts/validate-catalog.sh`
68
+ 6. Verify the new package actually exists:
69
+ - confirm `packages/software-development/<skill-name>/SKILL.md`
70
+ - confirm generated adapter files and prompt files were created
71
+ 7. Commit and push:
72
+ - inspect `git status`
73
+ - commit the change with a conventional message
74
+ - push to the current upstream branch
75
+
76
+ ## Git Safety
77
+
78
+ - Never overwrite unrelated changes
79
+ - Never force push unless the user explicitly asks
80
+ - Never commit secrets copied from the source repo
81
+ - If the source skill is incomplete or ambiguous, stop and ask for clarification instead of guessing
82
+
83
+ ## Verification
84
+
85
+ - `./scripts/build-adapters.sh` completes successfully
86
+ - `./scripts/validate-catalog.sh` passes
87
+ - `git status` shows only the intended package, catalog, README, and generated files
88
+ - `git push` succeeds to the expected remote
@@ -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