opencode-skills-collection 3.0.21 → 3.0.23
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/bundled-skills/.antigravity-install-manifest.json +5 -1
- package/bundled-skills/bilig-workpaper/SKILL.md +145 -0
- package/bundled-skills/docs/integrations/jetski-cortex.md +3 -3
- package/bundled-skills/docs/integrations/jetski-gemini-loader/README.md +1 -1
- package/bundled-skills/docs/maintainers/repo-growth-seo.md +3 -3
- package/bundled-skills/docs/maintainers/skills-update-guide.md +1 -1
- package/bundled-skills/docs/users/bundles.md +1 -1
- package/bundled-skills/docs/users/claude-code-skills.md +1 -1
- package/bundled-skills/docs/users/gemini-cli-skills.md +1 -1
- package/bundled-skills/docs/users/getting-started.md +1 -1
- package/bundled-skills/docs/users/kiro-integration.md +1 -1
- package/bundled-skills/docs/users/usage.md +4 -4
- package/bundled-skills/docs/users/visual-guide.md +4 -4
- package/bundled-skills/ejentum-reasoning-harness/SKILL.md +3 -0
- package/bundled-skills/ingest-youtube/SKILL.md +6 -1
- package/bundled-skills/ingest-youtube/ingest.py +81 -31
- package/bundled-skills/linux-privilege-escalation/SKILL.md +5 -4
- package/bundled-skills/mercury-mcp/SKILL.md +126 -0
- package/bundled-skills/news-sentiment-engine/SKILL.md +9 -1
- package/bundled-skills/photopea-embedded-editor/SKILL.md +1399 -0
- package/bundled-skills/subagent-orchestrator/README.md +99 -0
- package/bundled-skills/subagent-orchestrator/SKILL.md +201 -0
- package/bundled-skills/subagent-orchestrator/examples/api-plus-frontend.md +76 -0
- package/bundled-skills/subagent-orchestrator/examples/debug-mission.md +72 -0
- package/bundled-skills/subagent-orchestrator/examples/nextjs-feature.md +87 -0
- package/bundled-skills/subagent-orchestrator/resources/mission-brief-template.md +43 -0
- package/bundled-skills/subagent-orchestrator/resources/quota-reference.md +73 -0
- package/bundled-skills/subagent-orchestrator/scripts/install.js +62 -0
- package/bundled-skills/tokenwise/SKILL.md +5 -1
- package/package.json +1 -1
- package/skills_index.json +108 -14
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Subagent Orchestrator Skill Installer
|
|
4
|
+
* Installs the skill globally for Antigravity 2.0
|
|
5
|
+
*
|
|
6
|
+
* Usage:
|
|
7
|
+
* Windows PowerShell: node install.js
|
|
8
|
+
* Or via npx (if published): npx subagent-orchestrator-skill
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
const fs = require('fs');
|
|
12
|
+
const path = require('path');
|
|
13
|
+
const os = require('os');
|
|
14
|
+
|
|
15
|
+
const SKILL_NAME = 'subagent-orchestrator';
|
|
16
|
+
|
|
17
|
+
// Antigravity global skills path per OS
|
|
18
|
+
const INSTALL_PATHS = {
|
|
19
|
+
win32: path.join(os.homedir(), 'AppData', 'Roaming', '.gemini', 'antigravity', 'skills'),
|
|
20
|
+
darwin: path.join(os.homedir(), '.gemini', 'antigravity', 'skills'),
|
|
21
|
+
linux: path.join(os.homedir(), '.gemini', 'antigravity', 'skills'),
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
const targetBase = INSTALL_PATHS[process.platform] || INSTALL_PATHS.linux;
|
|
25
|
+
const targetDir = path.join(targetBase, SKILL_NAME);
|
|
26
|
+
const sourceDir = path.join(__dirname);
|
|
27
|
+
|
|
28
|
+
function copyDir(src, dest) {
|
|
29
|
+
fs.mkdirSync(dest, { recursive: true });
|
|
30
|
+
for (const entry of fs.readdirSync(src, { withFileTypes: true })) {
|
|
31
|
+
if (entry.name === 'install.js') continue; // skip self
|
|
32
|
+
const srcPath = path.join(src, entry.name);
|
|
33
|
+
const destPath = path.join(dest, entry.name);
|
|
34
|
+
if (entry.isDirectory()) {
|
|
35
|
+
copyDir(srcPath, destPath);
|
|
36
|
+
} else {
|
|
37
|
+
fs.copyFileSync(srcPath, destPath);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
console.log(`\n Installing Subagent Orchestrator Skill for Antigravity 2.0`);
|
|
43
|
+
console.log(`→ Target: ${targetDir}\n`);
|
|
44
|
+
|
|
45
|
+
try {
|
|
46
|
+
copyDir(sourceDir, targetDir);
|
|
47
|
+
console.log('✅ Skill installed successfully!');
|
|
48
|
+
console.log('');
|
|
49
|
+
console.log('Next steps:');
|
|
50
|
+
console.log('1. Restart your Antigravity terminal session');
|
|
51
|
+
console.log('2. Start a new conversation');
|
|
52
|
+
console.log('3. Give a multi-file task — the skill auto-activates');
|
|
53
|
+
console.log('');
|
|
54
|
+
console.log('Or trigger manually: "Use subagent-orchestrator for this task"');
|
|
55
|
+
console.log('');
|
|
56
|
+
} catch (err) {
|
|
57
|
+
console.error('❌ Install failed:', err.message);
|
|
58
|
+
console.log('');
|
|
59
|
+
console.log('Manual install: copy the folder to:');
|
|
60
|
+
console.log(targetDir);
|
|
61
|
+
process.exit(1);
|
|
62
|
+
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: tokenwise
|
|
3
3
|
description: "Measurement-driven model router for Claude Code. Routes Haiku/Sonnet/Opus per task class, logs every routed task with real $ numbers, and A/B tests cheaper tiers before you trust the savings."
|
|
4
4
|
category: developer-tools
|
|
5
|
-
risk:
|
|
5
|
+
risk: critical
|
|
6
6
|
source: community
|
|
7
7
|
source_repo: CodeShuX/tokenwise
|
|
8
8
|
source_type: community
|
|
@@ -12,6 +12,10 @@ tags: [model-routing, token-optimization, cost-reduction, anthropic, haiku, sonn
|
|
|
12
12
|
tools: [claude]
|
|
13
13
|
license: "MIT"
|
|
14
14
|
license_source: "https://github.com/CodeShuX/tokenwise/blob/main/LICENSE"
|
|
15
|
+
plugin:
|
|
16
|
+
targets:
|
|
17
|
+
codex: blocked
|
|
18
|
+
claude: blocked
|
|
15
19
|
---
|
|
16
20
|
|
|
17
21
|
# TokenWise — Measurement-Driven Model Router
|
package/package.json
CHANGED
package/skills_index.json
CHANGED
|
@@ -6021,6 +6021,28 @@
|
|
|
6021
6021
|
"reasons": []
|
|
6022
6022
|
}
|
|
6023
6023
|
},
|
|
6024
|
+
{
|
|
6025
|
+
"id": "bilig-workpaper",
|
|
6026
|
+
"path": "skills/bilig-workpaper",
|
|
6027
|
+
"category": "web-development",
|
|
6028
|
+
"name": "bilig-workpaper",
|
|
6029
|
+
"description": "Use formula-backed WorkPaper JSON and MCP tools for agent spreadsheet tasks without driving Excel or a browser UI.",
|
|
6030
|
+
"risk": "unknown",
|
|
6031
|
+
"source": "community",
|
|
6032
|
+
"date_added": "2026-05-21",
|
|
6033
|
+
"plugin": {
|
|
6034
|
+
"targets": {
|
|
6035
|
+
"codex": "supported",
|
|
6036
|
+
"claude": "supported"
|
|
6037
|
+
},
|
|
6038
|
+
"setup": {
|
|
6039
|
+
"type": "none",
|
|
6040
|
+
"summary": "",
|
|
6041
|
+
"docs": null
|
|
6042
|
+
},
|
|
6043
|
+
"reasons": []
|
|
6044
|
+
}
|
|
6045
|
+
},
|
|
6024
6046
|
{
|
|
6025
6047
|
"id": "bill-gates",
|
|
6026
6048
|
"path": "skills/bill-gates",
|
|
@@ -11194,15 +11216,17 @@
|
|
|
11194
11216
|
"date_added": "2026-05-10",
|
|
11195
11217
|
"plugin": {
|
|
11196
11218
|
"targets": {
|
|
11197
|
-
"codex": "
|
|
11198
|
-
"claude": "
|
|
11219
|
+
"codex": "blocked",
|
|
11220
|
+
"claude": "blocked"
|
|
11199
11221
|
},
|
|
11200
11222
|
"setup": {
|
|
11201
11223
|
"type": "manual",
|
|
11202
11224
|
"summary": "Install the ejentum-mcp MCP server (`npx -y ejentum-mcp`) and provide an EJENTUM_API_KEY env var (free tier: 100 calls, no card, at https://ejentum.com/pricing). Add the server to your client's mcpServers config (Claude Code, Cursor, Cline, Windsurf, Codex CLI, Gemini CLI, Antigravity, or VS Code Copilot Chat).",
|
|
11203
11225
|
"docs": "https://github.com/ejentum/ejentum-mcp#installation"
|
|
11204
11226
|
},
|
|
11205
|
-
"reasons": [
|
|
11227
|
+
"reasons": [
|
|
11228
|
+
"explicit_target_restriction"
|
|
11229
|
+
]
|
|
11206
11230
|
}
|
|
11207
11231
|
},
|
|
11208
11232
|
{
|
|
@@ -15974,9 +15998,9 @@
|
|
|
15974
15998
|
"claude": "supported"
|
|
15975
15999
|
},
|
|
15976
16000
|
"setup": {
|
|
15977
|
-
"type": "
|
|
15978
|
-
"summary": "",
|
|
15979
|
-
"docs":
|
|
16001
|
+
"type": "manual",
|
|
16002
|
+
"summary": "Install yt-dlp locally before running ingest.py; the script only accepts http(s) YouTube video URLs and writes markdown into the selected vault.",
|
|
16003
|
+
"docs": "SKILL.md"
|
|
15980
16004
|
},
|
|
15981
16005
|
"reasons": []
|
|
15982
16006
|
}
|
|
@@ -18829,6 +18853,28 @@
|
|
|
18829
18853
|
"reasons": []
|
|
18830
18854
|
}
|
|
18831
18855
|
},
|
|
18856
|
+
{
|
|
18857
|
+
"id": "mercury-mcp",
|
|
18858
|
+
"path": "skills/mercury-mcp",
|
|
18859
|
+
"category": "uncategorized",
|
|
18860
|
+
"name": "mercury-mcp",
|
|
18861
|
+
"description": "Cheatsheet for the Mercury (proton) MCP tools. Use when connected to the Mercury MCP server to look up which mercury_* tool to call for messaging teammates, threads, tasks, automations, or admin team-graph edits.",
|
|
18862
|
+
"risk": "safe",
|
|
18863
|
+
"source": "community",
|
|
18864
|
+
"date_added": "2026-05-19",
|
|
18865
|
+
"plugin": {
|
|
18866
|
+
"targets": {
|
|
18867
|
+
"codex": "supported",
|
|
18868
|
+
"claude": "supported"
|
|
18869
|
+
},
|
|
18870
|
+
"setup": {
|
|
18871
|
+
"type": "none",
|
|
18872
|
+
"summary": "",
|
|
18873
|
+
"docs": null
|
|
18874
|
+
},
|
|
18875
|
+
"reasons": []
|
|
18876
|
+
}
|
|
18877
|
+
},
|
|
18832
18878
|
{
|
|
18833
18879
|
"id": "mermaid-expert",
|
|
18834
18880
|
"path": "skills/mermaid-expert",
|
|
@@ -20115,20 +20161,22 @@
|
|
|
20115
20161
|
"category": "research",
|
|
20116
20162
|
"name": "news-sentiment-engine",
|
|
20117
20163
|
"description": "Multi-source RSS news aggregation with Claude-powered sentiment analysis and structured briefing output",
|
|
20118
|
-
"risk": "
|
|
20164
|
+
"risk": "critical",
|
|
20119
20165
|
"source": "community",
|
|
20120
20166
|
"date_added": "2026-05-13",
|
|
20121
20167
|
"plugin": {
|
|
20122
20168
|
"targets": {
|
|
20123
|
-
"codex": "
|
|
20124
|
-
"claude": "
|
|
20169
|
+
"codex": "blocked",
|
|
20170
|
+
"claude": "blocked"
|
|
20125
20171
|
},
|
|
20126
20172
|
"setup": {
|
|
20127
20173
|
"type": "none",
|
|
20128
20174
|
"summary": "",
|
|
20129
20175
|
"docs": null
|
|
20130
20176
|
},
|
|
20131
|
-
"reasons": [
|
|
20177
|
+
"reasons": [
|
|
20178
|
+
"explicit_target_restriction"
|
|
20179
|
+
]
|
|
20132
20180
|
}
|
|
20133
20181
|
},
|
|
20134
20182
|
{
|
|
@@ -21916,6 +21964,28 @@
|
|
|
21916
21964
|
"reasons": []
|
|
21917
21965
|
}
|
|
21918
21966
|
},
|
|
21967
|
+
{
|
|
21968
|
+
"id": "photopea-embedded-editor",
|
|
21969
|
+
"path": "skills/photopea-embedded-editor",
|
|
21970
|
+
"category": "uncategorized",
|
|
21971
|
+
"name": "photopea-embedded-editor",
|
|
21972
|
+
"description": "Embed Photopea in web apps using photopea.js. Covers embedding, file I/O, scripting, exporting, layers, text, filters, and the full Photoshop-compatible API.",
|
|
21973
|
+
"risk": "safe",
|
|
21974
|
+
"source": "community",
|
|
21975
|
+
"date_added": "2026-05-20",
|
|
21976
|
+
"plugin": {
|
|
21977
|
+
"targets": {
|
|
21978
|
+
"codex": "supported",
|
|
21979
|
+
"claude": "supported"
|
|
21980
|
+
},
|
|
21981
|
+
"setup": {
|
|
21982
|
+
"type": "none",
|
|
21983
|
+
"summary": "",
|
|
21984
|
+
"docs": null
|
|
21985
|
+
},
|
|
21986
|
+
"reasons": []
|
|
21987
|
+
}
|
|
21988
|
+
},
|
|
21919
21989
|
{
|
|
21920
21990
|
"id": "php-pro",
|
|
21921
21991
|
"path": "skills/php-pro",
|
|
@@ -27762,6 +27832,28 @@
|
|
|
27762
27832
|
"reasons": []
|
|
27763
27833
|
}
|
|
27764
27834
|
},
|
|
27835
|
+
{
|
|
27836
|
+
"id": "subagent-orchestrator",
|
|
27837
|
+
"path": "skills/subagent-orchestrator",
|
|
27838
|
+
"category": "uncategorized",
|
|
27839
|
+
"name": "subagent-orchestrator",
|
|
27840
|
+
"description": "Coordinate quota-aware parallel subagents for large, multi-file Antigravity tasks.",
|
|
27841
|
+
"risk": "safe",
|
|
27842
|
+
"source": "community",
|
|
27843
|
+
"date_added": null,
|
|
27844
|
+
"plugin": {
|
|
27845
|
+
"targets": {
|
|
27846
|
+
"codex": "supported",
|
|
27847
|
+
"claude": "supported"
|
|
27848
|
+
},
|
|
27849
|
+
"setup": {
|
|
27850
|
+
"type": "none",
|
|
27851
|
+
"summary": "",
|
|
27852
|
+
"docs": null
|
|
27853
|
+
},
|
|
27854
|
+
"reasons": []
|
|
27855
|
+
}
|
|
27856
|
+
},
|
|
27765
27857
|
{
|
|
27766
27858
|
"id": "subject-line-psychologist",
|
|
27767
27859
|
"path": "skills/subject-line-psychologist",
|
|
@@ -29198,20 +29290,22 @@
|
|
|
29198
29290
|
"category": "developer-tools",
|
|
29199
29291
|
"name": "tokenwise",
|
|
29200
29292
|
"description": "Measurement-driven model router for Claude Code. Routes Haiku/Sonnet/Opus per task class, logs every routed task with real $ numbers, and A/B tests cheaper tiers before you trust the savings.",
|
|
29201
|
-
"risk": "
|
|
29293
|
+
"risk": "critical",
|
|
29202
29294
|
"source": "community",
|
|
29203
29295
|
"date_added": "2026-05-12",
|
|
29204
29296
|
"plugin": {
|
|
29205
29297
|
"targets": {
|
|
29206
|
-
"codex": "
|
|
29207
|
-
"claude": "
|
|
29298
|
+
"codex": "blocked",
|
|
29299
|
+
"claude": "blocked"
|
|
29208
29300
|
},
|
|
29209
29301
|
"setup": {
|
|
29210
29302
|
"type": "none",
|
|
29211
29303
|
"summary": "",
|
|
29212
29304
|
"docs": null
|
|
29213
29305
|
},
|
|
29214
|
-
"reasons": [
|
|
29306
|
+
"reasons": [
|
|
29307
|
+
"explicit_target_restriction"
|
|
29308
|
+
]
|
|
29215
29309
|
}
|
|
29216
29310
|
},
|
|
29217
29311
|
{
|