Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

joyco-lab乔伊科实验室

Agent Skill

joyco-lab 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

465

周安装

19

GitHub Stars

10

下载量

150
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/joyco-studio/skills --skill joyco-lab

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • joyco-lab 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

JOYCO Lab — Experiment Isolation & Publication

Automates the full workflow of extracting a self-contained experiment from any codebase, scaffolding it with the right JOYCO template, installing dependencies, deploying to Vercel, and publishing to the JOYCO Lab registry.


Prerequisites checklist

Before starting, confirm these are available in the user's environment:

  • joyco CLI installed (joyco --version)
  • vercel CLI installed (vercel --version)
  • GitHub auth configured (used by joyco lab to open PRs)
  • User is logged into Vercel (vercel whoami)

If any are missing, tell the user and stop — the workflow depends on all of them.


Step 1 — Understand the experiment

Read the code the user is pointing at. Identify:

  1. What it does — one-sentence description (you'll use this for the Lab entry)
  2. What type it is — use the table below to pick a template
  3. What dependencies it needs — scan imports, note any that aren't in the template baseline

Template selection guide

Signals in the codeTemplate to use
three, @react-three/fiber, @react-three/drei, WebGLRenderer, OrbitControls, canvas 3D3d
gsap, ScrollTrigger, @studio-freight/lenis, framer-motion, CSS keyframes, SVG animation, canvas 2D drawingmotion

If the experiment mixes both (e.g. GSAP animating a Three.js scene), prefer 3d and note the GSAP dependency.

If genuinely ambiguous, ask the user before proceeding.


Step 2 — Name the experiment

Derive a human-readable name from what the experiment does. Rules:

  • Natural title casing, no slugifying needed (the CLI handles that)
  • Short (2–4 words max)
  • Descriptive, not generic (❌ Cool AnimationMagnetic Cursor Trail)

Suggest a name and confirm with the user before running any commands.


Step 3 — Scaffold with JOYCO CLI

joyco create --template <template-value> <experiment-name>

Example:

joyco create --template motion "Magnetic Cursor Trail"

This creates a new directory <experiment-name>/ with the template scaffolded inside. cd into it before the next steps.


Step 4 — Port the experiment code

  1. Identify the minimal set of files needed — entry point, shaders, helpers, assets
  2. Copy them into the scaffolded project, respecting the template's file structure (typically src/ or app/)
  3. Wire the experiment into the template's entry point (usually src/main.ts, src/index.tsx, or app/page.tsx — check the template)
  4. Do not bring over unrelated code, global state, routing, or backend dependencies

Step 5 — Install missing dependencies

Compare the experiment's imports against what the template already includes.

Detect the package manager

Check which lockfile the scaffolded template contains and use the matching package manager:

Lockfile foundPackage manager
bun.lockb or bun.lockbun
pnpm-lock.yamlpnpm
yarn.lockyarn
package-lock.jsonnpm

If multiple lockfiles exist, prefer the first match in the table above. If none exist, default to npm.

Install and verify

For each missing package, install with the detected package manager:

cd <experiment-name> && <pm> install <package>
# e.g. bun add three, pnpm add three, yarn add three, npm install three

Then run the dev server to confirm no import errors:

<pm> run dev

Fix any issues before proceeding. Common ones:

  • Missing type packages (@types/three, etc.)
  • Peer dependency mismatches
  • Template assumes a bundler feature the experiment uses differently

Step 6 — Deploy to Vercel

Ask the user if they want to deploy to Vercel now. If they decline, skip to Step 7 — they can deploy later and provide the URL manually when running joyco lab.

If they confirm, run from inside the experiment directory:

vercel --prod

Follow prompts if it's a first-time deploy (link to org, set project name = experiment slug). Copy the production URL — you'll need it for the Lab entry.


Step 7 — Publish to JOYCO Lab

Run the publish command and follow the interactive prompts:

joyco lab

The CLI will ask for:

FieldWhat to provide
NameHuman-readable title (e.g. "Magnetic Cursor Trail")
DescriptionOne or two sentences about what it is and what's interesting technically
TagsComma-separated (e.g. gsap, cursor, magnetic, interaction) — see tag guide below
Preview linkThe Vercel production URL from Step 6
Preview imageOptional — URL to an OG/screenshot image if one was generated

The CLI will open a PR in joyco-studio/lab adding the entry to experiments.json. Review the PR URL it outputs and share it with the user.

Tag guide

Use these consistently:

  • By type: 3d, animation, interaction, shader, canvas, scroll, physics, generative
  • By library: three, gsap, r3f, framer-motion, lenis, matter-js
  • By visual style: typography, cursor, particles, geometry, noise, fluid

Pick 3–6 tags. Don't over-tag.


Step 8 — Wrap up

Tell the user:

  1. The experiment directory location
  2. The live Vercel URL
  3. The GitHub PR URL for the Lab registry entry
  4. Any follow-up they might want: merging the PR, adding a preview image, promoting on socials

Edge cases

Experiment uses a private/internal package: Stop and tell the user. Either the dependency needs to be made public, inlined, or replaced before the experiment can be a standalone public repo.

Experiment requires a backend/API: Scope it down to the frontend-only visual part, or ask the user if they want to mock the data. Lab experiments should be fully static/client-side.

User wants to skip Vercel deploy: They can provide a different href to joyco lab — just note that the Hub will render it in an iframe so it must be a publicly accessible URL.

No clear template match: Ask the user. Don't guess if it's truly ambiguous — a wrong template wastes setup time.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.42%
按下载量换算55

Claude

33.53%
按下载量换算50

Cursor

18.21%
按下载量换算27

Gemini CLI

8.52%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills