LaunchKit · 2026
Back to Skills

setup-sandbox

Set up the initial file system for a new sandbox.

2
327 downloads
by @sweetmantech

Setup & Installation

openclaw skills install @sweetmantech/setup-sandbox

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install setup-sandbox

What This Skill Does

Scaffolds the initial file system for a new Recoup sandbox by fetching an account's organizations and artists via the Recoup CLI, then building a folder hierarchy with RECOUP.md identity files in each artist directory. Only run on fresh sandboxes without an existing orgs/ directory.

Automates querying the Recoup API for every org and artist and building the exact folder structure that downstream skills depend on, rather than doing it by hand.

When to use it

  • Initializing a new Recoup sandbox from scratch
  • Setting up org and artist folders before running artist-level skills
  • Creating RECOUP.md identity files for each artist workspace
  • Automating folder scaffolding across a multi-org account
  • Preparing a sandbox so setup-artist can run per artist

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Set up my new sandbox for my Recoup account

AGENT
  1. 1Check if RECOUP_ACCOUNT_ID is set in the environment
  2. 2Run recoup orgs list --json to retrieve all organizations
  3. 3For each org, run recoup artists list --org {id} --json to retrieve its artists
  4. 4Create orgs/{org}/artists/{artist-slug} directories and write a RECOUP.md identity file in each
  5. 5Commit and push the folder structure to the main branch
OUTPUT

Folder structure created for all orgs and artists, each with a RECOUP.md identity file committed and pushed to main

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

Recoup CLIRecoup Personal API Key or Org API KeyRECOUP_ACCOUNT_ID environment variable (required when using an Org API Key)