different-ai/openwork-hub · Archived

sandbox-lifecycle-fastlane

Fast preflight for sandbox lifecycle work: sync pins, create a worktree, and run the standard Docker + Chrome MCP verification path. Triggers when user mentions: - "sandbox lifecycle" - "sandbox stuck" - "docker + chrome mcp"

First seen Mar 13, 2026

Installation

$ npx skills add different-ai/openwork-hub --skill sandbox-lifecycle-fastlane

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from different-ai/openwork-hub · top by installs.

npx skills add different-ai/openwork-hub

Browse all from different-ai/openwork-hub

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 26
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,518 B
  • docs SUMMARY.md 258 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Quick Usage (Already Configured)

1) Preflight (sync + sanity checks)

skills/sandbox-lifecycle-fastlane/scripts/preflight.sh

2) Create a worktree for this task

Recommended (uses a timestamped branch name):

skills/sandbox-lifecycle-fastlane/scripts/worktree.sh

Override branch name/base:

BRANCH="sandbox-lifecycle" BASE_REF="origin/main" \
  skills/sandbox-lifecycle-fastlane/scripts/worktree.sh

3) Verify the real flow

Use the existing end-to-end skill:

  • skills/openwork-docker-chrome-mcp/SKILL.md

That flow is the source of truth for:

  • starting the stack via _repos/openwork/packaging/docker/dev-up.sh
  • verifying user flows via Chrome MCP

What This Skill Optimizes For

  • Snappy setup: one command preflight, one command worktree.
  • Reliability: avoid accidental recursive submodule operations unless explicitly requested.
  • Debuggability: print the minimum git context that matters when sandboxes behave oddly (pin drift, dirty state).

Common Gotchas

  • If a submodule is dirty, git submodule update may refuse to move it. Stash changes inside that submodule repo.
  • If you do need recursive submodule checks, set RECURSIVE=1 in preflight.sh.