Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

setup-artist布景艺术家

Agent Skill

setup-artist 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

25,872

周安装

1,083

GitHub Stars

公开资料未说明

下载量

9,064
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:setup-artist(布景艺术家)
来源仓库:https://github.com/recoupable/setup-artist
仓库路径:skills/setup-artist
安装命令:
npx skills add https://github.com/recoupable/setup-artist --skill setup-artist
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/recoupable/setup-artist --skill setup-artist

简介

完整的艺术家工作空间支架,包括目录、上下文文件、内存系统和环境设置。

  • 创建标准化的文件夹结构,包括上下文、内存、歌曲、版本、内容、配置、库和应用程序目录,并为每个目录提供自述文件指南
  • 初始化上下文文件(艺术家身份、观众见解、时代元数据)和区分永久、特定时代和会话级知识的范围内存系统
  • 使用模板设置环境和服务配置文件,仅在真实信息可用时添加凭据和集成,而不是预先填充占位符
  • 更新未安装的 RECOUP.md 标记文件
  • 活跃
  • 并生成带有设置清单和目录参考表的根自述文件

SKILL.md

Setup Artist

Scaffold a complete artist workspace so agents can start working immediately.

Prerequisites

  • The sandbox has already been set up (see setup-sandbox skill)
  • An artist folder exists at orgs/{org}/artists/{artist-slug}/ with a RECOUP.md marker file
  • The RECOUP.md file contains the artist's name, slug, and Recoup ID (created by setup-sandbox)

Folder Structure

{artist-slug}/
├── RECOUP.md
├── README.md
├── .env.example
├── .env
├── context/
│   ├── artist.md
│   ├── audience.md
│   ├── era.json
│   ├── tasks.md
│   └── images/
│       └── README.md
├── memory/
│   ├── README.md
│   └── MEMORY.md
├── songs/
│   └── README.md
├── releases/
│   └── README.md
├── content/
│   ├── README.md
│   ├── images/
│   └── videos/
├── config/
│   ├── README.md
│   └── SERVICES.md
├── library/
│   └── README.md
└── apps/
    └── README.md

Steps

Step 1: Read RECOUP.md and create the directory structure

  1. Navigate to the artist folder and read RECOUP.md to get the artist's name, slug, and ID:
cd orgs/{org}/artists/{artist-slug}
cat RECOUP.md
  1. Create the directory structure:
mkdir -p {context/images,memory,songs,releases,content/images,content/videos,config,library,apps}

Step 2: Update RECOUP.md

Update the status field from not-setup to active and replace the body with a brief description:

---
artistName: {Artist Name}
artistSlug: {artist-slug}
artistId: {uuid-from-recoupable}
status: active
---

# {Artist Name}

Connects this workspace to the Recoupable platform. See `README.md` for the full directory guide and setup checklist.

Step 3: Create context files

Create each file from the templates in references/context-files.md. The essential files:

FileWhat to do
context/artist.mdFill with artist identity, brand, visual world, voice, tone. Ask the user for details or research the artist.
context/audience.mdFill with audience insights. Focus on WHY they listen, what they relate to, how they talk.
context/era.jsonSet the current release, songs, phase, and career stage.
context/tasks.mdLeave blank — the user will add tasks as they come up.
context/images/README.mdCreate with a note explaining this holds visual references like face guides.

Step 4: Create memory system

Create two files:

  • memory/README.md — Full instructions for agents on how to use the memory system, including the scope concept. See references/memory-system.md.
  • memory/MEMORY.md — Nearly empty starting point with frontmatter and guidelines comment (including scope rules).

The memory system uses three scopes to prevent knowledge bloat:

  • permanent — true regardless of era (goes in MEMORY.md)
  • era — true for the current release cycle (goes in MEMORY.md, tagged with era)
  • session — about a specific piece of content or task (goes in log/ only, never MEMORY.md)

Agents should ask the user about scope before saving feedback to long-term memory.

Step 5: Create services and environment files

Services are tracked in config/, not pre-filled at setup. Create:

FileWhat to do
config/SERVICES.mdInstructions for agents on how to add services as they're discovered. See references/services-guide.md.
.env.exampleReference list of common env var names (all commented out). See references/env-template.md.
.envEmpty file with a header comment. Agents add credentials here as services are connected.

Do NOT pre-fill service entries. Services are added when the agent has real information — a handle, an API key, a confirmed account. The old approach of creating a massive JSON file with every possible service set to not-setup creates noise, not value.

Step 6: Create README files for remaining directories

Each directory needs a README.md explaining its purpose. See references/directory-readmes.md for templates.

DirectoryREADME explains...
songs/Song folder format, naming conventions, what files to add
releases/Release folder format, RELEASE.md as source of truth
content/Generated content output — images and videos
config/Per-artist config, services, and shared automation tools
library/Deep-dive reference docs, research, reports
apps/Artist-specific applications (not shared tools)

Step 7: Create root README

Create README.md at the artist root with:

  • Artist name as heading
  • Directory structure table
  • Context files table
  • Config & services table
  • Setup checklist

See references/root-readme.md for the template.

Step 8: Fill in what you can

If you have information about the artist (from the user, from research, or from the Recoup platform):

  1. Fill context/artist.md with as much identity/brand info as possible
  2. Fill context/audience.md with audience insights
  3. Set context/era.json with the current release phase

Don't fabricate information. Leave placeholders for anything you don't know.

Step 9: Commit

git add -A
git commit -m "setup: create {artist-name} artist workspace"
git push origin main

Naming Conventions

  • Directories and slugs: lowercase-kebab-case (e.g. gatsby-grace, a-thing-called-love)
  • Audio files: Match the folder slug (e.g. songs/a-thing-called-love/a-thing-called-love.mp3)
  • Context files: Use the names exactly as specified — agents and shared tools expect them

Principles

  • Start lean. Only create what's needed. Agents and pipelines will create additional files (like content/videos/shortform/) as they run.
  • Placeholders over empty. Use {placeholder} syntax for unknown values — it's better than blank fields.
  • Don't pre-fill what you don't know. A file full of not-setup and null isn't a placeholder — it's clutter. Services, accounts, and configs should be added when they're real.
  • README everything. Every directory gets a README so agents know what belongs there.
  • Don't duplicate. Songs live in songs/, releases reference them by slug. Content goes in content/, not copied elsewhere.
  • Scope your memories. Not all knowledge lasts forever. Tag era-specific memories, keep session feedback in logs, and ask before promoting to long-term memory.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.29%
按下载量换算3,471

Claude

27.04%
按下载量换算2,451

Cursor

20.3%
按下载量换算1,840

Gemini CLI

9.24%
按下载量换算838

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills