
Setup Sandbox
- 1.6k installs
- Updated March 27, 2026
- recoupable/setup-sandbox
setup-sandbox is an agent skill for Set up the initial file system for a new sandbox. Fetches the account's organizations and artists via the Recoup CLI and
About
The setup-sandbox skill Set up the initial file system for a new sandbox. Fetches the account's organizations and artists via the Recoup CLI and scaffolds the folder structure. Use when a sandbox has just been created and has no existing file system. Before running, check if the sandbox already has an orgs/ directory - if it does, this skill is not needed. It covers check if RECOUP_ACCOUNT_ID is set. If set, use --account $RECOUP_ACCOUNT_ID on all CLI commands below. If not set, omit the --account flag.. Key workflows include run recoup orgs list --json --account $RECOUP_ACCOUNT_ID to get all organizations. Developers invoke setup-sandbox when the task matches the triggers and reference files in SKILL.md for grounded, stepwise execution. Reference files and progressive disclosure keep context focused while preserving concrete commands, configuration fields, and validation checks copied from the upstream documentation.
- Check if RECOUP_ACCOUNT_ID is set. If set, use --account $RECOUP_ACCOUNT_ID on all CLI commands below. If not set, omit
- Run recoup orgs list --json --account $RECOUP_ACCOUNT_ID to get all organizations
- For each organization, run recoup artists list --org {organization_id} --json --account $RECOUP_ACCOUNT_ID to get its ar
- Create the folder structure and a RECOUP.md marker in each artist folder:
- Use artistSlug from the CLI response as the exact directory name - never append UUIDs, IDs, or suffixes
Setup Sandbox by the numbers
- 1,619 all-time installs (skills.sh)
- Ranked #306 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Aug 4, 2026 (Skillselion catalog sync)
setup-sandbox capabilities & compatibility
- Capabilities
- check if recoup_account_id is set. if set, use · run recoup orgs list json account $recoup_ac · for each organization, run recoup artists list · create the folder structure and a recoup.md mark · use artistslug from the cli response as the exac
- Use cases
- documentation
What setup-sandbox says it does
Create the folder structure for the connected account's organizations and artists.
npx skills add https://github.com/recoupable/setup-sandbox --skill setup-sandboxAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1.6k |
|---|---|
| Security audit | 2 / 3 scanners passed |
| Last updated | March 27, 2026 |
| Repository | recoupable/setup-sandbox ↗ |
What problem does setup-sandbox solve for developers using the documented workflows?
Set up the initial file system for a new sandbox. Fetches the account's organizations and artists via the Recoup CLI and scaffolds the folder structure. Use when a sandbox has just been created and ha
Who is it for?
Developers working with setup-sandbox patterns described in the skill documentation.
Skip if: Skip when docs are empty or the task is outside the skill documented scope.
When should I use this skill?
Use when Set up the initial file system for a new sandbox. Fetches the account's organizations and artists via the Recoup CLI and scaffolds the folder structure. Use when a sandbox has just
What you get
Actionable setup-sandbox guidance grounded in SKILL.md workflows and reference files.
- orgs/ directory tree
- Artist folder scaffold
- Sandbox marker files
Files
Setup Sandbox
Create the folder structure for the connected account's organizations and artists.
Environment
RECOUP_ACCOUNT_ID— The account ID to fetch data for. Only needed when using an Org API Key. When using a Personal API Key, omit the--accountflag and the CLI will use the authenticated account automatically.
Steps
1. Check if RECOUP_ACCOUNT_ID is set. If set, use --account $RECOUP_ACCOUNT_ID on all CLI commands below. If not set, omit the --account flag. 2. Run recoup orgs list --json [--account $RECOUP_ACCOUNT_ID] to get all organizations 3. For each organization, run recoup artists list --org {organization_id} --json [--account $RECOUP_ACCOUNT_ID] to get its artists 4. Create the folder structure and a RECOUP.md marker in each artist folder:
- Use
artistSlugfrom the CLI response as the exact directory name — never append UUIDs, IDs, or suffixes - If
orgs/{org}/artists/{artist-slug}/already exists, skip it mkdir -p orgs/{org}/artists/{artist-slug}for each new artist- Write a
RECOUP.mdusing the template below
5. Commit and push:
git add -A && git commit -m "setup: create org and artist folders" && git push origin main
RECOUP.md
Every artist directory has a RECOUP.md at its root. This is the identity file — it connects the workspace to the Recoupable platform. The existence of this file means the workspace is active.
Fill it with data from the CLI response:
---
artistName: {Artist Name}
artistSlug: {artist-slug}
artistId: {uuid-from-recoupable}
---Fields:
artistName— display name from the CLI (e.g.Gatsby Grace)artistSlug— lowercase-kebab-case folder name (e.g.gatsby-grace)artistId— the UUID from Recoup
Related skills
Forks & variants (1)
Setup Sandbox has 1 known copy in the catalog totaling 1.4k installs. They canonicalize to this original listing.
- recoupable - 1.4k installs
How it compares
Use this as the first Recoup sandbox step before any org- or artist-specific automation that expects the standard directory layout.
FAQ
Who is setup-sandbox for?
Developers and software engineers working with setup-sandbox patterns described in the skill documentation.
When should I use setup-sandbox?
When Set up the initial file system for a new sandbox. Fetches the account's organizations and artists via the Recoup CLI and scaffolds the folder structure. Use when a sandbox has just.
Is setup-sandbox safe to install?
Review the Security Audits panel on this page before installing in production.