@olegkoval/agent-skills 1.11.0 → 1.12.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.
@@ -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.10.1",
4
+ "version": "1.11.1",
5
5
  "author": {
6
6
  "name": "Oleg Koval"
7
7
  },
@@ -105,6 +105,27 @@ Rules:
105
105
 
106
106
  Create a simple, recognizable SVG logo from the repository's essence. Prefer `logo.svg` and also render `logo.png` so the icon can be reused in README assets, release artifacts, and platform-specific previews.
107
107
 
108
+ Use the external `logo-generator` skill first for icon generation when it is installed (see `logo-generator` Installation below). If it is not installed, follow the manual SVG guidance below and commit both the editable SVG and rendered PNG when practical.
109
+
110
+ ### `logo-generator` Installation
111
+
112
+ The `logo-generator` skill is external and is not bundled with this repository. Install it separately from <https://github.com/op7418/logo-generator-skill> before relying on it:
113
+
114
+ ```bash
115
+ npx skills add https://github.com/op7418/logo-generator-skill.git
116
+ ```
117
+
118
+ If automatic installation is unavailable, clone it into the Claude skills directory:
119
+
120
+ ```bash
121
+ git clone https://github.com/op7418/logo-generator-skill.git ~/.claude/skills/logo-generator
122
+ cd ~/.claude/skills/logo-generator
123
+ pip install -r requirements.txt
124
+ cp .env.example .env
125
+ ```
126
+
127
+ Then add `GEMINI_API_KEY` to `.env` and restart the agent runtime so the skill is discoverable.
128
+
108
129
  Icon rules:
109
130
 
110
131
  - Use one clear metaphor from the project domain, not a collage.
@@ -104,6 +104,27 @@ Rules:
104
104
 
105
105
  Create a simple, recognizable SVG logo from the repository's essence. Prefer `logo.svg` and also render `logo.png` so the icon can be reused in README assets, release artifacts, and platform-specific previews.
106
106
 
107
+ Use the external `logo-generator` skill first for icon generation when it is installed (see `logo-generator` Installation below). If it is not installed, follow the manual SVG guidance below and commit both the editable SVG and rendered PNG when practical.
108
+
109
+ ### `logo-generator` Installation
110
+
111
+ The `logo-generator` skill is external and is not bundled with this repository. Install it separately from <https://github.com/op7418/logo-generator-skill> before relying on it:
112
+
113
+ ```bash
114
+ npx skills add https://github.com/op7418/logo-generator-skill.git
115
+ ```
116
+
117
+ If automatic installation is unavailable, clone it into the Claude skills directory:
118
+
119
+ ```bash
120
+ git clone https://github.com/op7418/logo-generator-skill.git ~/.claude/skills/logo-generator
121
+ cd ~/.claude/skills/logo-generator
122
+ pip install -r requirements.txt
123
+ cp .env.example .env
124
+ ```
125
+
126
+ Then add `GEMINI_API_KEY` to `.env` and restart the agent runtime so the skill is discoverable.
127
+
107
128
  Icon rules:
108
129
 
109
130
  - Use one clear metaphor from the project domain, not a collage.
package/README.md CHANGED
@@ -11,6 +11,8 @@
11
11
 
12
12
  Agent-agnostic skill collection for Codex, Claude, Cursor, and other skill-aware tools.
13
13
 
14
+ Pi and Hermes adapters currently exist for `search-console-indexing-audit` only.
15
+
14
16
  These skills are opinionated by design. They encode working defaults, preferred tools, and repeatable workflows instead of trying to be neutral snippets. Treat them as starting points with taste: useful out of the box, easy to inspect, and specific enough for an agent to execute consistently.
15
17
 
16
18
  ## Structure
@@ -274,6 +276,8 @@ packages/{category}/{skill}/
274
276
  ├── codex/ # OpenAI Codex — README.md stub
275
277
  ├── claude/ # Claude Code — plugin.json + skills/SKILL.md copy
276
278
  ├── cursor/ # Cursor — plugin.json + skills/SKILL.md copy
279
+ ├── pi/ # Pi — README.md stub, where supported
280
+ ├── hermes/ # Hermes — README.md stub, where supported
277
281
  ├── windsurf/ # Windsurf — rules/{name}.md (Cascade Rules format)
278
282
  └── kiro/ # Amazon Kiro — steering/{name}.md (steering doc format)
279
283
  ```
@@ -282,7 +286,7 @@ Key design choices:
282
286
 
283
287
  - Process over prose: skills are workflows agents follow, not generic reference essays.
284
288
  - Progressive disclosure: `SKILL.md` is the entry point; supporting files load only when needed.
285
- - Adapter separation: Codex, Claude, Cursor, Copilot, Windsurf, and Kiro metadata wrap the canonical package instead of forking it.
289
+ - Adapter separation: Codex, Claude, Cursor, Copilot, Windsurf, Kiro, and any package-specific adapters wrap the canonical package instead of forking it.
286
290
  - Verifiable changes: catalog and manifest changes should pass `./scripts/validate-catalog.sh`.
287
291
 
288
292
  See [docs/skill-anatomy.md](docs/skill-anatomy.md) for the package format.
@@ -287,6 +287,8 @@
287
287
  "codex",
288
288
  "claude",
289
289
  "cursor",
290
+ "pi",
291
+ "hermes",
290
292
  "copilot",
291
293
  "windsurf",
292
294
  "kiro"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@olegkoval/agent-skills",
3
- "version": "1.11.0",
3
+ "version": "1.12.0",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -4,7 +4,7 @@ name: search-console-indexing-audit
4
4
  description: Analyze Google Search Console Coverage or indexing CSV exports and correlate them with repo and live-site SEO signals. Use for Chart.csv, Metadata.csv, Critical issues.csv, Non-critical issues.csv, sitemap/robots/canonical indexing problems, "Discovered - currently not indexed", redirect indexing buckets, or requests to fix Google indexing coverage.
5
5
  license: MIT
6
6
  allowed-tools: Bash, Read, Write
7
- compatibility: Codex, Claude Code, Cursor, GitHub Copilot, Windsurf, Kiro, and other Agent Skills compatible tools.
7
+ compatibility: Codex, Claude Code, Cursor, Pi, Hermes, GitHub Copilot, Windsurf, Kiro, and other Agent Skills compatible tools.
8
8
  metadata:
9
9
  targets: [_source-only]
10
10
  author: Oleg Koval
@@ -4,7 +4,7 @@ name: search-console-indexing-audit
4
4
  description: Analyze Google Search Console Coverage or indexing CSV exports and correlate them with repo and live-site SEO signals. Use for Chart.csv, Metadata.csv, Critical issues.csv, Non-critical issues.csv, sitemap/robots/canonical indexing problems, "Discovered - currently not indexed", redirect indexing buckets, or requests to fix Google indexing coverage.
5
5
  license: MIT
6
6
  allowed-tools: Bash, Read, Write
7
- compatibility: Codex, Claude Code, Cursor, GitHub Copilot, Windsurf, Kiro, and other Agent Skills compatible tools.
7
+ compatibility: Codex, Claude Code, Cursor, Pi, Hermes, GitHub Copilot, Windsurf, Kiro, and other Agent Skills compatible tools.
8
8
  metadata:
9
9
  targets: [_source-only]
10
10
  author: Oleg Koval
@@ -4,7 +4,7 @@ name: search-console-indexing-audit
4
4
  description: Analyze Google Search Console Coverage or indexing CSV exports and correlate them with repo and live-site SEO signals. Use for Chart.csv, Metadata.csv, Critical issues.csv, Non-critical issues.csv, sitemap/robots/canonical indexing problems, "Discovered - currently not indexed", redirect indexing buckets, or requests to fix Google indexing coverage.
5
5
  license: MIT
6
6
  allowed-tools: Bash, Read, Write
7
- compatibility: Codex, Claude Code, Cursor, GitHub Copilot, Windsurf, Kiro, and other Agent Skills compatible tools.
7
+ compatibility: Codex, Claude Code, Cursor, Pi, Hermes, GitHub Copilot, Windsurf, Kiro, and other Agent Skills compatible tools.
8
8
  metadata:
9
9
  targets: ["cursor"]
10
10
  author: Oleg Koval
@@ -0,0 +1,3 @@
1
+ # Hermes adapter
2
+
3
+ Use the canonical skill directly from `packages/marketing/search-console-indexing-audit/SKILL.md`.
@@ -0,0 +1,3 @@
1
+ # Pi adapter
2
+
3
+ Use the canonical skill directly from `packages/marketing/search-console-indexing-audit/SKILL.md`.
@@ -1,6 +1,6 @@
1
1
  ---
2
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.
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. Prefer the external `logo-generator` skill for icon generation when available.
4
4
  license: MIT
5
5
  allowed-tools: Bash, Read, Write, Edit, WebSearch, WebFetch
6
6
  compatibility: Codex, Claude Code, Cursor, GitHub Copilot, Windsurf, Kiro, and other Agent Skills compatible tools. Requires a writable git repository; browser or image rendering tools are useful for visual validation.
@@ -117,6 +117,27 @@ Rules:
117
117
 
118
118
  Create a simple, recognizable SVG logo from the repository's essence. Prefer `logo.svg` and also render `logo.png` so the icon can be reused in README assets, release artifacts, and platform-specific previews.
119
119
 
120
+ Use the external `logo-generator` skill first for icon generation when it is installed (see `logo-generator` Installation below). If it is not installed, follow the manual SVG guidance below and commit both the editable SVG and rendered PNG when practical.
121
+
122
+ ### `logo-generator` Installation
123
+
124
+ The `logo-generator` skill is external and is not bundled with this repository. Install it separately from <https://github.com/op7418/logo-generator-skill> before relying on it:
125
+
126
+ ```bash
127
+ npx skills add https://github.com/op7418/logo-generator-skill.git
128
+ ```
129
+
130
+ If automatic installation is unavailable, clone it into the Claude skills directory:
131
+
132
+ ```bash
133
+ git clone https://github.com/op7418/logo-generator-skill.git ~/.claude/skills/logo-generator
134
+ cd ~/.claude/skills/logo-generator
135
+ pip install -r requirements.txt
136
+ cp .env.example .env
137
+ ```
138
+
139
+ Then add `GEMINI_API_KEY` to `.env` and restart the agent runtime so the skill is discoverable.
140
+
120
141
  Icon rules:
121
142
 
122
143
  - Use one clear metaphor from the project domain, not a collage.
@@ -1,6 +1,6 @@
1
1
  ---
2
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.
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. Prefer the external `logo-generator` skill for icon generation when available.
4
4
  license: MIT
5
5
  allowed-tools: Bash, Read, Write, Edit, WebSearch, WebFetch
6
6
  compatibility: Codex, Claude Code, Cursor, GitHub Copilot, Windsurf, Kiro, and other Agent Skills compatible tools. Requires a writable git repository; browser or image rendering tools are useful for visual validation.
@@ -118,6 +118,27 @@ Rules:
118
118
 
119
119
  Create a simple, recognizable SVG logo from the repository's essence. Prefer `logo.svg` and also render `logo.png` so the icon can be reused in README assets, release artifacts, and platform-specific previews.
120
120
 
121
+ Use the external `logo-generator` skill first for icon generation when it is installed (see `logo-generator` Installation below). If it is not installed, follow the manual SVG guidance below and commit both the editable SVG and rendered PNG when practical.
122
+
123
+ ### `logo-generator` Installation
124
+
125
+ The `logo-generator` skill is external and is not bundled with this repository. Install it separately from <https://github.com/op7418/logo-generator-skill> before relying on it:
126
+
127
+ ```bash
128
+ npx skills add https://github.com/op7418/logo-generator-skill.git
129
+ ```
130
+
131
+ If automatic installation is unavailable, clone it into the Claude skills directory:
132
+
133
+ ```bash
134
+ git clone https://github.com/op7418/logo-generator-skill.git ~/.claude/skills/logo-generator
135
+ cd ~/.claude/skills/logo-generator
136
+ pip install -r requirements.txt
137
+ cp .env.example .env
138
+ ```
139
+
140
+ Then add `GEMINI_API_KEY` to `.env` and restart the agent runtime so the skill is discoverable.
141
+
121
142
  Icon rules:
122
143
 
123
144
  - Use one clear metaphor from the project domain, not a collage.
@@ -1,6 +1,6 @@
1
1
  ---
2
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.
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. Prefer the external `logo-generator` skill for icon generation when available.
4
4
  license: MIT
5
5
  allowed-tools: Bash, Read, Write, Edit, WebSearch, WebFetch
6
6
  compatibility: Codex, Claude Code, Cursor, GitHub Copilot, Windsurf, Kiro, and other Agent Skills compatible tools. Requires a writable git repository; browser or image rendering tools are useful for visual validation.
@@ -118,6 +118,27 @@ Rules:
118
118
 
119
119
  Create a simple, recognizable SVG logo from the repository's essence. Prefer `logo.svg` and also render `logo.png` so the icon can be reused in README assets, release artifacts, and platform-specific previews.
120
120
 
121
+ Use the external `logo-generator` skill first for icon generation when it is installed (see `logo-generator` Installation below). If it is not installed, follow the manual SVG guidance below and commit both the editable SVG and rendered PNG when practical.
122
+
123
+ ### `logo-generator` Installation
124
+
125
+ The `logo-generator` skill is external and is not bundled with this repository. Install it separately from <https://github.com/op7418/logo-generator-skill> before relying on it:
126
+
127
+ ```bash
128
+ npx skills add https://github.com/op7418/logo-generator-skill.git
129
+ ```
130
+
131
+ If automatic installation is unavailable, clone it into the Claude skills directory:
132
+
133
+ ```bash
134
+ git clone https://github.com/op7418/logo-generator-skill.git ~/.claude/skills/logo-generator
135
+ cd ~/.claude/skills/logo-generator
136
+ pip install -r requirements.txt
137
+ cp .env.example .env
138
+ ```
139
+
140
+ Then add `GEMINI_API_KEY` to `.env` and restart the agent runtime so the skill is discoverable.
141
+
121
142
  Icon rules:
122
143
 
123
144
  - Use one clear metaphor from the project domain, not a collage.
@@ -104,6 +104,27 @@ Rules:
104
104
 
105
105
  Create a simple, recognizable SVG logo from the repository's essence. Prefer `logo.svg` and also render `logo.png` so the icon can be reused in README assets, release artifacts, and platform-specific previews.
106
106
 
107
+ Use the external `logo-generator` skill first for icon generation when it is installed (see `logo-generator` Installation below). If it is not installed, follow the manual SVG guidance below and commit both the editable SVG and rendered PNG when practical.
108
+
109
+ ### `logo-generator` Installation
110
+
111
+ The `logo-generator` skill is external and is not bundled with this repository. Install it separately from <https://github.com/op7418/logo-generator-skill> before relying on it:
112
+
113
+ ```bash
114
+ npx skills add https://github.com/op7418/logo-generator-skill.git
115
+ ```
116
+
117
+ If automatic installation is unavailable, clone it into the Claude skills directory:
118
+
119
+ ```bash
120
+ git clone https://github.com/op7418/logo-generator-skill.git ~/.claude/skills/logo-generator
121
+ cd ~/.claude/skills/logo-generator
122
+ pip install -r requirements.txt
123
+ cp .env.example .env
124
+ ```
125
+
126
+ Then add `GEMINI_API_KEY` to `.env` and restart the agent runtime so the skill is discoverable.
127
+
107
128
  Icon rules:
108
129
 
109
130
  - Use one clear metaphor from the project domain, not a collage.
@@ -103,6 +103,27 @@ Rules:
103
103
 
104
104
  Create a simple, recognizable SVG logo from the repository's essence. Prefer `logo.svg` and also render `logo.png` so the icon can be reused in README assets, release artifacts, and platform-specific previews.
105
105
 
106
+ Use the external `logo-generator` skill first for icon generation when it is installed (see `logo-generator` Installation below). If it is not installed, follow the manual SVG guidance below and commit both the editable SVG and rendered PNG when practical.
107
+
108
+ ### `logo-generator` Installation
109
+
110
+ The `logo-generator` skill is external and is not bundled with this repository. Install it separately from <https://github.com/op7418/logo-generator-skill> before relying on it:
111
+
112
+ ```bash
113
+ npx skills add https://github.com/op7418/logo-generator-skill.git
114
+ ```
115
+
116
+ If automatic installation is unavailable, clone it into the Claude skills directory:
117
+
118
+ ```bash
119
+ git clone https://github.com/op7418/logo-generator-skill.git ~/.claude/skills/logo-generator
120
+ cd ~/.claude/skills/logo-generator
121
+ pip install -r requirements.txt
122
+ cp .env.example .env
123
+ ```
124
+
125
+ Then add `GEMINI_API_KEY` to `.env` and restart the agent runtime so the skill is discoverable.
126
+
106
127
  Icon rules:
107
128
 
108
129
  - Use one clear metaphor from the project domain, not a collage.
@@ -24,6 +24,8 @@ const adapterFiles = {
24
24
  claude: (pkg) => path.join(pkg.path, 'adapters', 'claude', 'plugin.json'),
25
25
  codex: (pkg) => path.join(pkg.path, 'adapters', 'codex', 'README.md'),
26
26
  cursor: (pkg) => path.join(pkg.path, 'adapters', 'cursor', 'plugin.json'),
27
+ pi: (pkg) => path.join(pkg.path, 'adapters', 'pi', 'README.md'),
28
+ hermes: (pkg) => path.join(pkg.path, 'adapters', 'hermes', 'README.md'),
27
29
  copilot: (pkg) => path.join('.github', 'prompts', `${pkg.name}.prompt.md`),
28
30
  windsurf: (pkg) => path.join(pkg.path, 'adapters', 'windsurf', 'rules', `${pkg.name}.md`),
29
31
  kiro: (pkg) => path.join(pkg.path, 'adapters', 'kiro', 'steering', `${pkg.name}.md`),