@olegkoval/agent-skills 1.0.0-beta.1 → 1.0.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/.claude-plugin/marketplace.json +7 -49
- package/.claude-plugin/plugin.json +23 -0
- package/.cursor-plugin/index.json +1 -1
- package/README.md +161 -11
- package/catalog/skills.json +1 -1
- package/docs/skill-anatomy.md +191 -0
- package/package.json +2 -1
- package/packages/marketing/viral-launch/adapters/claude/plugin.json +2 -7
- package/packages/marketing/viral-launch/adapters/claude/skills/viral-launch/SKILL.md +103 -0
- package/packages/music/fill-music-player/adapters/claude/plugin.json +3 -8
- package/packages/music/fill-music-player/adapters/claude/skills/fill-music-player/SKILL.md +110 -0
- package/packages/photography/gallery/adapters/claude/plugin.json +2 -7
- package/packages/photography/gallery/adapters/claude/skills/gallery/SKILL.md +235 -0
- package/packages/software-development/changelog-generator/adapters/claude/plugin.json +2 -7
- package/packages/software-development/changelog-generator/adapters/claude/skills/changelog-generator/SKILL.md +113 -0
- package/packages/software-development/docs-index-keeper/adapters/claude/plugin.json +3 -8
- package/packages/software-development/docs-index-keeper/adapters/claude/skills/docs-index-keeper/SKILL.md +64 -0
- package/packages/software-development/gh-cli/adapters/claude/plugin.json +2 -7
- package/packages/software-development/gh-cli/adapters/claude/skills/gh-cli/SKILL.md +2198 -0
- package/packages/software-development/git-commit/adapters/claude/plugin.json +2 -7
- package/packages/software-development/git-commit/adapters/claude/skills/git-commit/SKILL.md +133 -0
- package/packages/software-development/product-builder/adapters/claude/plugin.json +3 -8
- package/packages/software-development/product-builder/adapters/claude/skills/product-builder/SKILL.md +223 -0
- package/packages/software-development/promptctl/adapters/claude/plugin.json +2 -7
- package/packages/software-development/promptctl/adapters/claude/skills/promptctl/SKILL.md +88 -0
- package/packages/software-development/semantic-release-beta/adapters/claude/plugin.json +3 -8
- package/packages/software-development/semantic-release-beta/adapters/claude/skills/semantic-release-beta/SKILL.md +57 -0
- package/scripts/build-adapters.sh +55 -7
- package/scripts/validate-catalog.sh +30 -1
|
@@ -1,58 +1,16 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "agent
|
|
2
|
+
"name": "olko-agent-skills",
|
|
3
3
|
"owner": {
|
|
4
4
|
"name": "Oleg Koval"
|
|
5
5
|
},
|
|
6
|
+
"metadata": {
|
|
7
|
+
"description": "Agent-agnostic skill catalog for Codex, Claude, Cursor, and other skill-aware tools."
|
|
8
|
+
},
|
|
6
9
|
"plugins": [
|
|
7
10
|
{
|
|
8
|
-
"name": "olko
|
|
9
|
-
"source": "./
|
|
10
|
-
"description": "
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"name": "olko:semantic-release-beta",
|
|
14
|
-
"source": "./packages/software-development/semantic-release-beta/adapters/claude",
|
|
15
|
-
"description": "Set up semantic-release-npm-github-publish with stable main releases and prerelease beta releases on a beta branch."
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"name": "olko:changelog-generator",
|
|
19
|
-
"source": "./packages/software-development/changelog-generator/adapters/claude",
|
|
20
|
-
"description": "Generate user-facing changelogs and release notes from git history."
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"name": "olko:gh-cli",
|
|
24
|
-
"source": "./packages/software-development/gh-cli/adapters/claude",
|
|
25
|
-
"description": "Use the GitHub CLI effectively for repositories, PRs, Actions, releases, and more."
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"name": "olko:git-commit",
|
|
29
|
-
"source": "./packages/software-development/git-commit/adapters/claude",
|
|
30
|
-
"description": "Create conventional commits with diff-aware staging and message generation."
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"name": "olko:gallery",
|
|
34
|
-
"source": "./packages/photography/gallery/adapters/claude",
|
|
35
|
-
"description": "Create photo galleries with AI-assisted layout curation and sequencing."
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"name": "olko:promptctl",
|
|
39
|
-
"source": "./packages/software-development/promptctl/adapters/claude",
|
|
40
|
-
"description": "Use promptctl for template-based prompt engineering, scoring, and workflow automation."
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"name": "olko:fill-music-player",
|
|
44
|
-
"source": "./packages/music/fill-music-player/adapters/claude",
|
|
45
|
-
"description": "Fill a portable music player with a curated random selection from a source music library while balancing formats, artists, albums, and capacity."
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"name": "olko:product-builder",
|
|
49
|
-
"source": "./packages/software-development/product-builder/adapters/claude",
|
|
50
|
-
"description": "Build a full-stack web application or SaaS product from a user description using production-oriented defaults."
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"name": "olko:viral-launch",
|
|
54
|
-
"source": "./packages/marketing/viral-launch/adapters/claude",
|
|
55
|
-
"description": "Set up a project repository and launch plan for shareable marketing, public launch readiness, and growth loops."
|
|
11
|
+
"name": "olko-agent-skills",
|
|
12
|
+
"source": "./",
|
|
13
|
+
"description": "Agent-agnostic skill catalog for Codex, Claude, Cursor, and other skill-aware tools."
|
|
56
14
|
}
|
|
57
15
|
]
|
|
58
16
|
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "olko-agent-skills",
|
|
3
|
+
"description": "Agent-agnostic skill catalog for Codex, Claude, Cursor, and other skill-aware tools.",
|
|
4
|
+
"version": "1.0.0-beta.1",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Oleg Koval"
|
|
7
|
+
},
|
|
8
|
+
"homepage": "https://github.com/oleg-koval/agent-skills",
|
|
9
|
+
"repository": "https://github.com/oleg-koval/agent-skills",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"skills": [
|
|
12
|
+
"./packages/software-development/docs-index-keeper",
|
|
13
|
+
"./packages/software-development/semantic-release-beta",
|
|
14
|
+
"./packages/software-development/changelog-generator",
|
|
15
|
+
"./packages/software-development/gh-cli",
|
|
16
|
+
"./packages/software-development/git-commit",
|
|
17
|
+
"./packages/photography/gallery",
|
|
18
|
+
"./packages/software-development/promptctl",
|
|
19
|
+
"./packages/music/fill-music-player",
|
|
20
|
+
"./packages/software-development/product-builder",
|
|
21
|
+
"./packages/marketing/viral-launch"
|
|
22
|
+
]
|
|
23
|
+
}
|
package/README.md
CHANGED
|
@@ -27,29 +27,128 @@ These skills are opinionated by design. They encode working defaults, preferred
|
|
|
27
27
|
- Keep catalogs neutral and machine-readable.
|
|
28
28
|
- Add marketplace-specific metadata on top of the canonical package, not instead of it.
|
|
29
29
|
|
|
30
|
-
##
|
|
30
|
+
## Quick Start
|
|
31
|
+
|
|
32
|
+
<details>
|
|
33
|
+
<summary><b>Codex</b></summary>
|
|
34
|
+
|
|
35
|
+
Install all package symlinks into your local Codex skills directory:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
git clone https://github.com/oleg-koval/agent-skills.git
|
|
39
|
+
cd agent-skills
|
|
40
|
+
./scripts/install-codex-symlinks.sh
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Then mention a lookup name in a new Codex session:
|
|
44
|
+
|
|
45
|
+
```text
|
|
46
|
+
Use the olko:semantic-release-beta skill to add prereleases on a beta branch.
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
</details>
|
|
50
|
+
|
|
51
|
+
<details>
|
|
52
|
+
<summary><b>Claude Code</b></summary>
|
|
53
|
+
|
|
54
|
+
The repository includes a generated Claude marketplace manifest at `.claude-plugin/marketplace.json`.
|
|
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:
|
|
64
|
+
|
|
65
|
+
```text
|
|
66
|
+
/plugin marketplace add oleg-koval/agent-skills
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
Then install the catalog plugin:
|
|
70
|
+
|
|
71
|
+
```text
|
|
72
|
+
/plugin install olko-agent-skills@olko-agent-skills
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
Live Claude marketplace install is not yet validated for this repo.
|
|
76
|
+
|
|
77
|
+
</details>
|
|
78
|
+
|
|
79
|
+
<details>
|
|
80
|
+
<summary><b>Cursor</b></summary>
|
|
81
|
+
|
|
82
|
+
The repository includes a generated Cursor plugin index at `.cursor-plugin/index.json` and per-package Cursor adapters under `packages/*/*/adapters/cursor/`.
|
|
83
|
+
|
|
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.
|
|
85
|
+
|
|
86
|
+
</details>
|
|
87
|
+
|
|
88
|
+
<details>
|
|
89
|
+
<summary><b>GitHub Copilot</b></summary>
|
|
90
|
+
|
|
91
|
+
Use the generated repository instructions and prompt files:
|
|
92
|
+
|
|
93
|
+
```text
|
|
94
|
+
.github/copilot-instructions.md
|
|
95
|
+
.github/prompts/*.prompt.md
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
These files are generated from `catalog/skills.json` and can be copied into a repository that should use the same skill guidance.
|
|
99
|
+
|
|
100
|
+
</details>
|
|
101
|
+
|
|
102
|
+
<details>
|
|
103
|
+
<summary><b>Other agents</b></summary>
|
|
104
|
+
|
|
105
|
+
Skills are plain Markdown. Use the canonical package file directly:
|
|
106
|
+
|
|
107
|
+
```text
|
|
108
|
+
packages/{category}/{skill}/SKILL.md
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
Agent-specific wrappers live under:
|
|
112
|
+
|
|
113
|
+
```text
|
|
114
|
+
packages/{category}/{skill}/adapters/
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
</details>
|
|
118
|
+
|
|
119
|
+
## All 10 Skills
|
|
120
|
+
|
|
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.
|
|
31
122
|
|
|
32
123
|
### Software development
|
|
33
124
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
-
|
|
37
|
-
- `
|
|
38
|
-
-
|
|
39
|
-
- `
|
|
40
|
-
-
|
|
125
|
+
| Skill | What It Does | Use When |
|
|
126
|
+
|-------|-------------|----------|
|
|
127
|
+
| [docs-index-keeper](packages/software-development/docs-index-keeper/SKILL.md) | Keeps a Markdown docs index in sync through pre-commit, CI, or one-off maintenance flows | A repo has `docs/` and needs `docs/README.md` or another Markdown index updated automatically |
|
|
128
|
+
| [semantic-release-beta](packages/software-development/semantic-release-beta/SKILL.md) | Sets up `semantic-release-npm-github-publish` with stable `main` releases and beta prereleases | A Node package needs stable npm publishing plus beta prereleases from a `beta` branch |
|
|
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
|
+
| [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
|
+
| [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
|
+
| [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
|
+
| [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 |
|
|
41
134
|
|
|
42
135
|
### Music
|
|
43
136
|
|
|
44
|
-
|
|
137
|
+
| Skill | What It Does | Use When |
|
|
138
|
+
|-------|-------------|----------|
|
|
139
|
+
| [fill-music-player](packages/music/fill-music-player/SKILL.md) | Fills a portable music player with a curated random music selection while balancing formats, artists, albums, and capacity | Copying music from a NAS or local library to a Walkman, iPod, USB drive, or similar device |
|
|
45
140
|
|
|
46
141
|
### Marketing
|
|
47
142
|
|
|
48
|
-
|
|
143
|
+
| Skill | What It Does | Use When |
|
|
144
|
+
|-------|-------------|----------|
|
|
145
|
+
| [viral-launch](packages/marketing/viral-launch/SKILL.md) | Sets up a project repository and launch plan for shareable marketing, public launch readiness, and growth loops | Preparing a repo, product, open-source package, waitlist, or creator tool for public launch |
|
|
49
146
|
|
|
50
147
|
### Photography
|
|
51
148
|
|
|
52
|
-
|
|
149
|
+
| Skill | What It Does | Use When |
|
|
150
|
+
|-------|-------------|----------|
|
|
151
|
+
| [gallery](packages/photography/gallery/SKILL.md) | Creates photo galleries with AI-assisted layout curation and sequencing | Building a gallery from photos or planning photo layout, sequencing, and curation |
|
|
53
152
|
|
|
54
153
|
## How to use skills
|
|
55
154
|
|
|
@@ -90,6 +189,57 @@ When adding or changing a skill:
|
|
|
90
189
|
|
|
91
190
|
These are generated from the neutral package inventory and kept in the repo for platform-specific consumption.
|
|
92
191
|
|
|
192
|
+
## How Skills Work
|
|
193
|
+
|
|
194
|
+
Every package follows a consistent anatomy:
|
|
195
|
+
|
|
196
|
+
```text
|
|
197
|
+
packages/{category}/{skill}/
|
|
198
|
+
├── SKILL.md # Required canonical skill definition
|
|
199
|
+
├── references/ # Optional supporting material loaded only when needed
|
|
200
|
+
└── adapters/ # Optional agent-specific wrappers
|
|
201
|
+
├── codex/
|
|
202
|
+
├── claude/
|
|
203
|
+
└── cursor/
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
Key design choices:
|
|
207
|
+
|
|
208
|
+
- Process over prose: skills are workflows agents follow, not generic reference essays.
|
|
209
|
+
- Progressive disclosure: `SKILL.md` is the entry point; supporting files load only when needed.
|
|
210
|
+
- Adapter separation: Codex, Claude, Cursor, and Copilot metadata wrap the canonical package instead of forking it.
|
|
211
|
+
- Verifiable changes: catalog and manifest changes should pass `./scripts/validate-catalog.sh`.
|
|
212
|
+
|
|
213
|
+
See [docs/skill-anatomy.md](docs/skill-anatomy.md) for the package format.
|
|
214
|
+
|
|
215
|
+
## Project Structure
|
|
216
|
+
|
|
217
|
+
```text
|
|
218
|
+
agent-skills/
|
|
219
|
+
├── packages/ # Canonical skill packages
|
|
220
|
+
│ ├── software-development/
|
|
221
|
+
│ │ ├── docs-index-keeper/
|
|
222
|
+
│ │ ├── semantic-release-beta/
|
|
223
|
+
│ │ ├── changelog-generator/
|
|
224
|
+
│ │ ├── gh-cli/
|
|
225
|
+
│ │ ├── git-commit/
|
|
226
|
+
│ │ ├── promptctl/
|
|
227
|
+
│ │ └── product-builder/
|
|
228
|
+
│ ├── music/
|
|
229
|
+
│ │ └── fill-music-player/
|
|
230
|
+
│ ├── marketing/
|
|
231
|
+
│ │ └── viral-launch/
|
|
232
|
+
│ └── photography/
|
|
233
|
+
│ └── gallery/
|
|
234
|
+
├── catalog/ # Machine-readable package inventory
|
|
235
|
+
├── collections/ # Grouped package bundles
|
|
236
|
+
├── scripts/ # Build, validation, sync, and install helpers
|
|
237
|
+
├── .claude-plugin/ # Generated Claude marketplace manifest
|
|
238
|
+
├── .cursor-plugin/ # Generated Cursor plugin index
|
|
239
|
+
├── .github/prompts/ # Generated GitHub Copilot prompt files
|
|
240
|
+
└── docs/ # Contributor and package format docs
|
|
241
|
+
```
|
|
242
|
+
|
|
93
243
|
## Install and test
|
|
94
244
|
|
|
95
245
|
### Codex
|
package/catalog/skills.json
CHANGED
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
# Skill Anatomy
|
|
2
|
+
|
|
3
|
+
This document describes the structure and format of skill packages in this repository. Use it when adding a new package, reviewing an existing skill, or updating generated adapters.
|
|
4
|
+
|
|
5
|
+
## File Location
|
|
6
|
+
|
|
7
|
+
Every skill lives in its own category directory under `packages/`:
|
|
8
|
+
|
|
9
|
+
```text
|
|
10
|
+
packages/
|
|
11
|
+
category-name/
|
|
12
|
+
skill-name/
|
|
13
|
+
SKILL.md # Required canonical skill definition
|
|
14
|
+
references/ # Optional supporting material loaded on demand
|
|
15
|
+
adapters/ # Optional agent-specific wrappers
|
|
16
|
+
codex/
|
|
17
|
+
claude/
|
|
18
|
+
cursor/
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Examples:
|
|
22
|
+
|
|
23
|
+
```text
|
|
24
|
+
packages/software-development/semantic-release-beta/SKILL.md
|
|
25
|
+
packages/music/fill-music-player/SKILL.md
|
|
26
|
+
packages/photography/gallery/SKILL.md
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## SKILL.md Format
|
|
30
|
+
|
|
31
|
+
### Frontmatter
|
|
32
|
+
|
|
33
|
+
Every `SKILL.md` starts with YAML frontmatter:
|
|
34
|
+
|
|
35
|
+
```yaml
|
|
36
|
+
---
|
|
37
|
+
name: skill-name-with-hyphens
|
|
38
|
+
description: Brief statement of what the skill does. Use when specific trigger conditions apply.
|
|
39
|
+
license: MIT
|
|
40
|
+
compatibility: Codex, Claude Code, Cursor, GitHub Copilot, and other Agent Skills compatible tools.
|
|
41
|
+
metadata:
|
|
42
|
+
author: Oleg Koval
|
|
43
|
+
tags:
|
|
44
|
+
- tag-name
|
|
45
|
+
---
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Rules:
|
|
49
|
+
|
|
50
|
+
- `name`: lowercase, hyphen-separated, and matching the package directory name.
|
|
51
|
+
- `description`: concise activation guidance; include what the skill does and when to use it.
|
|
52
|
+
- `license`: include when the source package carries an explicit license.
|
|
53
|
+
- `compatibility`: state supported agent/tool assumptions and any required local tooling.
|
|
54
|
+
- `metadata.tags`: keep tags practical for catalog discovery.
|
|
55
|
+
|
|
56
|
+
The frontmatter feeds generated manifests and adapter files, so keep it accurate and avoid long process summaries.
|
|
57
|
+
|
|
58
|
+
## Standard Sections
|
|
59
|
+
|
|
60
|
+
Use sections that make the skill executable by an agent. Exact headings can vary by workflow, but strong skills usually include:
|
|
61
|
+
|
|
62
|
+
```markdown
|
|
63
|
+
# Skill Title
|
|
64
|
+
|
|
65
|
+
## Overview
|
|
66
|
+
One or two sentences explaining the outcome the skill produces.
|
|
67
|
+
|
|
68
|
+
## When to Use
|
|
69
|
+
- Concrete trigger phrases or task types
|
|
70
|
+
- Exclusions when the skill should not run
|
|
71
|
+
|
|
72
|
+
## Workflow
|
|
73
|
+
Numbered steps the agent should follow.
|
|
74
|
+
|
|
75
|
+
## Commands
|
|
76
|
+
Exact commands, flags, or file paths when relevant.
|
|
77
|
+
|
|
78
|
+
## Verification
|
|
79
|
+
- [ ] Evidence that proves the work completed successfully
|
|
80
|
+
- [ ] Tests, build output, generated files, or manual checks to report
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
## Section Purposes
|
|
84
|
+
|
|
85
|
+
### Overview
|
|
86
|
+
|
|
87
|
+
State the skill's job and expected outcome. Keep this short enough that the workflow remains the source of truth.
|
|
88
|
+
|
|
89
|
+
### When to Use
|
|
90
|
+
|
|
91
|
+
List concrete triggers. Good triggers are user phrases, repository conditions, or task types. Avoid vague statements such as "use for better quality."
|
|
92
|
+
|
|
93
|
+
### Workflow
|
|
94
|
+
|
|
95
|
+
The workflow is the core of the skill. It should be specific enough for an agent to execute without inventing missing steps.
|
|
96
|
+
|
|
97
|
+
Good:
|
|
98
|
+
|
|
99
|
+
```text
|
|
100
|
+
Run `./scripts/validate-catalog.sh` after changing catalog paths.
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
Bad:
|
|
104
|
+
|
|
105
|
+
```text
|
|
106
|
+
Make sure the catalog is good.
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
### Commands
|
|
110
|
+
|
|
111
|
+
Include exact commands when a tool is part of the workflow. Prefer existing repo scripts over one-off shell fragments.
|
|
112
|
+
|
|
113
|
+
### Verification
|
|
114
|
+
|
|
115
|
+
Verification is the exit criteria. Every item should be evidence-backed: test output, command output, generated files, screenshots, or a documented manual check.
|
|
116
|
+
|
|
117
|
+
## Supporting Files
|
|
118
|
+
|
|
119
|
+
Create supporting files only when they reduce the main `SKILL.md` size or keep specialized detail out of the primary workflow.
|
|
120
|
+
|
|
121
|
+
Use `references/` for:
|
|
122
|
+
|
|
123
|
+
- long checklists
|
|
124
|
+
- example templates
|
|
125
|
+
- provider-specific notes
|
|
126
|
+
- detailed command references
|
|
127
|
+
|
|
128
|
+
Keep short operational guidance in `SKILL.md` so the skill remains self-contained.
|
|
129
|
+
|
|
130
|
+
## Adapters
|
|
131
|
+
|
|
132
|
+
Adapters are wrappers for agent-specific packaging. They should point back to the canonical skill package and avoid duplicating business logic.
|
|
133
|
+
|
|
134
|
+
Current adapter targets:
|
|
135
|
+
|
|
136
|
+
- `adapters/codex/`
|
|
137
|
+
- `adapters/claude/`
|
|
138
|
+
- `adapters/cursor/`
|
|
139
|
+
- generated GitHub Copilot prompt files in `.github/prompts/`
|
|
140
|
+
|
|
141
|
+
Claude plugin and marketplace identifiers must be kebab-case. Keep `olko:*` names for Codex lookup names, but do not use colons or spaces in Claude marketplace/plugin names.
|
|
142
|
+
|
|
143
|
+
After changing a package name, description, category, path, tags, or adapter support, update `catalog/skills.json` and rebuild generated files:
|
|
144
|
+
|
|
145
|
+
```bash
|
|
146
|
+
./scripts/build-adapters.sh
|
|
147
|
+
./scripts/validate-catalog.sh
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
## Catalog Requirements
|
|
151
|
+
|
|
152
|
+
Each package must have a matching entry in `catalog/skills.json`:
|
|
153
|
+
|
|
154
|
+
```json
|
|
155
|
+
{
|
|
156
|
+
"name": "skill-name",
|
|
157
|
+
"lookupName": "olko:skill-name",
|
|
158
|
+
"category": "software-development",
|
|
159
|
+
"path": "packages/software-development/skill-name",
|
|
160
|
+
"description": "Short catalog description.",
|
|
161
|
+
"tags": ["tag"],
|
|
162
|
+
"adapters": ["codex", "claude", "cursor", "copilot"]
|
|
163
|
+
}
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
Rules:
|
|
167
|
+
|
|
168
|
+
- `lookupName` uses the `olko:` prefix.
|
|
169
|
+
- `path` points at the canonical package directory, not an adapter.
|
|
170
|
+
- `description` should be shorter than the full frontmatter description.
|
|
171
|
+
- `adapters` must reflect generated or supported adapter targets.
|
|
172
|
+
|
|
173
|
+
## Writing Principles
|
|
174
|
+
|
|
175
|
+
1. Process over knowledge. Skills are workflows, not essays.
|
|
176
|
+
2. Specific over general. Name commands, paths, files, and evidence.
|
|
177
|
+
3. Evidence over assumption. Verification should require proof.
|
|
178
|
+
4. Canonical package first. Update `SKILL.md` before generated adapters.
|
|
179
|
+
5. Progressive disclosure. Move long detail into `references/` only when needed.
|
|
180
|
+
6. Minimal scope. Add only the sections that change agent behavior.
|
|
181
|
+
|
|
182
|
+
## Cross-Skill References
|
|
183
|
+
|
|
184
|
+
Reference other skills by lookup name or package path instead of duplicating content:
|
|
185
|
+
|
|
186
|
+
```markdown
|
|
187
|
+
Use `olko:git-commit` when the user asks to commit the resulting changes.
|
|
188
|
+
See `packages/software-development/semantic-release-beta/SKILL.md` for beta release setup.
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
Do not copy another skill's workflow into a new package unless the behavior intentionally diverges.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@olegkoval/agent-skills",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"files": [
|
|
22
22
|
"catalog",
|
|
23
23
|
"collections",
|
|
24
|
+
"docs",
|
|
24
25
|
"packages",
|
|
25
26
|
".claude-plugin",
|
|
26
27
|
".cursor-plugin",
|
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "olko
|
|
2
|
+
"name": "olko-viral-launch",
|
|
3
3
|
"description": "Set up a project repository and launch plan for shareable marketing, public launch readiness, and growth loops.",
|
|
4
|
-
"skills":
|
|
5
|
-
{
|
|
6
|
-
"name": "olko:viral-launch",
|
|
7
|
-
"source": "../../SKILL.md"
|
|
8
|
-
}
|
|
9
|
-
]
|
|
4
|
+
"skills": "./skills"
|
|
10
5
|
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
<!-- Generated by scripts/build-adapters.sh. Do not edit directly. -->
|
|
2
|
+
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
name: viral-launch
|
|
6
|
+
description: Set up a project repository and launch plan for shareable marketing, public launch readiness, and growth loops without pretending virality is guaranteed.
|
|
7
|
+
compatibility: Codex, Claude Code, Cursor, GitHub Copilot, and other Agent Skills compatible tools. Useful for product repos, open-source packages, SaaS launches, waitlists, and creator tools.
|
|
8
|
+
metadata:
|
|
9
|
+
author: Oleg Koval
|
|
10
|
+
tags:
|
|
11
|
+
- marketing
|
|
12
|
+
- launch
|
|
13
|
+
- growth
|
|
14
|
+
- virality
|
|
15
|
+
- positioning
|
|
16
|
+
- github
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
# viral-launch
|
|
21
|
+
|
|
22
|
+
Use this skill when a user wants to launch a project, make a repo marketable, improve discoverability, or build shareable launch assets.
|
|
23
|
+
|
|
24
|
+
This skill is opinionated: virality is not a promise. The goal is to make the project easy to understand, easy to share, and easy to act on.
|
|
25
|
+
|
|
26
|
+
## Trigger phrases
|
|
27
|
+
|
|
28
|
+
- make this repo launch-ready
|
|
29
|
+
- set this up to go viral
|
|
30
|
+
- prepare a product launch
|
|
31
|
+
- create marketing assets for this project
|
|
32
|
+
- improve the README for launch
|
|
33
|
+
- prepare Product Hunt / Hacker News / X / LinkedIn launch copy
|
|
34
|
+
- set up an open-source repo for growth
|
|
35
|
+
|
|
36
|
+
## Workflow
|
|
37
|
+
|
|
38
|
+
1. Inspect the project first:
|
|
39
|
+
- product purpose
|
|
40
|
+
- target user
|
|
41
|
+
- core use case
|
|
42
|
+
- current README and docs
|
|
43
|
+
- install or demo path
|
|
44
|
+
- screenshots, videos, or visual proof
|
|
45
|
+
- analytics or waitlist capture if present
|
|
46
|
+
2. Define the launch angle in one sentence:
|
|
47
|
+
- who it is for
|
|
48
|
+
- what painful job it solves
|
|
49
|
+
- why now
|
|
50
|
+
- what makes it different
|
|
51
|
+
3. Make the repo launch-ready:
|
|
52
|
+
- clear README headline and first paragraph
|
|
53
|
+
- demo or quickstart within the first screen
|
|
54
|
+
- installation steps that work from a clean checkout
|
|
55
|
+
- screenshots, GIF, or demo link where possible
|
|
56
|
+
- feature list based on outcomes, not implementation trivia
|
|
57
|
+
- examples for the highest-intent use cases
|
|
58
|
+
- badges only when they add trust
|
|
59
|
+
- license, contributing notes, and issue templates when useful
|
|
60
|
+
4. Create launch assets:
|
|
61
|
+
- short tagline
|
|
62
|
+
- 1-paragraph announcement
|
|
63
|
+
- 5 social post variants
|
|
64
|
+
- Product Hunt tagline and description when relevant
|
|
65
|
+
- Hacker News title candidates when relevant
|
|
66
|
+
- launch email or DM when relevant
|
|
67
|
+
- creator/influencer outreach list criteria, not spam copy
|
|
68
|
+
5. Design share loops:
|
|
69
|
+
- a reason users would show the output to someone else
|
|
70
|
+
- a public artifact worth linking
|
|
71
|
+
- a before/after demo
|
|
72
|
+
- a template, benchmark, checklist, or gallery that can travel
|
|
73
|
+
- referral or waitlist loop only if it fits the product
|
|
74
|
+
6. Define proof and metrics:
|
|
75
|
+
- activation event
|
|
76
|
+
- share event
|
|
77
|
+
- conversion event
|
|
78
|
+
- retention proxy
|
|
79
|
+
- launch-day dashboard or simple tracking checklist
|
|
80
|
+
7. Keep claims grounded:
|
|
81
|
+
- do not invent traction, logos, benchmarks, testimonials, or user counts
|
|
82
|
+
- mark assumptions explicitly
|
|
83
|
+
- prefer specific proof over hype
|
|
84
|
+
- avoid dark patterns and spam
|
|
85
|
+
|
|
86
|
+
## Output format
|
|
87
|
+
|
|
88
|
+
When planning, produce:
|
|
89
|
+
|
|
90
|
+
- Launch angle
|
|
91
|
+
- Repo changes
|
|
92
|
+
- Launch assets
|
|
93
|
+
- Share loops
|
|
94
|
+
- Metrics
|
|
95
|
+
- Risks and assumptions
|
|
96
|
+
- Next actions
|
|
97
|
+
|
|
98
|
+
When editing a repository, make the smallest useful set of changes first, then validate by reading the README from a new user's perspective.
|
|
99
|
+
|
|
100
|
+
## References
|
|
101
|
+
|
|
102
|
+
- `references/launch-checklist.md`
|
|
103
|
+
- `references/external-skills.md`
|
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "olko
|
|
3
|
-
"description": "Fill a portable music player with a curated random selection from a source music library.",
|
|
4
|
-
"skills":
|
|
5
|
-
{
|
|
6
|
-
"name": "olko:fill-music-player",
|
|
7
|
-
"source": "../../SKILL.md"
|
|
8
|
-
}
|
|
9
|
-
]
|
|
2
|
+
"name": "olko-fill-music-player",
|
|
3
|
+
"description": "Fill a portable music player with a curated random selection from a source music library while balancing formats, artists, albums, and capacity.",
|
|
4
|
+
"skills": "./skills"
|
|
10
5
|
}
|