Agent skill · Workflow & Productivity

create-mission

Create a new proactive background mission for the Nexus agent. A mission is a scheduled, autonomous task that the agent executes on a cron schedule without user interaction. Use this skill when the user asks to monitor something automatically, run a recurring check, or set up a background task. proactive, cron, periodic.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill create-mission --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Version: 1.0.0
Path: skills/agent/create-mission/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Create Mission Creates a new proactive background mission that the Nexus agent will execute autonomously on a schedule. ## Preconditions Before applying this skill, verify: - User has provided a clear goal for the mission - A schedule has been specified or can be inferred (default: every hour) - The goal is achievable with the available MCP tools ## Actions ### 1. Determine Mission Parameters Extract from the user's request: ```yaml title: Short human-readable title (max 80 chars) goal: Natural language description of what the agent should do schedule: Cron expression (default: "0 * * * *" = every hour) mcp_policy: "nexus" for safe missions, "nexus-proactive" for cluster access max_tool_calls: 1-50 (default: 20) notify_on: ["anomaly", "error"] — when to notify the user ``` **Schedule reference:** | Schedule | Cron Expression | |---|---| | Every 5 minutes | `*/5 * * * *` | | Every 15 minutes | `*/15 * * * *` | | Every 30 minutes | `*/30 * * * *` | | Every hour | `0 * * * *` | | Every 6 hours | `0 */6 * * *` | | Twice daily | `0 9,21 * * *` | | Daily at 9am | `0 9 * * *` | | Weekly Monday | `0 9 * * 1` | **Policy reference:** - `nexus` — memory, skills, fetch (safe, no cluster acce

What's inside
Steps it walks through
  1. Preconditions
  2. Actions
  3. 1. Determine Mission Parameters
  4. 2. Validate Parameters
  5. 3. Create the Mission
  6. 4. Confirm to User
  7. Success Criteria
  8. Failure Handling
  9. Examples
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the create-mission skill do?

Create a new proactive background mission for the Nexus agent. A mission is a scheduled, autonomous task that the agent executes on a cron schedule without user interaction. Use this skill when the user asks to monitor something automatically, run a recurring check, or set up a background task. proactive, cron, periodic.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill create-mission --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going