mission-lifecycle

mission-lifecycle is a skill for Claude Code from AURORA-NEURO/aurora-agent. It costs 70 tokens per session (825 once invoked), scanned A, original, Apache-2.0.

A guide for creating and running AURORA Agent missions, which are ordered plans made from MCP tool calls. A directed acyclic graph is a plan where dependencies determine which steps can run and cycles are not allowed.

In plain words
What is it for?
Use it to define tool-call steps, set dependencies and allow-lists, run missions synchronously or asynchronously, and connect evaluator reviews.
Why use it?
It validates mission structure and permissions before execution, making refused operations and incomplete results explicit.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the aurora-agent plugin — 4 skills, 7 commands, 1 agent shipped together

Good fit Use it to define tool-call steps, set dependencies and allow-lists, run missions synchronously or asynchronously, and connect evaluator reviews.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aurora-neuro/aurora-agent/mission-lifecycle
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add AURORA-NEURO/aurora-agent --skill mission-lifecycle
Clone the repo
git clone --depth 1 https://github.com/AURORA-NEURO/aurora-agent

Made for: Claude Code.

Or install aurora-agent, the plugin that ships this one along with the rest of its 4 skills, 7 commands, 1 agent.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mission-lifecycle

README.md
[![agentmods](https://agentmods.dev/badge/skills/aurora-neuro/aurora-agent/mission-lifecycle/github.svg)](https://agentmods.dev/skills/aurora-neuro/aurora-agent/mission-lifecycle)
Your own site
<a href="https://agentmods.dev/skills/aurora-neuro/aurora-agent/mission-lifecycle"><img src="https://agentmods.dev/badge/skills/aurora-neuro/aurora-agent/mission-lifecycle/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mission-lifecycle

Your own site · 80×15
<a href="https://agentmods.dev/skills/aurora-neuro/aurora-agent/mission-lifecycle"><img src="https://agentmods.dev/badge/skills/aurora-neuro/aurora-agent/mission-lifecycle.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 70 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 825 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00070 $0.00825
Opus 5 $0.00035 $0.00413
Sonnet 5 $0.00014 $0.00165
Haiku 4.5 $0.00007 $0.00082

Measured 9d ago against content hash 7d4ee55c1494, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

mission-lifecycle scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/aurora-agent/skills/mission-lifecycle/SKILL.md · 72 lines

How it starts

The opening of the file, as written. The whole thing — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Mission lifecycle

A mission is a validated DAG of MCP tool calls executed in-process with an explicit least-authority policy. Refusals are preserved verbatim; a structural success is never presented as a scientific one.

Mission shape (the fields that trip people)

{
  "mission_id": "my-mission-1",
  "goal": "compile the reference world",
  "steps": [{
    "id": "compile",
    "domain": "fiber",
    "capability": "context_compile",
    "objective": "compile at L0",
    "tool": "fiber_compile",
    "arguments": { "world": "fixtures/fiber-v0.1/radiogenomic_world.json",
                    "query": "fixtures/fiber-v0.1/leakage_query.json" },
    "depends_on": []
  }],
  "policy": { "execute": true, "allowed_tools": ["fiber_compile"],
               "allow_side_effects": false, "max_steps": 4 }
}
  • Every step requires domain AND capability (labels retained for routing and audit; the server does not infer semantics). Missing either → invalid_mission.
  • policy.allowed_tools is an allow-list; a step naming a tool outside it is refused: "agent mission refused: step X requests tool Y, which is not allow-listed".
  • Step bindings are validated JSON pointers pulling upstream results into dependent arguments; agent_mission cannot recurse into itself.

Three dispatch paths, one kernel

  1. Preflight (POST /v1/missions/preflight on the gateway): validates and plans; returns preflight: true, dispatch: "not_started", the digest-bound wave plan, and an operations_evidence block. Nothing executes. Report dispatch and the gate decision verbatim.
  2. Synchronous (agent_mission MCP tool): executes immediately, returns the full report — mission_status, per-step results[] (raw JSON-RPC envelopes preserved, including refusals), a clock-free execution_trace, and claim_lineage (claim_status: "unreviewed", readiness_claimed: false until evaluator evidence exists — report these verbatim).
  3. Async (POST /v1/missions): queued with retry/lease semantics — but fail-closed: without a current operator gate acceptance covering every selected domain evidence gate it refuses with operations_gate_acceptance_required. That is working as designed, not a bug. The acceptance is an operator decision recorded via POST /v1/operations/gate-reviews with {gate_digest, reviewer, rationale, group_ids, accepted_gates} — it does not make the evidence better, and preflight's dispatch_prerequisite: "acceptance_required" names the gap.

Read the full file on GitHub · 72 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 72 lines · 70 tokens per session scan A 7d4ee55c1494

Subscribe to this mod's changes

mission-lifecycle is a skill published in the GitHub repository AURORA-NEURO/aurora-agent (1 stars, last pushed today), licensed Apache-2.0. It adds 70 tokens to every session and 825 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

halopsa

Every HaloPSA, HaloITSM and HaloCRM feature, plus a local SQLite store and cross-entity views the API can't return. Trigger phrases: triage my Halo queue, check SLA breaches in HaloPSA, who is overloaded in Halo, client card for Acme in Halo, Halo contract burn-down, what changed in Halo since this morning, find time…

Servosity/msp-skills · 104 tokens

veeam

Use when the user asks to check Veeam backup health across customers, find failing or stale backup jobs, surface workloads past their RPO, triage VSPC alarms, or report per-tenant license usage from a Veeam Service Provider Console. Syncs every tenant into a local SQLite mirror so it answers multi-tenant backup…

Servosity/msp-skills · 136 tokens

cipp

First single-binary CLI for CIPP - offline SQLite store, fleet posture analytics, and cross-tenant fan-out no other CIPP tool has. Trigger phrases: check MFA across all my tenants, find unused M365 licenses, offboard users from a CSV in CIPP, which tenants drifted off baseline, list CIPP tenants, use cipp, run…

Servosity/msp-skills · 89 tokens

appdirect

Every documented AppDirect marketplace operation in one binary, plus offline sync and billing-reconciliation joins. Trigger phrases: reconcile appdirect billing, which appdirect payments failed this week, what changed in appdirect subscriptions, show my appdirect pipeline, appdirect company 360, use appdirect, run…

Servosity/msp-skills · 74 tokens

connectwise-manage

Every ConnectWise PSA workflow from the terminal - with a typed conditions query builder, offline SQLite sync, and cross-entity views (unbilled work, account 360, board triage) the PSA web UI can't give you. Trigger phrases: list connectwise tickets, triage the help desk board, find unbilled time in connectwise…

Servosity/msp-skills · 115 tokens

immybot

Every ImmyBot endpoint typed, plus a local SQLite mirror that answers the cross-tenant questions the web UI cannot. Trigger phrases: what failed in last night's maintenance window, which tenants are still on an old version of chrome, why didn't this computer get the deployment, what changed in the fleet since…

Servosity/msp-skills · 97 tokens