@olegkoval/agent-skills 1.11.1 → 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.11.0",
4
+ "version": "1.11.1",
5
5
  "author": {
6
6
  "name": "Oleg Koval"
7
7
  },
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.1",
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`.
@@ -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`),