opencode-skills-collection 3.1.1 → 3.1.3

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 (86) hide show
  1. package/bundled-skills/.antigravity-install-manifest.json +4 -1
  2. package/bundled-skills/2slides-ppt-generator/SKILL.md +8 -7
  3. package/bundled-skills/agent-creator/SKILL.md +246 -0
  4. package/bundled-skills/android-cli/SKILL.md +19 -7
  5. package/bundled-skills/android-ui-journey-testing/SKILL.md +5 -5
  6. package/bundled-skills/apple-notes-search/SKILL.md +12 -2
  7. package/bundled-skills/atlas-ledger/SKILL.md +8 -0
  8. package/bundled-skills/ax-extract-workflow/SKILL.md +156 -0
  9. package/bundled-skills/codex-fable5/SKILL.md +10 -2
  10. package/bundled-skills/competitor-analysis/scripts/gate_candidates.mjs +45 -15
  11. package/bundled-skills/docs/integrations/jetski-cortex.md +3 -3
  12. package/bundled-skills/docs/integrations/jetski-gemini-loader/README.md +1 -1
  13. package/bundled-skills/docs/maintainers/repo-growth-seo.md +3 -3
  14. package/bundled-skills/docs/maintainers/skills-update-guide.md +1 -1
  15. package/bundled-skills/docs/sources/sources.md +1 -1
  16. package/bundled-skills/docs/users/bundles.md +145 -1
  17. package/bundled-skills/docs/users/claude-code-skills.md +1 -1
  18. package/bundled-skills/docs/users/gemini-cli-skills.md +1 -1
  19. package/bundled-skills/docs/users/getting-started.md +1 -1
  20. package/bundled-skills/docs/users/kiro-integration.md +1 -1
  21. package/bundled-skills/docs/users/specialized-plugin-roadmap.md +11 -4
  22. package/bundled-skills/docs/users/usage.md +4 -4
  23. package/bundled-skills/docs/users/visual-guide.md +4 -4
  24. package/bundled-skills/dos-verify-done-claims/SKILL.md +16 -4
  25. package/bundled-skills/ecl-harness-engineer/agents/creator-config.md +1 -1
  26. package/bundled-skills/ecl-harness-engineer/references/environment-config-guide.md +2 -2
  27. package/bundled-skills/ecl-harness-engineer/references/environment-detection-guide.md +4 -4
  28. package/bundled-skills/event-staffing-ordering/SKILL.md +4 -0
  29. package/bundled-skills/loop-library/SKILL.md +7 -4
  30. package/bundled-skills/lovable-cleanup/SKILL.md +11 -8
  31. package/bundled-skills/macos-screen-recorder/SKILL.md +9 -1
  32. package/bundled-skills/mailtrap-managing-contacts/SKILL.md +1 -1
  33. package/bundled-skills/mailtrap-sending-emails/SKILL.md +1 -1
  34. package/bundled-skills/mailtrap-setting-up-sending-domain/SKILL.md +1 -1
  35. package/bundled-skills/remote-gpu-trainer/.gitattributes +8 -0
  36. package/bundled-skills/remote-gpu-trainer/LICENSE +21 -0
  37. package/bundled-skills/remote-gpu-trainer/README.md +267 -0
  38. package/bundled-skills/remote-gpu-trainer/SKILL.md +249 -0
  39. package/bundled-skills/remote-gpu-trainer/evals/README.md +57 -0
  40. package/bundled-skills/remote-gpu-trainer/evals/RESULTS.md +44 -0
  41. package/bundled-skills/remote-gpu-trainer/evals/cases.jsonl +14 -0
  42. package/bundled-skills/remote-gpu-trainer/evals/run_evals.py +68 -0
  43. package/bundled-skills/remote-gpu-trainer/examples/autodl_sweep/README.md +72 -0
  44. package/bundled-skills/remote-gpu-trainer/examples/autodl_sweep/queue_1.txt +6 -0
  45. package/bundled-skills/remote-gpu-trainer/profiles/_schema.md +100 -0
  46. package/bundled-skills/remote-gpu-trainer/profiles/autodl.md +327 -0
  47. package/bundled-skills/remote-gpu-trainer/profiles/china.md +397 -0
  48. package/bundled-skills/remote-gpu-trainer/profiles/generic-ssh.md +450 -0
  49. package/bundled-skills/remote-gpu-trainer/profiles/lambda.md +342 -0
  50. package/bundled-skills/remote-gpu-trainer/profiles/paperspace.md +365 -0
  51. package/bundled-skills/remote-gpu-trainer/profiles/runpod.md +164 -0
  52. package/bundled-skills/remote-gpu-trainer/profiles/vastai.md +355 -0
  53. package/bundled-skills/remote-gpu-trainer/references/china-network.md +206 -0
  54. package/bundled-skills/remote-gpu-trainer/references/gotchas_universal.md +704 -0
  55. package/bundled-skills/remote-gpu-trainer/references/lifecycle_checklist.md +148 -0
  56. package/bundled-skills/remote-gpu-trainer/references/monitoring_patterns.md +327 -0
  57. package/bundled-skills/remote-gpu-trainer/references/multinode.md +190 -0
  58. package/bundled-skills/remote-gpu-trainer/references/parallel_ablation.md +196 -0
  59. package/bundled-skills/remote-gpu-trainer/references/principles.md +179 -0
  60. package/bundled-skills/remote-gpu-trainer/references/self-improvement.md +74 -0
  61. package/bundled-skills/remote-gpu-trainer/references/spot-resilience.md +235 -0
  62. package/bundled-skills/remote-gpu-trainer/references/ssh_transport.md +270 -0
  63. package/bundled-skills/remote-gpu-trainer/references/training/by-domain.md +230 -0
  64. package/bundled-skills/remote-gpu-trainer/references/training/checkpoint-resume.md +368 -0
  65. package/bundled-skills/remote-gpu-trainer/references/training/convergence-debugging.md +187 -0
  66. package/bundled-skills/remote-gpu-trainer/references/training/data-pipeline.md +119 -0
  67. package/bundled-skills/remote-gpu-trainer/references/training/distributed-launch.md +422 -0
  68. package/bundled-skills/remote-gpu-trainer/references/training/oom-memory.md +338 -0
  69. package/bundled-skills/remote-gpu-trainer/references/training/precision-stability.md +401 -0
  70. package/bundled-skills/remote-gpu-trainer/references/training/throughput-profiling.md +451 -0
  71. package/bundled-skills/remote-gpu-trainer/scripts/aggregate_to_fs.sh +55 -0
  72. package/bundled-skills/remote-gpu-trainer/scripts/check_staleness.py +70 -0
  73. package/bundled-skills/remote-gpu-trainer/scripts/download_loop.sh +67 -0
  74. package/bundled-skills/remote-gpu-trainer/scripts/gpu_health.sh +169 -0
  75. package/bundled-skills/remote-gpu-trainer/scripts/health_patrol.sh.template +67 -0
  76. package/bundled-skills/remote-gpu-trainer/scripts/mem_monitor.sh +67 -0
  77. package/bundled-skills/remote-gpu-trainer/scripts/reap_vram_zombies.sh +175 -0
  78. package/bundled-skills/remote-gpu-trainer/scripts/run_one.sh.template +104 -0
  79. package/bundled-skills/remote-gpu-trainer/scripts/run_queue.sh.template +83 -0
  80. package/bundled-skills/remote-gpu-trainer/scripts/setup-china-mirrors.sh +35 -0
  81. package/bundled-skills/remote-gpu-trainer/scripts/verify_local.py +145 -0
  82. package/bundled-skills/screenstudio-alt/SKILL.md +9 -1
  83. package/bundled-skills/vibecode-production-qa-validator/SKILL.md +1 -1
  84. package/bundled-skills/youtube-notetaker/scripts/serve.py +63 -14
  85. package/package.json +1 -1
  86. package/skills_index.json +128 -49
package/skills_index.json CHANGED
@@ -551,6 +551,28 @@
551
551
  "reasons": []
552
552
  }
553
553
  },
554
+ {
555
+ "id": "agent-creator",
556
+ "path": "skills/agent-creator",
557
+ "category": "ai-ml",
558
+ "name": "agent-creator",
559
+ "description": "Create custom AI subagents with proper plugin structure, persona generation, and companion routing skills.",
560
+ "risk": "critical",
561
+ "source": "community",
562
+ "date_added": "2026-06-20",
563
+ "plugin": {
564
+ "targets": {
565
+ "codex": "supported",
566
+ "claude": "supported"
567
+ },
568
+ "setup": {
569
+ "type": "none",
570
+ "summary": "",
571
+ "docs": null
572
+ },
573
+ "reasons": []
574
+ }
575
+ },
554
576
  {
555
577
  "id": "agent-evaluation",
556
578
  "path": "skills/agent-evaluation",
@@ -1531,20 +1553,22 @@
1531
1553
  "category": "tools",
1532
1554
  "name": "android-cli",
1533
1555
  "description": "Orchestrates Android development tasks including project creation, deployment, SDK management, and environment diagnostics using the `android` command-line tool.",
1534
- "risk": "safe",
1556
+ "risk": "critical",
1535
1557
  "source": "self",
1536
1558
  "date_added": "2026-06-15",
1537
1559
  "plugin": {
1538
1560
  "targets": {
1539
- "codex": "supported",
1540
- "claude": "supported"
1561
+ "codex": "blocked",
1562
+ "claude": "blocked"
1541
1563
  },
1542
1564
  "setup": {
1543
- "type": "none",
1544
- "summary": "",
1545
- "docs": null
1565
+ "type": "manual",
1566
+ "summary": "Installer guidance executes remote Android CLI setup scripts; keep out of plugin-safe bundles.",
1567
+ "docs": "SKILL.md"
1546
1568
  },
1547
- "reasons": []
1569
+ "reasons": [
1570
+ "explicit_target_restriction"
1571
+ ]
1548
1572
  }
1549
1573
  },
1550
1574
  {
@@ -2503,7 +2527,7 @@
2503
2527
  "category": "uncategorized",
2504
2528
  "name": "apple-notes-search",
2505
2529
  "description": "Semantic + keyword search and connection-discovery across the user's own Apple Notes via the apple-notes MCP server. Use when the user wants to find, recall, or synthesize something from their notes, or surface non-obvious bridges/related notes. macOS, on-device.",
2506
- "risk": "safe",
2530
+ "risk": "critical",
2507
2531
  "source": "community",
2508
2532
  "date_added": "2026-06-16",
2509
2533
  "plugin": {
@@ -2512,12 +2536,13 @@
2512
2536
  "claude": "blocked"
2513
2537
  },
2514
2538
  "setup": {
2515
- "type": "none",
2516
- "summary": "",
2517
- "docs": null
2539
+ "type": "manual",
2540
+ "summary": "Requires third-party MCP setup and macOS Full Disk Access; keep out of plugin-safe bundles.",
2541
+ "docs": "SKILL.md"
2518
2542
  },
2519
2543
  "reasons": [
2520
- "absolute_host_path"
2544
+ "absolute_host_path",
2545
+ "explicit_target_restriction"
2521
2546
  ]
2522
2547
  }
2523
2548
  },
@@ -2840,15 +2865,17 @@
2840
2865
  "date_added": "2026-06-12",
2841
2866
  "plugin": {
2842
2867
  "targets": {
2843
- "codex": "supported",
2844
- "claude": "supported"
2868
+ "codex": "blocked",
2869
+ "claude": "blocked"
2845
2870
  },
2846
2871
  "setup": {
2847
- "type": "none",
2848
- "summary": "",
2849
- "docs": null
2872
+ "type": "manual",
2873
+ "summary": "Writes durable Atlas.md project memory after confirmation; keep out of plugin-safe bundles.",
2874
+ "docs": "SKILL.md"
2850
2875
  },
2851
- "reasons": []
2876
+ "reasons": [
2877
+ "explicit_target_restriction"
2878
+ ]
2852
2879
  }
2853
2880
  },
2854
2881
  {
@@ -3383,6 +3410,28 @@
3383
3410
  "reasons": []
3384
3411
  }
3385
3412
  },
3413
+ {
3414
+ "id": "ax-extract-workflow",
3415
+ "path": "skills/ax-extract-workflow",
3416
+ "category": "development",
3417
+ "name": "ax-extract-workflow",
3418
+ "description": "Reconstruct workflow behind a past coding-agent artifact using local ax sessions/commits/skills/tool traces. Use when asked how X was built.",
3419
+ "risk": "safe",
3420
+ "source": "community",
3421
+ "date_added": "2026-06-21",
3422
+ "plugin": {
3423
+ "targets": {
3424
+ "codex": "supported",
3425
+ "claude": "supported"
3426
+ },
3427
+ "setup": {
3428
+ "type": "none",
3429
+ "summary": "",
3430
+ "docs": null
3431
+ },
3432
+ "reasons": []
3433
+ }
3434
+ },
3386
3435
  {
3387
3436
  "id": "axiom",
3388
3437
  "path": "skills/axiom",
@@ -8925,20 +8974,22 @@
8925
8974
  "category": "agent-behavior",
8926
8975
  "name": "codex-fable5",
8927
8976
  "description": "Apply Fable-inspired discipline to Codex work: inspect first, track goals and findings, ground conclusions in evidence, verify before completion, and adapt Claude/Fable prompt guidance without identity or provider claims.",
8928
- "risk": "safe",
8977
+ "risk": "critical",
8929
8978
  "source": "community",
8930
8979
  "date_added": "2026-06-15",
8931
8980
  "plugin": {
8932
8981
  "targets": {
8933
- "codex": "supported",
8934
- "claude": "supported"
8982
+ "codex": "blocked",
8983
+ "claude": "blocked"
8935
8984
  },
8936
8985
  "setup": {
8937
- "type": "none",
8938
- "summary": "",
8939
- "docs": null
8986
+ "type": "manual",
8987
+ "summary": "Optional external plugin/helper setup executes mutable third-party code; keep out of plugin-safe bundles.",
8988
+ "docs": "SKILL.md"
8940
8989
  },
8941
- "reasons": []
8990
+ "reasons": [
8991
+ "explicit_target_restriction"
8992
+ ]
8942
8993
  }
8943
8994
  },
8944
8995
  {
@@ -12451,20 +12502,22 @@
12451
12502
  "category": "quality",
12452
12503
  "name": "dos-verify-done-claims",
12453
12504
  "description": "Before accepting an agent's 'done / shipped / fixed' claim, verify it against ground truth (git ancestry + the commit's own diff) using the DOS kernel's `dos verify` and `dos commit-audit` — never the agent's own narration.",
12454
- "risk": "safe",
12505
+ "risk": "critical",
12455
12506
  "source": "community",
12456
12507
  "date_added": "2026-06-12",
12457
12508
  "plugin": {
12458
12509
  "targets": {
12459
- "codex": "supported",
12460
- "claude": "supported"
12510
+ "codex": "blocked",
12511
+ "claude": "blocked"
12461
12512
  },
12462
12513
  "setup": {
12463
- "type": "none",
12464
- "summary": "",
12465
- "docs": null
12514
+ "type": "manual",
12515
+ "summary": "Setup installs and executes an external PyPI CLI; keep out of plugin-safe bundles.",
12516
+ "docs": "SKILL.md"
12466
12517
  },
12467
- "reasons": []
12518
+ "reasons": [
12519
+ "explicit_target_restriction"
12520
+ ]
12468
12521
  }
12469
12522
  },
12470
12523
  {
@@ -20627,20 +20680,22 @@
20627
20680
  "category": "uncategorized",
20628
20681
  "name": "macos-screen-recorder",
20629
20682
  "description": "macOS screen recorder that captures the main display PLUS system audio via ScreenCaptureKit — no BlackHole/loopback driver, no sudo, just the standard Screen Recording permission. CLI-driven; fills the headless-screen-recording-with-system-sound gap QuickTime and `screencapture -v` can't.",
20630
- "risk": "safe",
20683
+ "risk": "critical",
20631
20684
  "source": "community",
20632
20685
  "date_added": "2026-06-16",
20633
20686
  "plugin": {
20634
20687
  "targets": {
20635
- "codex": "supported",
20636
- "claude": "supported"
20688
+ "codex": "blocked",
20689
+ "claude": "blocked"
20637
20690
  },
20638
20691
  "setup": {
20639
- "type": "none",
20640
- "summary": "",
20641
- "docs": null
20692
+ "type": "manual",
20693
+ "summary": "Screen/audio/input capture requires sensitive macOS permissions; keep out of plugin-safe bundles.",
20694
+ "docs": "SKILL.md"
20642
20695
  },
20643
- "reasons": []
20696
+ "reasons": [
20697
+ "explicit_target_restriction"
20698
+ ]
20644
20699
  }
20645
20700
  },
20646
20701
  {
@@ -20737,7 +20792,7 @@
20737
20792
  "category": "uncategorized",
20738
20793
  "name": "mailtrap-managing-contacts",
20739
20794
  "description": "Manage Mailtrap contacts, lists, segments, custom fields, imports, CRM syncs, and campaign audiences through the UI or API.",
20740
- "risk": "safe",
20795
+ "risk": "critical",
20741
20796
  "source": "community",
20742
20797
  "date_added": "2026-06-19",
20743
20798
  "plugin": {
@@ -20759,7 +20814,7 @@
20759
20814
  "category": "uncategorized",
20760
20815
  "name": "mailtrap-sending-emails",
20761
20816
  "description": "Configure or troubleshoot Mailtrap live email sending with Email API, SMTP, transactional streams, bulk streams, or batches.",
20762
- "risk": "safe",
20817
+ "risk": "critical",
20763
20818
  "source": "community",
20764
20819
  "date_added": "2026-06-19",
20765
20820
  "plugin": {
@@ -20781,7 +20836,7 @@
20781
20836
  "category": "uncategorized",
20782
20837
  "name": "mailtrap-setting-up-sending-domain",
20783
20838
  "description": "Add or verify a Mailtrap sending domain, troubleshoot DNS propagation, publish SPF/DKIM/DMARC records, and complete compliance.",
20784
- "risk": "safe",
20839
+ "risk": "critical",
20785
20840
  "source": "community",
20786
20841
  "date_added": "2026-06-19",
20787
20842
  "plugin": {
@@ -27262,6 +27317,28 @@
27262
27317
  "reasons": []
27263
27318
  }
27264
27319
  },
27320
+ {
27321
+ "id": "remote-gpu-trainer",
27322
+ "path": "skills/remote-gpu-trainer",
27323
+ "category": "ml-ops",
27324
+ "name": "remote-gpu-trainer",
27325
+ "description": "Deploy, monitor, and debug long GPU jobs on RENTED/remote instances (AutoDL, RunPod, vast.ai, Lambda, Slurm, K8s): teardown/billing safety, spot resilience, resumable checkpointing, OOM/NaN triage.",
27326
+ "risk": "safe",
27327
+ "source": "community",
27328
+ "date_added": "2026-06-20",
27329
+ "plugin": {
27330
+ "targets": {
27331
+ "codex": "supported",
27332
+ "claude": "supported"
27333
+ },
27334
+ "setup": {
27335
+ "type": "none",
27336
+ "summary": "",
27337
+ "docs": null
27338
+ },
27339
+ "reasons": []
27340
+ }
27341
+ },
27265
27342
  {
27266
27343
  "id": "remotion",
27267
27344
  "path": "skills/remotion",
@@ -28346,20 +28423,22 @@
28346
28423
  "category": "uncategorized",
28347
28424
  "name": "screenstudio-alt",
28348
28425
  "description": "Open-source headless Screen Studio alternative: auto speed-up of idle, auto-zoom on click clusters, keystroke overlay chips, smoothed synthetic cursor, and 9:16 vertical export that follows the action — post-production for screen recordings from the CLI.",
28349
- "risk": "safe",
28426
+ "risk": "critical",
28350
28427
  "source": "community",
28351
28428
  "date_added": "2026-06-16",
28352
28429
  "plugin": {
28353
28430
  "targets": {
28354
- "codex": "supported",
28355
- "claude": "supported"
28431
+ "codex": "blocked",
28432
+ "claude": "blocked"
28356
28433
  },
28357
28434
  "setup": {
28358
- "type": "none",
28359
- "summary": "",
28360
- "docs": null
28435
+ "type": "manual",
28436
+ "summary": "Screen/input capture requires sensitive local permissions; keep out of plugin-safe bundles.",
28437
+ "docs": "SKILL.md"
28361
28438
  },
28362
- "reasons": []
28439
+ "reasons": [
28440
+ "explicit_target_restriction"
28441
+ ]
28363
28442
  }
28364
28443
  },
28365
28444
  {