Entity Mission Control Bootstrap

Live Operations Advanced External Bundle v1.3.2

Turn a loose cluster of agents into a repeatable ops surface. Installs the Entity Mission Control helper runtime for a crew of agents — shared scripts, structured task intake, per-agent manifests, and supervised rollout.

Canonical source: github.com/henrino3/enterprise-crew-skills/entity-mc

Install

git clone https://github.com/henrino3/enterprise-crew-skills.git /tmp/enterprise-crew-skills
mkdir -p skills
cp -R /tmp/enterprise-crew-skills/entity-mc skills/entity-mc
bash skills/entity-mc/install-auto.sh

This clones the bundle, copies it into your workspace, and runs the auto installer. The installer:

Verify

bash skills/entity-mc/verify.sh --manifest skills/entity-mc/manifests/auto.env

Per-Agent Install

After the auto install validates locally, apply per-agent manifests to each target host:

bash skills/entity-mc/install.sh --manifest skills/entity-mc/manifests/<agent>.env

Then verify on the target:

bash skills/entity-mc/verify.sh --manifest skills/entity-mc/manifests/<agent>.env

What You Get

skill
Defines the bootstrap workflow, shared runtime assumptions, and rollout guardrails.
bundle
mc.sh, mc-auto-pull.sh, mc-assign-model.sh, mc-build-context.sh, mc-stall-check.sh, mc-intake.sh — shared across all agents.
script
Conservative JSON/JSONL intake helper. Dedupes and creates MC tasks from explicit structured signals.
doc
Public-safe MC operating memory: task lifecycle, review/blocker contract, evidence rules, runtime behavior. Injected by mc-build-context.sh.
doc
End-to-end explanation of install, default crons, portable context, intake policy setup, watcher JSONL flow, and verification.
manifest
Agent-specific .env manifests that map the canonical runtime onto each operator without duplicating scripts.
script
Idempotent install, verification, and rollback helpers for supervised rollout.

Verification Steps

Source bundle review

Confirm the linked GitHub bundle exposes SKILL.md, source-scripts/, context/, manifests/*.env, install.sh, verify.sh, rollback.sh, and VERSION.

Bundle install present
test -f skills/entity-mc/SKILL.md && ls skills/entity-mc

Expected: The installed workspace path contains SKILL.md, source-scripts/, context/mc-intake-setup.md, manifests/auto.env, install-auto.sh, install.sh, verify.sh, rollback.sh, and VERSION. The crontab contains exactly one ENTITY_MC block for the agent.

Runtime scripts present
ls scripts/mc*.sh

Expected: All six runtime scripts are present and executable (mc.sh, mc-auto-pull.sh, mc-assign-model.sh, mc-build-context.sh, mc-stall-check.sh, mc-intake.sh).

Portable context present
ls .entity-mc/context/*.md
bash scripts/mc-build-context.sh '{"task_id":"0","task_name":"context smoke","task_description":"smoke","skill":"none","context":""}' | grep "Entity MC Operating Context"

Expected: Context files exist and the generated prompt includes "Entity MC Operating Context".

Intake dry run
bash scripts/mc-intake.sh create --title "Entity MC intake smoke" --description "Dry run" --assignee Ada --dry-run

Expected: JSON output with action=dry_run and a payload containing metadata.intake=true.

Requirements

Current Limits

Operator Notes