mission-control
Integrate with Mission Control dashboard to report task progress, publish documents to the Library, request approvals, and submit project requests. Use this skill whenever you start, complete, or fail a task, need human approval, want to publish research/reports/documentation, or need to submit a new project request. This skill provides the HTTP endpoints and event formats for communicating with the Mission Control backend.
What this skill does
# Mission Control Integration Skill
You are connected to a Mission Control dashboard that tracks your work, manages projects and tasks, handles approvals, and stores documents in a Library. This skill tells you how to communicate with it.
## Overview
Mission Control is a database-backed dashboard running at `$MISSION_CONTROL_URL` (default: `http://localhost:8000`). It provides:
- **Pipeline**: Tasks flow through stages: backlog → todo → doing → review → done
- **Inbox**: A unified queue where humans review requests, approve work, and handle workflow gates
- **Library**: A curated document store for research, reports, documentation, and reference material
- **Costs**: Token spend tracking per session
- **Activity**: A chronological feed of all events
Your job is to report your progress so the dashboard stays accurate.
---
## Reporting Task Progress
When you are assigned a task (you'll see a task ID like `t_abc123`), report your progress at each stage by sending HTTP POST requests to the hooks endpoint.
### Endpoint
```
POST $MISSION_CONTROL_URL/api/hooks/event
Content-Type: application/json
X-Hook-Secret: $MISSION_CONTROL_HOOK_SECRET
```
### When Starting a Task
```json
{
"event": "task:started",
"agentId": "YOUR_AGENT_ID",
"taskId": "TASK_ID",
"data": { "message": "Beginning work on [description]" }
}
```
### When Making Progress
```json
{
"event": "task:progress",
"agentId": "YOUR_AGENT_ID",
"taskId": "TASK_ID",
"data": { "progress": 50, "message": "Completed first draft" }
}
```
### When Submitting for Review
Use this when your work is done and ready for human review. This automatically creates a review record in the Inbox with your deliverables and checklist.
```json
{
"event": "task:review",
"agentId": "YOUR_AGENT_ID",
"taskId": "TASK_ID",
"data": {
"work_summary": "Describe what you did and what the human should look at",
"deliverables": [
{ "name": "report.md", "type": "doc", "path": "/workspace/docs/report.md", "summary": "The main report" },
{ "name": "data.json", "type": "file", "path": "/workspace/data/output.json", "summary": "Raw analysis data" }
],
"checklist": [
{ "label": "Meets requirements", "checked": true },
{ "label": "No errors", "checked": true },
{ "label": "Well documented", "checked": false }
]
}
}
```
### When a Task is Complete (after human approval)
```json
{
"event": "task:completed",
"agentId": "YOUR_AGENT_ID",
"taskId": "TASK_ID",
"data": { "message": "Task completed successfully" }
}
```
### When a Task Fails
```json
{
"event": "task:failed",
"agentId": "YOUR_AGENT_ID",
"taskId": "TASK_ID",
"data": { "reason": "Explain what went wrong and why" }
}
```
---
## Publishing to the Library
When you produce research, reports, documentation, analysis, or any reference material, publish it to the Library so it's organized and searchable.
### Publishing a New Document
```json
{
"event": "library:publish",
"agentId": "YOUR_AGENT_ID",
"data": {
"title": "Document Title",
"content": "Full document content in markdown, JSON, or plain text",
"doc_type": "research",
"format": "markdown",
"collection_id": "col_research",
"projectId": "PROJECT_ID_IF_RELEVANT",
"source_path": "/workspace/docs/my-report.md"
}
}
```
**Document types**: `research`, `report`, `documentation`, `reference`, `template`, `note`, `analysis`, `brief`, `guide`, `other`
**Formats**: `markdown`, `html`, `code`, `json`, `text`, `csv`
**Default collections** (use these IDs):
- `col_research` — Research findings, competitive analysis, market data
- `col_reports` — Status reports, weekly summaries, metrics
- `col_docs` — Technical documentation, API docs, guides
- `col_reference` — Reference material, specifications, standards
- `col_templates` — Reusable templates and boilerplate
- `col_notes` — Meeting notes, scratch work, ideas
### Updating an Existing Document
```json
{
"event": "library:update",
"agentId": "YOUR_AGENT_ID",
"data": {
"doc_id": "DOCUMENT_ID",
"content": "Updated content",
"change_note": "What changed and why"
}
}
```
---
## Requesting Approvals
When you need human approval before proceeding (deploying to production, making purchases, deleting data, etc.), create a workflow gate:
```json
{
"event": "approval:needed",
"agentId": "YOUR_AGENT_ID",
"data": {
"type": "workflow_gate",
"title": "Deploy to production?",
"description": "All tests pass. 3 files changed. Ready to deploy.",
"urgency": "urgent",
"entityType": "task",
"entityId": "TASK_ID",
"resumeToken": "UNIQUE_TOKEN_TO_RESUME"
}
}
```
The human will see this in their Inbox and can approve or reject. If you provided a `resumeToken`, the backend stores it so you can check whether approval was granted.
**Urgency levels**: `critical`, `urgent`, `normal`, `low`
---
## Submitting Project Requests
When you identify new work that should be done (a bug you found, an improvement idea, research that's needed), submit a project request:
```json
{
"event": "request:submit",
"agentId": "YOUR_AGENT_ID",
"data": {
"title": "Request title",
"description": "Detailed description of what's needed and why",
"category": "bug",
"urgency": "urgent"
}
}
```
**Categories**: `feature`, `bug`, `research`, `content`, `ops`, `automation`, `general`
---
## Reporting Session Lifecycle
### When a Session Starts
Report session creation so Mission Control tracks active sessions:
```json
{
"event": "session:created",
"agentId": "YOUR_AGENT_ID",
"data": { "sessionId": "sess_abc123" }
}
```
### When a Session Ends (Reporting Costs)
When your session ends, report token usage so the Costs dashboard stays accurate:
```json
{
"event": "session:ended",
"agentId": "YOUR_AGENT_ID",
"data": {
"tokens": {
"model": "claude-sonnet-4-5",
"provider": "anthropic",
"input": 45000,
"output": 12000,
"cacheRead": 30000,
"totalCost": 0.82
}
}
}
```
---
## Reporting Agent Status
### When Idle (no more tasks)
```json
{
"event": "agent:idle",
"agentId": "YOUR_AGENT_ID",
"data": { "message": "All assigned tasks complete" }
}
```
### When an Error Occurs
```json
{
"event": "agent:error",
"agentId": "YOUR_AGENT_ID",
"data": { "error": "Description of the error", "context": "What you were trying to do" }
}
```
---
## Using the /mc Shorthand
If your session supports slash commands, you can use these shortcuts instead of crafting full HTTP requests:
```
/mc task:started <taskId>
/mc task:completed <taskId>
/mc task:failed <taskId> <reason>
/mc task:review <taskId>
/mc task:progress <taskId> <percentage> <message>
```
The lifecycle hook translates these into the proper API calls automatically.
---
## Polling for Pending Events
Mission Control pushes events to you via the gateway, but delivery isn't guaranteed (gateway might be down, session might have restarted). At the start of each session, check if any events are waiting for you:
```
GET $MISSION_CONTROL_URL/api/dispatch/pending/YOUR_AGENT_ID
```
Response:
```json
{
"events": [
{
"id": 1,
"event": "mc:project_kickoff",
"payload": { "type": "mc:event", "event": "mc:project_kickoff", "projectId": "abc", "projectName": "New Feature", "..." },
"created_at": "2026-03-21T20:00:00Z"
}
],
"count": 1
}
```
Calling this endpoint marks the events as delivered. Process each one according to the event type (see the outbound events section below).
To check without consuming: `GET /api/dispatch/pending/YOUR_AGENT_ID?peek=true`
To explicitly acknowledge after processing: `POST /api/dispatch/ack` with `{ "ids": [1, 2, 3] }`
**Best practice**: Check for pending events at session start and after each heartbeat.
---
## Best Practices
1. **Always report task:started** when you begin work — this moves the task to "In Progress" on the dashboard
2.Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.