@olegkoval/agent-skills 1.0.1 → 1.2.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.
Files changed (24) hide show
  1. package/.claude-plugin/plugin.json +4 -2
  2. package/.cursor-plugin/index.json +10 -0
  3. package/README.md +3 -2
  4. package/catalog/skills.json +44 -0
  5. package/collections/marketing.json +2 -2
  6. package/collections/software-development.json +1 -0
  7. package/package.json +1 -1
  8. package/packages/marketing/search-console-indexing-audit/SKILL.md +64 -0
  9. package/packages/marketing/search-console-indexing-audit/adapters/claude/plugin.json +5 -0
  10. package/packages/marketing/search-console-indexing-audit/adapters/claude/skills/search-console-indexing-audit/SKILL.md +66 -0
  11. package/packages/marketing/search-console-indexing-audit/adapters/claude/skills/search-console-indexing-audit/scripts/summarize_gsc_coverage.py +151 -0
  12. package/packages/marketing/search-console-indexing-audit/adapters/codex/README.md +3 -0
  13. package/packages/marketing/search-console-indexing-audit/adapters/cursor/plugin.json +6 -0
  14. package/packages/marketing/search-console-indexing-audit/adapters/cursor/skills/search-console-indexing-audit/SKILL.md +66 -0
  15. package/packages/marketing/search-console-indexing-audit/adapters/cursor/skills/search-console-indexing-audit/scripts/summarize_gsc_coverage.py +151 -0
  16. package/packages/marketing/search-console-indexing-audit/scripts/summarize_gsc_coverage.py +151 -0
  17. package/packages/software-development/open-source-publisher/SKILL.md +289 -0
  18. package/packages/software-development/open-source-publisher/adapters/claude/plugin.json +5 -0
  19. package/packages/software-development/open-source-publisher/adapters/claude/skills/open-source-publisher/SKILL.md +291 -0
  20. package/packages/software-development/open-source-publisher/adapters/codex/README.md +3 -0
  21. package/packages/software-development/open-source-publisher/adapters/cursor/plugin.json +6 -0
  22. package/packages/software-development/open-source-publisher/adapters/cursor/skills/open-source-publisher/SKILL.md +291 -0
  23. package/packages/software-development/open-source-publisher/agents/openai.yaml +4 -0
  24. package/scripts/build-adapters.sh +13 -0
@@ -0,0 +1,151 @@
1
+ #!/usr/bin/env python3
2
+ """Summarize Google Search Console Coverage CSV exports."""
3
+
4
+ from __future__ import annotations
5
+
6
+ import argparse
7
+ import csv
8
+ import json
9
+ from pathlib import Path
10
+ from typing import Any
11
+
12
+
13
+ STANDARD_FILES = {
14
+ "chart": "Chart.csv",
15
+ "metadata": "Metadata.csv",
16
+ "critical": "Critical issues.csv",
17
+ "non_critical": "Non-critical issues.csv",
18
+ }
19
+
20
+
21
+ def read_rows(path: Path) -> list[dict[str, str]]:
22
+ if not path.exists():
23
+ return []
24
+ with path.open(newline="", encoding="utf-8-sig") as handle:
25
+ return [
26
+ {key: (value or "").strip() for key, value in row.items()}
27
+ for row in csv.DictReader(handle)
28
+ ]
29
+
30
+
31
+ def int_or_none(value: str) -> int | None:
32
+ if value == "":
33
+ return None
34
+ try:
35
+ return int(value.replace(",", ""))
36
+ except ValueError:
37
+ return None
38
+
39
+
40
+ def chart_summary(rows: list[dict[str, str]]) -> dict[str, Any]:
41
+ points = []
42
+ for row in rows:
43
+ points.append(
44
+ {
45
+ "date": row.get("Date", ""),
46
+ "not_indexed": int_or_none(row.get("Not indexed", "")),
47
+ "indexed": int_or_none(row.get("Indexed", "")),
48
+ "impressions": int_or_none(row.get("Impressions", "")),
49
+ }
50
+ )
51
+
52
+ indexed_points = [
53
+ point for point in points if point["indexed"] is not None or point["not_indexed"] is not None
54
+ ]
55
+ first = indexed_points[0] if indexed_points else None
56
+ last = indexed_points[-1] if indexed_points else None
57
+
58
+ return {
59
+ "date_range": [points[0]["date"], points[-1]["date"]] if points else None,
60
+ "first_indexing_point": first,
61
+ "latest_indexing_point": last,
62
+ "indexed_delta": None if not first or not last else (last["indexed"] or 0) - (first["indexed"] or 0),
63
+ "not_indexed_delta": None
64
+ if not first or not last
65
+ else (last["not_indexed"] or 0) - (first["not_indexed"] or 0),
66
+ "impressions_total": sum(point["impressions"] or 0 for point in points),
67
+ }
68
+
69
+
70
+ def issue_summary(rows: list[dict[str, str]]) -> list[dict[str, Any]]:
71
+ issues = []
72
+ for row in rows:
73
+ reason = row.get("Reason", "")
74
+ if not reason:
75
+ continue
76
+ issues.append(
77
+ {
78
+ "reason": reason,
79
+ "source": row.get("Source", ""),
80
+ "validation": row.get("Validation", ""),
81
+ "pages": int_or_none(row.get("Pages", "")) or 0,
82
+ }
83
+ )
84
+ return sorted(issues, key=lambda issue: issue["pages"], reverse=True)
85
+
86
+
87
+ def load_export(export_dir: Path) -> dict[str, Any]:
88
+ files = {key: export_dir / filename for key, filename in STANDARD_FILES.items()}
89
+ metadata_rows = read_rows(files["metadata"])
90
+ return {
91
+ "export_dir": str(export_dir),
92
+ "metadata": {row.get("Property", ""): row.get("Value", "") for row in metadata_rows},
93
+ "chart": chart_summary(read_rows(files["chart"])),
94
+ "critical_issues": issue_summary(read_rows(files["critical"])),
95
+ "non_critical_issues": issue_summary(read_rows(files["non_critical"])),
96
+ "missing_files": [filename for filename in STANDARD_FILES.values() if not (export_dir / filename).exists()],
97
+ }
98
+
99
+
100
+ def print_markdown(summary: dict[str, Any]) -> None:
101
+ chart = summary["chart"]
102
+ latest = chart["latest_indexing_point"] or {}
103
+ print("# Search Console Coverage Summary")
104
+ print()
105
+ print(f"- Export: `{summary['export_dir']}`")
106
+ if chart["date_range"]:
107
+ print(f"- Date range: {chart['date_range'][0]} to {chart['date_range'][1]}")
108
+ print(f"- Latest indexed: {latest.get('indexed', 'n/a')}")
109
+ print(f"- Latest not indexed: {latest.get('not_indexed', 'n/a')}")
110
+ print(f"- Total impressions in chart: {chart['impressions_total']}")
111
+ if summary["metadata"]:
112
+ print(f"- Metadata: {summary['metadata']}")
113
+ if summary["missing_files"]:
114
+ print(f"- Missing standard files: {', '.join(summary['missing_files'])}")
115
+
116
+ for label, issues in (
117
+ ("Critical Issues", summary["critical_issues"]),
118
+ ("Non-Critical Issues", summary["non_critical_issues"]),
119
+ ):
120
+ print()
121
+ print(f"## {label}")
122
+ if not issues:
123
+ print("- None reported")
124
+ continue
125
+ for issue in issues:
126
+ print(
127
+ f"- {issue['reason']}: {issue['pages']} pages"
128
+ f" ({issue['source']}, validation: {issue['validation']})"
129
+ )
130
+
131
+ print()
132
+ print("## Notes")
133
+ print("- Standard Coverage exports are aggregate reports; they may not include affected URL examples.")
134
+ print("- Redirect and canonical buckets should be checked against sitemap URLs and live canonical tags.")
135
+
136
+
137
+ def main() -> None:
138
+ parser = argparse.ArgumentParser(description=__doc__)
139
+ parser.add_argument("export_dir", type=Path)
140
+ parser.add_argument("--json", action="store_true", help="Print machine-readable JSON")
141
+ args = parser.parse_args()
142
+
143
+ summary = load_export(args.export_dir)
144
+ if args.json:
145
+ print(json.dumps(summary, indent=2, sort_keys=True))
146
+ else:
147
+ print_markdown(summary)
148
+
149
+
150
+ if __name__ == "__main__":
151
+ main()
@@ -0,0 +1,151 @@
1
+ #!/usr/bin/env python3
2
+ """Summarize Google Search Console Coverage CSV exports."""
3
+
4
+ from __future__ import annotations
5
+
6
+ import argparse
7
+ import csv
8
+ import json
9
+ from pathlib import Path
10
+ from typing import Any
11
+
12
+
13
+ STANDARD_FILES = {
14
+ "chart": "Chart.csv",
15
+ "metadata": "Metadata.csv",
16
+ "critical": "Critical issues.csv",
17
+ "non_critical": "Non-critical issues.csv",
18
+ }
19
+
20
+
21
+ def read_rows(path: Path) -> list[dict[str, str]]:
22
+ if not path.exists():
23
+ return []
24
+ with path.open(newline="", encoding="utf-8-sig") as handle:
25
+ return [
26
+ {key: (value or "").strip() for key, value in row.items()}
27
+ for row in csv.DictReader(handle)
28
+ ]
29
+
30
+
31
+ def int_or_none(value: str) -> int | None:
32
+ if value == "":
33
+ return None
34
+ try:
35
+ return int(value.replace(",", ""))
36
+ except ValueError:
37
+ return None
38
+
39
+
40
+ def chart_summary(rows: list[dict[str, str]]) -> dict[str, Any]:
41
+ points = []
42
+ for row in rows:
43
+ points.append(
44
+ {
45
+ "date": row.get("Date", ""),
46
+ "not_indexed": int_or_none(row.get("Not indexed", "")),
47
+ "indexed": int_or_none(row.get("Indexed", "")),
48
+ "impressions": int_or_none(row.get("Impressions", "")),
49
+ }
50
+ )
51
+
52
+ indexed_points = [
53
+ point for point in points if point["indexed"] is not None or point["not_indexed"] is not None
54
+ ]
55
+ first = indexed_points[0] if indexed_points else None
56
+ last = indexed_points[-1] if indexed_points else None
57
+
58
+ return {
59
+ "date_range": [points[0]["date"], points[-1]["date"]] if points else None,
60
+ "first_indexing_point": first,
61
+ "latest_indexing_point": last,
62
+ "indexed_delta": None if not first or not last else (last["indexed"] or 0) - (first["indexed"] or 0),
63
+ "not_indexed_delta": None
64
+ if not first or not last
65
+ else (last["not_indexed"] or 0) - (first["not_indexed"] or 0),
66
+ "impressions_total": sum(point["impressions"] or 0 for point in points),
67
+ }
68
+
69
+
70
+ def issue_summary(rows: list[dict[str, str]]) -> list[dict[str, Any]]:
71
+ issues = []
72
+ for row in rows:
73
+ reason = row.get("Reason", "")
74
+ if not reason:
75
+ continue
76
+ issues.append(
77
+ {
78
+ "reason": reason,
79
+ "source": row.get("Source", ""),
80
+ "validation": row.get("Validation", ""),
81
+ "pages": int_or_none(row.get("Pages", "")) or 0,
82
+ }
83
+ )
84
+ return sorted(issues, key=lambda issue: issue["pages"], reverse=True)
85
+
86
+
87
+ def load_export(export_dir: Path) -> dict[str, Any]:
88
+ files = {key: export_dir / filename for key, filename in STANDARD_FILES.items()}
89
+ metadata_rows = read_rows(files["metadata"])
90
+ return {
91
+ "export_dir": str(export_dir),
92
+ "metadata": {row.get("Property", ""): row.get("Value", "") for row in metadata_rows},
93
+ "chart": chart_summary(read_rows(files["chart"])),
94
+ "critical_issues": issue_summary(read_rows(files["critical"])),
95
+ "non_critical_issues": issue_summary(read_rows(files["non_critical"])),
96
+ "missing_files": [filename for filename in STANDARD_FILES.values() if not (export_dir / filename).exists()],
97
+ }
98
+
99
+
100
+ def print_markdown(summary: dict[str, Any]) -> None:
101
+ chart = summary["chart"]
102
+ latest = chart["latest_indexing_point"] or {}
103
+ print("# Search Console Coverage Summary")
104
+ print()
105
+ print(f"- Export: `{summary['export_dir']}`")
106
+ if chart["date_range"]:
107
+ print(f"- Date range: {chart['date_range'][0]} to {chart['date_range'][1]}")
108
+ print(f"- Latest indexed: {latest.get('indexed', 'n/a')}")
109
+ print(f"- Latest not indexed: {latest.get('not_indexed', 'n/a')}")
110
+ print(f"- Total impressions in chart: {chart['impressions_total']}")
111
+ if summary["metadata"]:
112
+ print(f"- Metadata: {summary['metadata']}")
113
+ if summary["missing_files"]:
114
+ print(f"- Missing standard files: {', '.join(summary['missing_files'])}")
115
+
116
+ for label, issues in (
117
+ ("Critical Issues", summary["critical_issues"]),
118
+ ("Non-Critical Issues", summary["non_critical_issues"]),
119
+ ):
120
+ print()
121
+ print(f"## {label}")
122
+ if not issues:
123
+ print("- None reported")
124
+ continue
125
+ for issue in issues:
126
+ print(
127
+ f"- {issue['reason']}: {issue['pages']} pages"
128
+ f" ({issue['source']}, validation: {issue['validation']})"
129
+ )
130
+
131
+ print()
132
+ print("## Notes")
133
+ print("- Standard Coverage exports are aggregate reports; they may not include affected URL examples.")
134
+ print("- Redirect and canonical buckets should be checked against sitemap URLs and live canonical tags.")
135
+
136
+
137
+ def main() -> None:
138
+ parser = argparse.ArgumentParser(description=__doc__)
139
+ parser.add_argument("export_dir", type=Path)
140
+ parser.add_argument("--json", action="store_true", help="Print machine-readable JSON")
141
+ args = parser.parse_args()
142
+
143
+ summary = load_export(args.export_dir)
144
+ if args.json:
145
+ print(json.dumps(summary, indent=2, sort_keys=True))
146
+ else:
147
+ print_markdown(summary)
148
+
149
+
150
+ if __name__ == "__main__":
151
+ main()
@@ -0,0 +1,289 @@
1
+ ---
2
+ name: open-source-publisher
3
+ description: Prepare an open-source repository for polished public publishing. Use when a user asks to publish, open-source, launch, polish, package, brand, or make a GitHub project presentable with a minimal project icon, social preview image, GitHub Pages landing page, standardized README, essential shields, CI/CD quality gates, release automation checks, and optional donation setup.
4
+ license: MIT
5
+ compatibility: Codex, Claude Code, Cursor, and other Agent Skills compatible tools. Requires a writable git repository; browser or image rendering tools are useful for visual validation.
6
+ metadata:
7
+ author: Oleg Koval
8
+ tags:
9
+ - open-source
10
+ - github
11
+ - readme
12
+ - branding
13
+ - github-pages
14
+ - ci
15
+ - release
16
+ - social-image
17
+ ---
18
+
19
+ # open-source-publisher
20
+
21
+ Use this skill to turn a useful OSS repository into a clean public package: recognizable icon, shareable social image, GitHub Pages site, standardized README, CI/CD hygiene, release readiness, and optional donation links.
22
+
23
+ ## Workflow
24
+
25
+ 1. Inspect the repository before editing:
26
+ - package/tooling files: `go.mod`, `package.json`, `pyproject.toml`, `Cargo.toml`, `Makefile`, etc.
27
+ - current README, docs, website files, images, workflows, releases, license, funding files
28
+ - existing product purpose, author, install paths, examples, and public URLs
29
+ 2. Ask only the choices that cannot be inferred:
30
+ - GitHub Pages style: `oldschool linux`, `terminal`, `modern`, `brutalist`, `glassmorphism`, `y2k`, `hacker`, or a custom style.
31
+ - Donations: `none`, `GitHub Sponsors`, `Ko-fi`, `Buy Me a Coffee`, `Open Collective`, `Thanks.dev`, or custom URL.
32
+ - If the repo has no clear product essence, ask for a one-sentence positioning statement.
33
+ 3. Implement in this order:
34
+ - minimal icon
35
+ - social preview image
36
+ - README standard
37
+ - GitHub Pages landing page
38
+ - CI/CD and release audit/fixes
39
+ - donation wiring, if requested
40
+ 4. Validate locally and with browser/screenshots when possible.
41
+ 5. Commit/push only when the user asks or the current task explicitly requires it.
42
+
43
+ ## Minimal Icon
44
+
45
+ Create a simple, recognizable SVG logo from the repository's essence. Prefer `logo.svg`; add `logo.png` only when a platform requires raster output.
46
+
47
+ Icon rules:
48
+
49
+ - Use one clear metaphor from the project domain, not a collage.
50
+ - Keep the mark readable at 32px.
51
+ - Prefer 1-2 shapes and 1-2 accent colors.
52
+ - Use a simple rounded tile only when it improves favicon readability.
53
+ - Avoid terminal window chrome, decorative dots, random badges, and center glyph clutter unless the project itself is a terminal/window tool.
54
+ - Avoid generic AI tells: glass effects, bokeh/orbs, over-layered gradients, busy shadows, and unrelated emojis.
55
+
56
+ Good icon pattern for sync/migration tools:
57
+
58
+ ```svg
59
+ <svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512" role="img" aria-labelledby="title desc">
60
+ <title id="title">Project logo</title>
61
+ <desc id="desc">Clean sync icon made from two circular arrows.</desc>
62
+ <defs>
63
+ <linearGradient id="topArrow" x1="142" y1="118" x2="392" y2="250" gradientUnits="userSpaceOnUse">
64
+ <stop offset="0%" stop-color="#22c55e"/>
65
+ <stop offset="100%" stop-color="#38bdf8"/>
66
+ </linearGradient>
67
+ <linearGradient id="bottomArrow" x1="370" y1="394" x2="120" y2="262" gradientUnits="userSpaceOnUse">
68
+ <stop offset="0%" stop-color="#fb7185"/>
69
+ <stop offset="100%" stop-color="#f59e0b"/>
70
+ </linearGradient>
71
+ </defs>
72
+ <rect width="512" height="512" rx="112" fill="#0d1117"/>
73
+ <rect x="42" y="42" width="428" height="428" rx="96" fill="#111827" stroke="#1f2937" stroke-width="8"/>
74
+ <g fill="none" stroke-linecap="round" stroke-linejoin="round">
75
+ <path d="M142 234c13-70 74-122 147-122 52 0 99 27 126 69" stroke="url(#topArrow)" stroke-width="42"/>
76
+ <path d="M389 118l35 67-75 4" stroke="url(#topArrow)" stroke-width="42"/>
77
+ <path d="M370 278c-13 70-74 122-147 122-52 0-99-27-126-69" stroke="url(#bottomArrow)" stroke-width="42"/>
78
+ <path d="M123 394l-35-67 75-4" stroke="url(#bottomArrow)" stroke-width="42"/>
79
+ </g>
80
+ </svg>
81
+ ```
82
+
83
+ Adapt the geometry and metaphor. Do not reuse the sync arrows for unrelated projects.
84
+
85
+ ## Social Image
86
+
87
+ Create a 1200x630 social preview image for GitHub, Twitter/X, Slack, and link unfurls.
88
+
89
+ Recommended files:
90
+
91
+ - `social-card.svg` as the editable source
92
+ - `social-card.png` rendered from the SVG when render tooling is available
93
+
94
+ Social image rules:
95
+
96
+ - Include project name, one clear value proposition, and 2-3 concrete capabilities.
97
+ - Keep the composition simple and calm. Large readable type beats dense feature lists.
98
+ - Use actual project language: commands, package name, supported platform, or primary workflow.
99
+ - Match the icon color system.
100
+ - Keep all text inside a safe margin of at least 64px.
101
+ - Use `og:image`, `twitter:image`, width/height meta tags, and meaningful alt text.
102
+
103
+ Render checks:
104
+
105
+ ```bash
106
+ rsvg-convert -w 1200 -h 630 social-card.svg -o social-card.png
107
+ file social-card.png
108
+ ```
109
+
110
+ Use `magick` or another renderer when `rsvg-convert` is unavailable.
111
+
112
+ ## README Standard
113
+
114
+ Shape the README like the house standard used for Go packages such as `slow-query-detector` and `dcli`.
115
+
116
+ Top block:
117
+
118
+ ```html
119
+ <p align="center">
120
+ <a href="..."><img src="..." alt="tests"></a>
121
+ <a href="..."><img src="..." alt="Go Report Card"></a>
122
+ <a href="..."><img src="..." alt="OpenSSF Scorecard"></a>
123
+ </p>
124
+
125
+ <p align="center">
126
+ <img src="./logo.svg" width="120" height="120" alt="project icon">
127
+ </p>
128
+
129
+ <h1 align="center">project-name</h1>
130
+
131
+ <p align="center">
132
+ Short product description<br>
133
+ <strong>One-line promise</strong>
134
+ </p>
135
+
136
+ ---
137
+ ```
138
+
139
+ Choose shields from the repo's tech:
140
+
141
+ - always: test workflow badge if a test workflow exists
142
+ - Go: Go Report Card, OpenSSF Scorecard
143
+ - Node/npm: npm version, npm downloads, test workflow, OpenSSF Scorecard
144
+ - Python: PyPI version, Python versions, test workflow, OpenSSF Scorecard
145
+ - coverage: only include if coverage service is configured
146
+ - release: only include if releases are automated and meaningful
147
+
148
+ Recommended README sections:
149
+
150
+ 1. Features
151
+ 2. Installation
152
+ 3. Quick Start
153
+ 4. Configuration
154
+ 5. Commands Reference or API Reference
155
+ 6. System Requirements
156
+ 7. Documentation
157
+ 8. Use Cases
158
+ 9. Architecture
159
+ 10. Project Status
160
+ 11. Security Notes
161
+ 12. Contributing
162
+ 13. License
163
+ 14. Author
164
+ 15. centered footer links
165
+
166
+ Rules:
167
+
168
+ - Keep badges centered and compact.
169
+ - Keep the icon centered below shields.
170
+ - Put a horizontal rule after the centered intro.
171
+ - Use current release/download URLs; prefer `/releases/latest/download/...` when stable asset names exist.
172
+ - Do not claim coverage, license, support, CI, or releases that are not actually present.
173
+ - Add or fix `LICENSE` before saying MIT/Apache/etc.
174
+
175
+ ## GitHub Pages
176
+
177
+ Create a simple essential GitHub Pages site when the project lacks one or the existing one is weak.
178
+
179
+ Ask the user to choose one style first:
180
+
181
+ - `oldschool linux`
182
+ - `terminal`
183
+ - `modern`
184
+ - `brutalist`
185
+ - `glassmorphism`
186
+ - `y2k`
187
+ - `hacker`
188
+ - custom style
189
+
190
+ Required page content:
191
+
192
+ - project name and icon
193
+ - one-sentence value proposition
194
+ - author link
195
+ - install/download instructions
196
+ - 2-4 short examples
197
+ - feature summary
198
+ - links to GitHub, README, releases, issues
199
+ - SEO meta description and keywords
200
+ - Open Graph and Twitter meta tags
201
+ - social image reference
202
+ - footer with license and optional donation/badge links
203
+
204
+ Implementation defaults:
205
+
206
+ - Use a static `index.html` unless the repo already has a site framework.
207
+ - Add `CNAME` only when the user gives a domain.
208
+ - Add `.github/workflows/pages.yml` when Pages uses GitHub Actions or no deploy path exists.
209
+ - Avoid marketing fluff and oversized hero sections for developer tools. Make the first viewport useful.
210
+ - Use system UI fonts for body text and monospace only for commands, labels, or terminal-specific elements.
211
+
212
+ ## CI/CD And Release Audit
213
+
214
+ Check whether the repository has:
215
+
216
+ - formatter check
217
+ - linter/static analysis
218
+ - tests
219
+ - build/package check
220
+ - security scan or OpenSSF Scorecard where appropriate
221
+ - release automation
222
+ - docs/site-only path filters when release runs on `main`
223
+
224
+ For Go projects, prefer:
225
+
226
+ ```yaml
227
+ - go test ./... -race
228
+ - go vet ./...
229
+ - gofmt check
230
+ - staticcheck ./...
231
+ - go build ./...
232
+ ```
233
+
234
+ For Node projects, prefer existing package manager scripts:
235
+
236
+ ```bash
237
+ npm ci
238
+ npm run lint
239
+ npm test
240
+ npm run build
241
+ ```
242
+
243
+ Release automation rules:
244
+
245
+ - Inspect existing release flow before changing it.
246
+ - Do not create releases for docs/site-only changes.
247
+ - Make Homebrew/package formulas update from real release artifacts and checksums.
248
+ - Use least-privilege secrets and document required secret names.
249
+ - If automation pushes tags, guard against rerun/version reuse.
250
+
251
+ ## Donations
252
+
253
+ Ask whether the user wants donations enabled.
254
+
255
+ If yes:
256
+
257
+ 1. Ask for provider and URL/handle if not inferable.
258
+ 2. Add `.github/FUNDING.yml` for GitHub-supported providers.
259
+ 3. Add a short README Support section or footer link.
260
+ 4. Add site footer/link only if the project has a site.
261
+ 5. Do not invent payment handles.
262
+
263
+ Provider hints:
264
+
265
+ ```yaml
266
+ github: username
267
+ ko_fi: handle
268
+ custom:
269
+ - https://example.com/support
270
+ ```
271
+
272
+ ## Validation
273
+
274
+ Run the checks that match the edits:
275
+
276
+ - SVG syntax: `xmllint --noout logo.svg social-card.svg`
277
+ - Render social image: `rsvg-convert -w 1200 -h 630 social-card.svg -o social-card.png`
278
+ - README links and badge URLs where practical: `curl -I`
279
+ - Site render: local static server plus browser/screenshot when available
280
+ - Repo tests/build/lint
281
+ - Workflow YAML parse, for example with Ruby: `ruby -e 'require "yaml"; YAML.load_file(".github/workflows/ci.yml")'`
282
+ - `git diff --check`
283
+
284
+ Before final response, state:
285
+
286
+ - files changed
287
+ - validation commands run
288
+ - release/donation caveats
289
+ - any secrets the user must configure
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "olko-open-source-publisher",
3
+ "description": "Prepare an open-source repository for public publishing with a minimal icon, social preview image, GitHub Pages site, README standardization, CI/CD checks, release hygiene, and optional donation setup.",
4
+ "skills": "./skills"
5
+ }