โ† All skills
Tencent SkillHub ยท Developer Tools

Recoup Sandbox Setup

Set up the initial file system for a new sandbox. Fetches the account's organizations and artists via the Recoup CLI and scaffolds an opinionated folder stru...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Set up the initial file system for a new sandbox. Fetches the account's organizations and artists via the Recoup CLI and scaffolds an opinionated folder stru...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 5 sections Open source page

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 --account flag and the CLI will use the authenticated account automatically.

Steps

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. 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 artists Create the folder structure and a RECOUP.md marker in each artist folder: mkdir -p orgs/{org}/artists/{artist-slug} for each org/artist pair Write a RECOUP.md in each artist folder using the template below 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 and tracks setup status. It stays permanently. Fill it with data from the CLI response: --- artistName: {Artist Name} artistSlug: {artist-slug} artistId: {uuid-from-recoupable} status: not-setup --- # {Artist Name} This artist workspace has not been set up yet. Run the `setup-artist` skill to scaffold it โ€” that will create the full directory structure, context files, memory system, and README files. 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 status โ€” not-setup at creation, updated to active by the setup-artist skill

Next Steps

After the sandbox is set up, run the setup-artist skill for each artist. If the skill is not installed, install it first: npx skills add recoupable/setup-artist Find which artists still need setup: grep -rl "status: not-setup" orgs/*/artists/*/RECOUP.md Any RECOUP.md with status: not-setup hasn't been scaffolded yet. Run setup-artist for each one.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc