opencode-skills-collection 4.0.36 → 4.0.37

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 (29) hide show
  1. package/bundled-skills/.antigravity-install-manifest.json +7 -1
  2. package/bundled-skills/agent-harness-fault-injection/SKILL.md +250 -0
  3. package/bundled-skills/audit-agent-run-evidence/SKILL.md +165 -0
  4. package/bundled-skills/boost-asio-pro/SKILL.md +172 -0
  5. package/bundled-skills/boost-asio-pro/references/build.md +88 -0
  6. package/bundled-skills/boost-asio-pro/references/classic-boost.md +33 -0
  7. package/bundled-skills/boost-asio-pro/references/coroutines.md +415 -0
  8. package/bundled-skills/boost-asio-pro/references/pre-cpp20.md +164 -0
  9. package/bundled-skills/boost-asio-pro/references/ssl.md +38 -0
  10. package/bundled-skills/docs/integrations/jetski-cortex.md +3 -3
  11. package/bundled-skills/docs/integrations/jetski-gemini-loader/README.md +1 -1
  12. package/bundled-skills/docs/maintainers/repo-growth-seo.md +1 -1
  13. package/bundled-skills/docs/maintainers/skills-update-guide.md +1 -1
  14. package/bundled-skills/docs/users/aas-core.md +9 -1
  15. package/bundled-skills/docs/users/bundles.md +1 -1
  16. package/bundled-skills/docs/users/claude-code-skills.md +1 -1
  17. package/bundled-skills/docs/users/gemini-cli-skills.md +1 -1
  18. package/bundled-skills/docs/users/kiro-integration.md +1 -1
  19. package/bundled-skills/docs/users/usage.md +3 -3
  20. package/bundled-skills/docs/users/visual-guide.md +4 -4
  21. package/bundled-skills/multi-source-search/SKILL.md +139 -0
  22. package/bundled-skills/multi-source-search/references/report-schema.md +47 -0
  23. package/bundled-skills/multi-source-search/scripts/validate_report.py +221 -0
  24. package/bundled-skills/review-multi-agent-orchestration/SKILL.md +201 -0
  25. package/bundled-skills/ui-slop-score/SKILL.md +80 -0
  26. package/bundled-skills/youtube-summarizer/SKILL.md +21 -7
  27. package/bundled-skills/youtube-summarizer/scripts/extract-transcript.py +45 -12
  28. package/package.json +3 -2
  29. package/skills_index.json +175 -0
package/skills_index.json CHANGED
@@ -801,6 +801,37 @@
801
801
  "reasons": []
802
802
  }
803
803
  },
804
+ {
805
+ "id": "agent-harness-fault-injection",
806
+ "path": "skills/agent-harness-fault-injection",
807
+ "category": "development",
808
+ "name": "agent-harness-fault-injection",
809
+ "description": "Use when an agent workflow needs deterministic recovery evidence for sandbox, MCP/tool, worker, checkpoint, memory, or orchestration failures.",
810
+ "risk": "safe",
811
+ "source": "self",
812
+ "date_added": "2026-08-19",
813
+ "plugin": {
814
+ "targets": {
815
+ "codex": "supported",
816
+ "claude": "supported"
817
+ },
818
+ "setup": {
819
+ "type": "none",
820
+ "summary": "",
821
+ "docs": null
822
+ },
823
+ "reasons": []
824
+ },
825
+ "source_type": "self",
826
+ "tags": [
827
+ "agent-harness",
828
+ "fault-injection",
829
+ "recovery",
830
+ "state-machine",
831
+ "mcp",
832
+ "multi-agent"
833
+ ]
834
+ },
804
835
  {
805
836
  "id": "agent-manager-skill",
806
837
  "path": "skills/agent-manager-skill",
@@ -4050,6 +4081,28 @@
4050
4081
  "speech-to-text]"
4051
4082
  ]
4052
4083
  },
4084
+ {
4085
+ "id": "audit-agent-run-evidence",
4086
+ "path": "skills/audit-agent-run-evidence",
4087
+ "category": "uncategorized",
4088
+ "name": "audit-agent-run-evidence",
4089
+ "description": "Use when an agent, harness, gateway, MCP workflow, or multi-step automation claims completion and the available traces, checkpoints, approvals, tool calls, or deployment records must be judged without trusting self-reported success.",
4090
+ "risk": "safe",
4091
+ "source": "self",
4092
+ "date_added": "2026-08-19",
4093
+ "plugin": {
4094
+ "targets": {
4095
+ "codex": "supported",
4096
+ "claude": "supported"
4097
+ },
4098
+ "setup": {
4099
+ "type": "none",
4100
+ "summary": "",
4101
+ "docs": null
4102
+ },
4103
+ "reasons": []
4104
+ }
4105
+ },
4053
4106
  {
4054
4107
  "id": "audit-context-building",
4055
4108
  "path": "skills/audit-context-building",
@@ -8281,6 +8334,40 @@
8281
8334
  "reasons": []
8282
8335
  }
8283
8336
  },
8337
+ {
8338
+ "id": "boost-asio-pro",
8339
+ "path": "skills/boost-asio-pro",
8340
+ "category": "development",
8341
+ "name": "boost-asio-pro",
8342
+ "description": "Use when writing asynchronous C++ networking code with Boost.Asio or standalone Asio — TCP/UDP servers and clients, SSL/TLS, timers, strands, composed async ops. Covers io_context, co_spawn, awaitable, async_read/async_write, asio::spawn, yield_context, and pre-C++20 callback styles.",
8343
+ "risk": "safe",
8344
+ "source": "community",
8345
+ "date_added": "2026-08-18",
8346
+ "plugin": {
8347
+ "targets": {
8348
+ "codex": "supported",
8349
+ "claude": "supported"
8350
+ },
8351
+ "setup": {
8352
+ "type": "none",
8353
+ "summary": "",
8354
+ "docs": null
8355
+ },
8356
+ "reasons": []
8357
+ },
8358
+ "source_type": "community",
8359
+ "source_repo": "alexprivalov/boost-asio-skill",
8360
+ "license": "MIT",
8361
+ "license_source": "https://github.com/alexprivalov/boost-asio-skill/blob/main/LICENSE",
8362
+ "tags": [
8363
+ "cpp",
8364
+ "boost",
8365
+ "asio",
8366
+ "async",
8367
+ "networking",
8368
+ "coroutines"
8369
+ ]
8370
+ },
8284
8371
  {
8285
8372
  "id": "box-automation",
8286
8373
  "path": "skills/box-automation",
@@ -30218,6 +30305,39 @@
30218
30305
  "reasons": []
30219
30306
  }
30220
30307
  },
30308
+ {
30309
+ "id": "multi-source-search",
30310
+ "path": "skills/multi-source-search",
30311
+ "category": "research",
30312
+ "name": "multi-source-search",
30313
+ "description": "Cross-validate web research and produce an offline-checkable evidence ledger with explicit source diversity, confidence, conflicts, and gaps.",
30314
+ "risk": "safe",
30315
+ "source": "community",
30316
+ "date_added": "2026-08-20",
30317
+ "plugin": {
30318
+ "targets": {
30319
+ "codex": "supported",
30320
+ "claude": "supported"
30321
+ },
30322
+ "setup": {
30323
+ "type": "none",
30324
+ "summary": "",
30325
+ "docs": null
30326
+ },
30327
+ "reasons": []
30328
+ },
30329
+ "source_type": "community",
30330
+ "source_repo": "sandbaseai/sandbase-skills",
30331
+ "license": "Apache-2.0",
30332
+ "license_source": "https://github.com/sandbaseai/sandbase-skills/blob/fc25b2ed4548b1bb91621661e82d07d4bbd285a1/LICENSE",
30333
+ "tags": [
30334
+ "research",
30335
+ "fact-checking",
30336
+ "citations",
30337
+ "evidence",
30338
+ "verification"
30339
+ ]
30340
+ },
30221
30341
  {
30222
30342
  "id": "multiplayer",
30223
30343
  "path": "skills/game-development/multiplayer",
@@ -37034,6 +37154,28 @@
37034
37154
  "accessibility"
37035
37155
  ]
37036
37156
  },
37157
+ {
37158
+ "id": "review-multi-agent-orchestration",
37159
+ "path": "skills/review-multi-agent-orchestration",
37160
+ "category": "uncategorized",
37161
+ "name": "review-multi-agent-orchestration",
37162
+ "description": "Use when a supervisor, swarm, graph, planner-worker system, or parallel agent workflow needs review for task boundaries, shared state, branch joins, retries, cancellation, context handoffs, budgets, deadlocks, or human escalation before implementation or production rollout.",
37163
+ "risk": "safe",
37164
+ "source": "self",
37165
+ "date_added": "2026-08-19",
37166
+ "plugin": {
37167
+ "targets": {
37168
+ "codex": "supported",
37169
+ "claude": "supported"
37170
+ },
37171
+ "setup": {
37172
+ "type": "none",
37173
+ "summary": "",
37174
+ "docs": null
37175
+ },
37176
+ "reasons": []
37177
+ }
37178
+ },
37037
37179
  {
37038
37180
  "id": "review-swarm",
37039
37181
  "path": "skills/review-swarm",
@@ -45229,6 +45371,39 @@
45229
45371
  "license": "MIT",
45230
45372
  "license_source": "https://github.com/ibelick/ui-skills/blob/main/LICENSE"
45231
45373
  },
45374
+ {
45375
+ "id": "ui-slop-score",
45376
+ "path": "skills/ui-slop-score",
45377
+ "category": "frontend",
45378
+ "name": "ui-slop-score",
45379
+ "description": "Score a rendered web or iOS screen for generic UI risk before it ships. Use when a user asks whether a UI looks generic or needs an honest pre-merge visual review.",
45380
+ "risk": "safe",
45381
+ "source": "https://github.com/uizze/uizze/tree/main/skills/ui-slop-score",
45382
+ "date_added": "2026-08-19",
45383
+ "plugin": {
45384
+ "targets": {
45385
+ "codex": "supported",
45386
+ "claude": "supported"
45387
+ },
45388
+ "setup": {
45389
+ "type": "none",
45390
+ "summary": "",
45391
+ "docs": null
45392
+ },
45393
+ "reasons": []
45394
+ },
45395
+ "source_type": "official",
45396
+ "source_repo": "uizze/uizze",
45397
+ "license": "MIT",
45398
+ "license_source": "https://github.com/uizze/uizze/blob/main/LICENSE",
45399
+ "tags": [
45400
+ "ui",
45401
+ "ux",
45402
+ "frontend",
45403
+ "design",
45404
+ "ui-slop-score"
45405
+ ]
45406
+ },
45232
45407
  {
45233
45408
  "id": "ui-tokens",
45234
45409
  "path": "skills/ui-tokens",