opencode-skills-collection 3.0.22 → 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 +3 -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/news-sentiment-engine/SKILL.md +9 -1
- 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 +64 -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
|
}
|
|
@@ -20137,20 +20161,22 @@
|
|
|
20137
20161
|
"category": "research",
|
|
20138
20162
|
"name": "news-sentiment-engine",
|
|
20139
20163
|
"description": "Multi-source RSS news aggregation with Claude-powered sentiment analysis and structured briefing output",
|
|
20140
|
-
"risk": "
|
|
20164
|
+
"risk": "critical",
|
|
20141
20165
|
"source": "community",
|
|
20142
20166
|
"date_added": "2026-05-13",
|
|
20143
20167
|
"plugin": {
|
|
20144
20168
|
"targets": {
|
|
20145
|
-
"codex": "
|
|
20146
|
-
"claude": "
|
|
20169
|
+
"codex": "blocked",
|
|
20170
|
+
"claude": "blocked"
|
|
20147
20171
|
},
|
|
20148
20172
|
"setup": {
|
|
20149
20173
|
"type": "none",
|
|
20150
20174
|
"summary": "",
|
|
20151
20175
|
"docs": null
|
|
20152
20176
|
},
|
|
20153
|
-
"reasons": [
|
|
20177
|
+
"reasons": [
|
|
20178
|
+
"explicit_target_restriction"
|
|
20179
|
+
]
|
|
20154
20180
|
}
|
|
20155
20181
|
},
|
|
20156
20182
|
{
|
|
@@ -27806,6 +27832,28 @@
|
|
|
27806
27832
|
"reasons": []
|
|
27807
27833
|
}
|
|
27808
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
|
+
},
|
|
27809
27857
|
{
|
|
27810
27858
|
"id": "subject-line-psychologist",
|
|
27811
27859
|
"path": "skills/subject-line-psychologist",
|
|
@@ -29242,20 +29290,22 @@
|
|
|
29242
29290
|
"category": "developer-tools",
|
|
29243
29291
|
"name": "tokenwise",
|
|
29244
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.",
|
|
29245
|
-
"risk": "
|
|
29293
|
+
"risk": "critical",
|
|
29246
29294
|
"source": "community",
|
|
29247
29295
|
"date_added": "2026-05-12",
|
|
29248
29296
|
"plugin": {
|
|
29249
29297
|
"targets": {
|
|
29250
|
-
"codex": "
|
|
29251
|
-
"claude": "
|
|
29298
|
+
"codex": "blocked",
|
|
29299
|
+
"claude": "blocked"
|
|
29252
29300
|
},
|
|
29253
29301
|
"setup": {
|
|
29254
29302
|
"type": "none",
|
|
29255
29303
|
"summary": "",
|
|
29256
29304
|
"docs": null
|
|
29257
29305
|
},
|
|
29258
|
-
"reasons": [
|
|
29306
|
+
"reasons": [
|
|
29307
|
+
"explicit_target_restriction"
|
|
29308
|
+
]
|
|
29259
29309
|
}
|
|
29260
29310
|
},
|
|
29261
29311
|
{
|