
Mission Orchestrator
Match agent governance weight to mission complexity so quickfixes stay light and architecture work gets full checkpoints without drowning every task in rules.
Install
npx skills add https://github.com/athola/claude-night-market --skill mission-orchestratorWhat is this skill?
- Three constraint profiles: Minimal (core safety only), Standard (scope-guard and proof-of-work), Full (all constraints,
- Default mapping: quickfix → Minimal, tactical → Standard, standard and full → Full
- Frames overload past ~150 soft rules as compliance collapse—focused ~50-line context beats unfocused 300-line CLAUDE.md
- Supports manual profile override when mission complexity does not match default mission type
- Parent attune:mission-orchestrator; estimated_tokens 180 in frontmatter
Adoption & trust: 1 installs on skills.sh; 304 GitHub stars; 2/3 security scanners passed (skills.sh audits); trending (+100% hot-view momentum).
Recommended Skills
Journey fit
Build PM is the first shelf where mission type and planning depth are chosen before implementation; adaptive constraints gate how heavy that plan-and-execute loop is. PM subphase fits orchestration of mission profiles (quickfix through full) rather than a single integration or frontend task.
Common Questions / FAQ
Is Mission Orchestrator safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Mission Orchestrator
# Adaptive Constraints (Nen-Free Zones) ## Problem All missions load the same governance weight regardless of complexity. Past 150 soft rules, compliance drops for all rules. A focused 50-line CLAUDE.md beats an unfocused 300-line one; bad context performs worse than none. SWE-agent mini proves 100 lines of focused code reaches 74% on SWE-bench Verified. Simple tasks need less governance, not the same governance. ## Constraint Profiles | Profile | Task Type | Constraints Loaded | Governance | |---------|-----------|-------------------|------------| | Minimal | quickfix, single-file changes | Core safety only (no `--no-verify`, no secrets) | No war-room, no scope-guard, no plan review | | Standard | tactical missions, multi-file | Core safety, scope-guard, and proof-of-work | Plan review, single checkpoint | | Full | full/standard missions, architecture changes | All constraints, war-room, and extended thinking | Full checkpoints, iteration governor | ## Profile Selection ### By Mission Type | Mission Type | Default Profile | |-------------|----------------| | `quickfix` | Minimal | | `tactical` | Standard | | `standard` | Full | | `full` | Full | ### Manual Override Override with `--constraints=minimal|standard|full`. The override bypasses mission-type defaults and risk upgrades (always wins). ### User Directive Override (Natural Language) Parse the command-args and any free-text the user provides at mission start. If a recognized trust signal is present, treat it as a manual override with the tier shown below. Directive overrides behave exactly like `--constraints=` flags: they win over mission-type defaults and risk upgrades, but never bypass the Safety Floor. | User phrase contains | Effective profile | Notes | |----------------------|-------------------|-------| | "ignore scope guard" / "skip scope guard" | Standard with scope-guard stripped | Acts like Minimal for scope, keeps proof-of-work | | "ultrathink" / "deep dive" / "be thorough" | Full quality, Minimal checkpoints | Use full reasoning depth, skip blocking gates | | "don't ask" / "stop asking" / "no more questions" | Minimal | Auto-continue all phase transitions | | "be autonomous" / "trust your judgment" | Minimal | Same as above | | "I trust you" / "go ahead" / "just do it" | Minimal | Same as above | | "ask before each step" / "supervised" | Full | Force maximum oversight | | "explain everything" / "teach me" | Full and verbose | Pair with explanatory output style | Match is case-insensitive substring. Multiple matches: the most-restrictive directive wins (Full beats Minimal). The orchestrator records the matched directive and resulting profile in `.attune/mission-state.json` under `directive_override`: ```json { "directive_override": { "matched_phrase": "ignore scope guard", "effective_profile": "standard_minus_scope_guard", "matched_at": "2026-04-25T17:30:00Z" } } ``` When a directive override is detected, the orchestrator MUST acknowledge it once at mission start, then stop asking for the corresponding checkpoints. Repeated approval-seeking after a directive override is itself a workflow bug; see `/sanctum:fix-workflow` retrospectives for examples. #### What Directives Cannot Override The Safety Floor below applies regardless of directive. Even "trust me, just do it" cannot waive: - Pre-commit hooks - Proof-of-work evidence capture - Destructive-operation confirmation (rm -rf, force push, DROP TABLE, branch deletion) - External-facing actions (PR creation, issue comments, release tags) - Cost threshold breaches (token/time budget exceeded) When the orchestrator hits one of these even under a Minimal directive override, it pauses. The