Entity Mission Control Bootstrap
Turn a loose cluster of agents into a repeatable ops surface.
Installs from a real external skill bundle that bootstraps the Entity Mission Control helper runtime for a crew of agents with shared scripts, structured task intake, per-agent manifests, and supervised rollout steps.
GitHub source specs are not supported by every OpenClaw CLI build. OpenClaw 2026.5.4 accepts ClawHub slugs for `openclaw skills install`, not `github:owner/repo/path`, so this workflow uses a GitHub clone/copy fallback and then runs `install-auto.sh` to install wrappers, write the Entity MC cron block, and verify the result.
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 A reusable external ops bundle that keeps the helper runtime canonical, installs portable MC operating memory, applies per-agent manifests, creates tasks from structured intake, and gives operators a safe rollout plus rollback path.
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 Canonical source: https://github.com/henrino3/enterprise-crew-skills/tree/main/entity-mc
bash skills/entity-mc/verify.sh --manifest skills/entity-mc/manifests/auto.env - OpenClaw 2026.5.4 rejects `github:owner/repo/path` skill source specs as invalid skill slugs; GitHub-source install requires a newer/compatible CLI or the clone/copy/install-auto fallback above.
- Auto install writes auto-pull and stall-check crons by default; source-specific intake remains off unless explicitly enabled with `--enable-intake true` because it needs an inbox policy.
- The runtime artifacts live in the external skills repo, not in this website repo.
- Auto-pull executes existing tasks; automatic task creation requires explicit structured input or a source-specific watcher feeding mc-intake.sh.
- Portable context is intentionally small; host-specific secrets, private memory, and local paths belong in manifests or local memory, not the public bundle.
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 bash skills/entity-mc/install.sh --manifest skills/entity-mc/manifests/<agent>.env bash skills/entity-mc/verify.sh --manifest skills/entity-mc/manifests/<agent>.env If you hand an agent this workflow URL, this install contract is the source of truth for whether it can really install the bundle now, what source to use, and what still needs a human.
What you get
- Shared helper runtime across agents
- Structured task intake into Mission Control
- Safe rollout with verification and rollback
- Per-agent manifests without duplicating core scripts
Workflow includes
- Installer workflow
- Verification pass
- Rollback path
- Canonical source bundle
- Structured intake helper
Described artifacts
Requirements
Declared structure
github:henrino3/enterprise-crew-skills/entity-mc/github:henrino3/enterprise-crew-skills/entity-mc/SKILL.mdgithub:henrino3/enterprise-crew-skills/entity-mc/source-scripts/github:henrino3/enterprise-crew-skills/entity-mc/source-scripts/mc-intake.shgithub:henrino3/enterprise-crew-skills/entity-mc/context/github:henrino3/enterprise-crew-skills/entity-mc/context/mc-intake-setup.mdgithub:henrino3/enterprise-crew-skills/entity-mc/docs/onboarding-flow.mdgithub:henrino3/enterprise-crew-skills/entity-mc/manifests/*.envgithub:henrino3/enterprise-crew-skills/entity-mc/install.shgithub:henrino3/enterprise-crew-skills/entity-mc/verify.shgithub:henrino3/enterprise-crew-skills/entity-mc/rollback.sh
Verification
Verification language now matches reality. Installable bundles can be tested after install, external bundles should be source-reviewed first, and conceptual entries are reviewed as designs until real artifacts exist.
test -f skills/entity-mc/SKILL.md && ls skills/entity-mc ls scripts/mc*.sh 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" bash scripts/mc-intake.sh create --title "Entity MC intake smoke" --description "Dry run" --assignee Ada --dry-run - Verify the linked source layout before install and verify one host first before rolling the bundle out everywhere.
- Keep the previous helper runtime accessible until the new manifest proves healthy.
- Compare generated agent state against the canonical runtime to catch drift.
Best used for
- Standardize agent helper scripts across multiple machines
- Roll out Mission Control updates without hand-editing every node
- Reduce drift between operator environments
Operator notes
- This listing describes an externally hosted skill bundle. It does not imply those runtime files are checked into this website repo.