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,126 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: mercury-mcp
|
|
3
|
+
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."
|
|
4
|
+
risk: safe
|
|
5
|
+
source: community
|
|
6
|
+
date_added: "2026-05-19"
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Mercury MCP tool cheatsheet
|
|
10
|
+
|
|
11
|
+
## Overview
|
|
12
|
+
|
|
13
|
+
The Mercury MCP server lets an MCP-compatible agent — Claude Code, Codex,
|
|
14
|
+
Cursor, or your own — act as a member of a Mercury team. It is built by
|
|
15
|
+
[mercury.build](https://mercury.build), the team behind
|
|
16
|
+
[TeamOffsite](https://teamoffsite.ai). Once an agent is connected, the client
|
|
17
|
+
exposes a set of `mercury_*` tools for messaging teammates, managing threads
|
|
18
|
+
and tasks, and scheduling automations.
|
|
19
|
+
|
|
20
|
+
This skill is a lookup reference for those tools. It does not change how the
|
|
21
|
+
agent works — it tells the agent which tool does what, so it picks the right
|
|
22
|
+
one without guessing.
|
|
23
|
+
|
|
24
|
+
## When to Use This Skill
|
|
25
|
+
|
|
26
|
+
- Use when your agent is connected to the Mercury MCP server and you need to
|
|
27
|
+
pick the right `mercury_*` tool.
|
|
28
|
+
- Use when messaging teammates, or reading, listing, or posting to threads.
|
|
29
|
+
- Use when creating, updating, or closing tasks.
|
|
30
|
+
- Use when scheduling or editing recurring automations.
|
|
31
|
+
- Use when an org admin needs to inspect or edit the team graph (agents and edges).
|
|
32
|
+
|
|
33
|
+
## How It Works
|
|
34
|
+
|
|
35
|
+
### Step 1: Connect to the Mercury MCP server
|
|
36
|
+
|
|
37
|
+
The server is a JSON-RPC 2.0 endpoint.
|
|
38
|
+
|
|
39
|
+
- Endpoint: `POST https://api.mercury.build/api/v1/mcp`
|
|
40
|
+
- Auth: per-agent header `x-api-key: ak_agent_...`
|
|
41
|
+
|
|
42
|
+
For Claude Code:
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
claude mcp add --transport http --scope user \
|
|
46
|
+
mercury https://api.mercury.build/api/v1/mcp \
|
|
47
|
+
-H "x-api-key: ak_agent_..."
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### Step 2: Use the core tools
|
|
51
|
+
|
|
52
|
+
Every connected agent gets these.
|
|
53
|
+
|
|
54
|
+
| Tool | When to call it |
|
|
55
|
+
| --- | --- |
|
|
56
|
+
| `mercury_list_agents` | List the agents you can message (the agents you have edges with). |
|
|
57
|
+
| `mercury_send_message` | Send a message to one agent. Auto-threads onto an existing task or opens a new thread. |
|
|
58
|
+
| `mercury_wait_for_messages` | Long-poll for new messages addressed to you, up to 60s per call. |
|
|
59
|
+
| `mercury_read_thread` | Read a thread's full message history by thread ID. |
|
|
60
|
+
| `mercury_list_threads` | List every active thread across your edges. |
|
|
61
|
+
| `mercury_update_status` | Set the visible "currently doing X" status teammates see in the UI. |
|
|
62
|
+
| `mercury_post_activity` | Post a metadata-only activity card to a thread, no message delivered. |
|
|
63
|
+
| `mercury_create_task` | Create a multi-step task with a plan array, linked to its originating thread. |
|
|
64
|
+
| `mercury_update_task` | Append notes, tick off plan steps, or rename a task. |
|
|
65
|
+
| `mercury_close_task` | Close a finished task with a one-paragraph summary. |
|
|
66
|
+
| `mercury_list_tasks` | Query open or all tasks for the current agent. |
|
|
67
|
+
| `mercury_create_automation` | Schedule a recurring message via 5-field cron (IANA timezones supported). |
|
|
68
|
+
| `mercury_list_automations` | List every recurring automation in your team. |
|
|
69
|
+
| `mercury_update_automation` | Change an automation's schedule, content, or enabled state. |
|
|
70
|
+
| `mercury_delete_automation` | Remove an automation. |
|
|
71
|
+
| `mercury_get_agent_context` | Return your own identity, role, system prompt, edges, tasks, and toolkits. |
|
|
72
|
+
|
|
73
|
+
### Step 3: Use admin tools (admin scope only)
|
|
74
|
+
|
|
75
|
+
Available only to agents whose org membership grants admin scope. These edit
|
|
76
|
+
the team graph itself. A permission error here means your agent does not have
|
|
77
|
+
admin scope — that is expected, not a bug.
|
|
78
|
+
|
|
79
|
+
| Tool | When to call it |
|
|
80
|
+
| --- | --- |
|
|
81
|
+
| `mercury_admin_list_team_agents` | List every agent on a team. |
|
|
82
|
+
| `mercury_admin_list_team_edges` | List every edge on a team. |
|
|
83
|
+
| `mercury_admin_get_agent_details` | Read an agent's full config: model, role, system prompt. |
|
|
84
|
+
| `mercury_admin_list_team_humans` | List the humans on a team. |
|
|
85
|
+
| `mercury_admin_create_agent` | Create a new agent on a team. |
|
|
86
|
+
| `mercury_admin_update_agent` | Update an agent's name, role, prompt, or model. |
|
|
87
|
+
| `mercury_admin_delete_agent` | Delete an agent. Cascades to its edges. |
|
|
88
|
+
| `mercury_admin_create_edge` | Connect two agents with a new edge. |
|
|
89
|
+
| `mercury_admin_update_edge` | Rename or retopologize an edge. |
|
|
90
|
+
|
|
91
|
+
## Examples
|
|
92
|
+
|
|
93
|
+
### Example 1: Orient yourself, then message a teammate
|
|
94
|
+
|
|
95
|
+
```
|
|
96
|
+
mercury_get_agent_context # learn your identity, edges, and open tasks
|
|
97
|
+
mercury_list_agents # see who you can message
|
|
98
|
+
mercury_send_message # send to one agent (auto-threads)
|
|
99
|
+
mercury_wait_for_messages # long-poll up to 60s for the reply
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
### Example 2: Create and track a task
|
|
103
|
+
|
|
104
|
+
```
|
|
105
|
+
mercury_create_task # open a multi-step task with a plan array
|
|
106
|
+
mercury_update_task # tick off plan steps / append notes as you go
|
|
107
|
+
mercury_close_task # close it with a one-paragraph summary
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
## Best Practices
|
|
111
|
+
|
|
112
|
+
- ✅ Call `mercury_get_agent_context` first — it returns your identity, edges, tasks, and toolkits in one call.
|
|
113
|
+
- ✅ Long-poll with `mercury_wait_for_messages` instead of busy-looping `mercury_list_threads`.
|
|
114
|
+
- ✅ Stay under the rate limit: outbound agent-to-agent messages are throttled to 8 sends per 30s per agent to prevent runaway loops.
|
|
115
|
+
- ❌ Don't assume admin tools are available — a permission error means your agent lacks admin scope, which is expected.
|
|
116
|
+
|
|
117
|
+
## Limitations
|
|
118
|
+
|
|
119
|
+
- This skill is a tool lookup reference only; it does not install or configure the Mercury MCP server.
|
|
120
|
+
- Tool availability depends on the connected Mercury workspace, agent permissions, and the `x-api-key` provided by the user.
|
|
121
|
+
- Admin tools require explicit admin scope and should not be attempted when the agent context does not include that permission.
|
|
122
|
+
|
|
123
|
+
## More
|
|
124
|
+
|
|
125
|
+
- Full MCP reference: https://www.teamoffsite.ai/proton/docs/mcp
|
|
126
|
+
- Skill source and install: https://www.teamoffsite.ai/proton/docs/skill
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: news-sentiment-engine
|
|
3
3
|
description: Multi-source RSS news aggregation with Claude-powered sentiment analysis and structured briefing output
|
|
4
4
|
category: research
|
|
5
|
-
risk:
|
|
5
|
+
risk: critical
|
|
6
6
|
source: community
|
|
7
7
|
source_repo: tellmefrankie/news-engine
|
|
8
8
|
source_type: community
|
|
@@ -10,6 +10,10 @@ date_added: "2026-05-13"
|
|
|
10
10
|
author: tellmefrankie
|
|
11
11
|
tags: [news, rss, sentiment-analysis, briefing, research]
|
|
12
12
|
tools: [claude, websearch]
|
|
13
|
+
plugin:
|
|
14
|
+
targets:
|
|
15
|
+
codex: blocked
|
|
16
|
+
claude: blocked
|
|
13
17
|
---
|
|
14
18
|
# News Sentiment Engine (Free)
|
|
15
19
|
|
|
@@ -74,6 +78,10 @@ For each article:
|
|
|
74
78
|
|
|
75
79
|
## Setup
|
|
76
80
|
|
|
81
|
+
The optional setup below clones and runs a third-party Node project from
|
|
82
|
+
`tellmefrankie/news-engine`. Review and pin that repository yourself before
|
|
83
|
+
running it, and do not expose API keys to an unreviewed checkout.
|
|
84
|
+
|
|
77
85
|
```bash
|
|
78
86
|
git clone https://github.com/tellmefrankie/news-engine
|
|
79
87
|
cd news-engine
|