npx skills add https://github.com/recoupable/setup-sandbox --skill setup-sandbox为关联账户的组织和艺人创建文件夹结构。
RECOUP_ACCOUNT_ID — 要获取数据的账户 ID。仅在需要使用组织 API 密钥时设置。当使用个人 API 密钥时,请省略 --account 标志,CLI 将自动使用已认证的账户。RECOUP_ACCOUNT_ID 是否已设置。如果已设置,请在以下所有 CLI 命令中使用 --account $RECOUP_ACCOUNT_ID。如果未设置,请省略 --account 标志。recoup orgs list --json [--account $RECOUP_ACCOUNT_ID] 以获取所有组织recoup artists list --org {organization_id} --json [--account $RECOUP_ACCOUNT_ID] 以获取其艺人RECOUP.md 标记文件:
Create the folder structure for the connected account's organizations and artists.
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.RECOUP_ACCOUNT_ID is set. If set, use --account $RECOUP_ACCOUNT_ID on all CLI commands below. If not set, omit the --account flag.recoup orgs list --json [--account $RECOUP_ACCOUNT_ID] to get all organizationsrecoup artists list --org {organization_id} --json [--account $RECOUP_ACCOUNT_ID] to get its artists广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
mkdir -p orgs/{org}/artists/{artist-slug}RECOUP.md 文件git add -A && git commit -m "setup: create org and artist folders" && git push origin mainRECOUP.md每个艺人目录的根目录下都有一个 RECOUP.md 文件。这是身份文件——它将工作空间连接到 Recoupable 平台并跟踪设置状态。它将永久保留。
使用 CLI 响应的数据填充它:
---
artistName: {Artist Name}
artistSlug: {artist-slug}
artistId: {uuid-from-recoupable}
status: not-setup
---
# {Artist Name}
此艺人的工作空间尚未设置。
运行 `setup-artist` 技能来搭建其结构——这将创建完整的目录结构、上下文文件、记忆系统和 README 文件。
字段说明:
artistName — 来自 CLI 的显示名称(例如 Gatsby Grace)artistSlug — 小写短横线分隔的文件夹名称(例如 gatsby-grace)artistId — 来自 Recoup 的 UUIDstatus — 创建时为 not-setup,由 setup-artist 技能更新为 active沙盒设置完成后,为每个艺人运行 setup-artist 技能。如果该技能未安装,请先安装它:
npx skills add recoupable/setup-artist
查找哪些艺人仍需设置:
grep -rl "status: not-setup" orgs/*/artists/*/RECOUP.md
任何 status: not-setup 的 RECOUP.md 文件都尚未搭建结构。为每个这样的文件运行 setup-artist。
每周安装次数
1.2K
仓库
首次出现
2026年2月17日
安全审计
安装于
openclaw1.2K
opencode1.1K
gemini-cli1.1K
cursor1.1K
kimi-cli1.1K
amp1.1K
RECOUP.md marker in each artist folder:
mkdir -p orgs/{org}/artists/{artist-slug} for each org/artist pairRECOUP.md in each artist folder using the template belowgit add -A && git commit -m "setup: create org and artist folders" && git push origin mainRECOUP.mdEvery 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 Recoupstatus — not-setup at creation, updated to active by the setup-artist skillAfter 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.
Weekly Installs
1.2K
Repository
First Seen
Feb 17, 2026
Security Audits
Installed on
openclaw1.2K
opencode1.1K
gemini-cli1.1K
cursor1.1K
kimi-cli1.1K
amp1.1K
React 组合模式指南:Vercel 组件架构最佳实践,提升代码可维护性
102,200 周安装