Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

cyrus-setup赛勒斯设置

Agent Skill

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

总安装

3,904

周安装

166

GitHub Stars

559

下载量

1,368
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ceedaragents/cyrus --skill cyrus-setup

简介

用于自托管 Cyrus 的一键初始化设置流程。

  • 引导完成 Claude Code 在 Linear、Slack、GitHub 上的后台运行配置。
  • 关键限制:禁止直接读写 ~/.cyrus/.env,必须通过 Bash 命令交互。
  • 涉及 secrets 时应由用户手动输入,不得提取或显示敏感信息。
  • cyrus-setup 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Cyrus Setup

One-command setup for self-hosted Cyrus. This orchestrator walks you through everything needed to run Claude Code as a background agent from Linear, Slack, and GitHub.

CRITICAL Rules

Never Read or Write ~/.cyrus/.env Directly

FORBIDDEN: Do NOT use Read, Edit, or Write tools on ~/.cyrus/.env or any file inside ~/.cyrus/. This file contains secrets (API keys, tokens, signing secrets). All interaction with this file MUST go through Bash commands (grep, printf >>..., etc.) which the user can see and approve. Never read its contents into the conversation context.

Browser Automation

The goal of browser automation in this skill is to reduce sign-in and setup fatigue — the agent navigates web UIs, fills forms, and scrapes credentials so the user doesn't have to do it all manually.

Three modes, in order of preference:

  1. claude-in-chrome (preferred when available) — if the user is running Claude Code and has the claude-in-chrome MCP extension connected, use it. This has the huge advantage of using the user's existing Chrome with all their signed-in sessions (Linear, Slack, GitHub). Check availability by seeing if mcp__claude-in-chrome__* tools exist.
  2. agent-browser CLI — a standalone Playwright-based binary invoked via Bash. Requires launching a fresh Chrome profile with remote debugging enabled (the user will need to sign in to services in that profile). Check with which agent-browser.
  3. Manual guided flow — the user follows the agent's step-by-step instructions and does the clicks themselves. Always available as Path B in each sub-skill.

Determining which mode to use:

  1. First, check if claude-in-chrome MCP tools are available in the current session. If yes, use those — no setup needed.
  2. If not, check which agent-browser. If installed, launch a fresh Chrome profile (see below).
  3. If neither is available, ask the user: install agent-browser, or follow manual instructions?

agent-browser setup — fresh Chrome profile:

agent-browser needs a Chrome instance with remote debugging enabled. Launch one with an isolated profile:

# Find an open port
for port in $(seq 9222 9322); do
  if ! lsof -i :"$port" > /dev/null 2>&1; then
    echo "Open port found: $port"
    break
  fi
done
# Create a fresh profile directory
mkdir -p ~/.cyrus/chrome-profile
# Launch Chrome with remote debugging (runs in background)
# macOS:
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" \
  --remote-debugging-port=<port> \
  --user-data-dir="$HOME/.cyrus/chrome-profile" &

# Linux:
google-chrome --remote-debugging-port=<port> \
  --user-data-dir="$HOME/.cyrus/chrome-profile" &
# Connect agent-browser to it
agent-browser connect <port>

After connecting, commands work normally:

agent-browser navigate "https://example.com"
agent-browser click "button:text('Submit')"
agent-browser fill "#input-id" "value"
agent-browser screenshot
agent-browser eval "document.title"

Important: The user will need to sign in to Linear, Slack, and GitHub in this fresh Chrome profile before the agent can automate app creation. The agent should navigate to each service and pause for the user to sign in before proceeding with automation.

Cleanup: After setup is complete, close the Chrome instance:

lsof -ti :<port> | xargs kill 2>/dev/null

How This Works

This skill runs sub-skills in order, skipping any that are already complete. You can re-run /cyrus-setup at any time to add integrations or fix configuration.

Loading Sub-Skills

Each step references a sub-skill file. To execute a sub-skill, read the SKILL.md file using the Read tool and follow its instructions. The sub-skill files are sibling directories to this skill:

StepSub-skillFile to read
1setup-prerequisitescyrus-setup-prerequisites/SKILL.md (relative to skills directory)
2setup-claude-authcyrus-setup-claude-auth/SKILL.md
3setup-endpointcyrus-setup-endpoint/SKILL.md
4setup-linearcyrus-setup-linear/SKILL.md
5setup-githubcyrus-setup-github/SKILL.md
5bsetup-gitlabcyrus-setup-gitlab/SKILL.md
6setup-slackcyrus-setup-slack/SKILL.md
7setup-repositorycyrus-setup-repository/SKILL.md
8setup-launchcyrus-setup-launch/SKILL.md

To find the files, look for them relative to this file's directory (go up one level, then into the sub-skill directory). For example, if this file is at ~/.claude/skills/cyrus-setup/SKILL.md, the sub-skills are at ~/.claude/skills/cyrus-setup-prerequisites/SKILL.md, etc.

If a sub-skill file is not found, use Glob to search for it: **/cyrus-setup-prerequisites/SKILL.md


Step 0: Identity & Surface Selection

Before anything else, collect preferences from the user. Use the AskUserQuestion tool if available — ask questions interactively rather than printing them as a text block. You may bundle related questions into a single ask, or ask them one at a time.

Question 1: Name & Description

Ask the user (defaults in parentheses):

  • What would you like to name your agent? — This name appears in Linear, Slack, and GitHub integrations. (default: Cyrus)
  • Give your agent a short description — one sentence, shown in integration app listings. (default: AI coding agent for automated development)

Store as AGENT_NAME and AGENT_DESCRIPTION — used when creating Linear, Slack, and GitHub apps.

Question 2: Which surfaces?

Ask the user to select one or more:

  • Linear — issue tracking, recommended for most users
  • GitHub — PR comments and issues
  • GitLab — MR comments and issues
  • Slack — chat messages

At least one is required. Store the selection — it determines which integration sub-skills run (Steps 4-6).

Question 3: Package manager?

Ask: npm, pnpm, bun, or yarn?

Store the answer — used by the prerequisites skill.


Step 1: Prerequisites

Read the cyrus-setup-prerequisites/SKILL.md sub-skill and follow its instructions.

Pass the user's package manager preference from Step 0.


Step 2: Claude Auth

Read the cyrus-setup-claude-auth/SKILL.md sub-skill and follow its instructions.


Step 3: Webhook Endpoint

Read the cyrus-setup-endpoint/SKILL.md sub-skill and follow its instructions.


Step 4: Linear (if selected)

Only if the user selected Linear in Step 0.

Read the cyrus-setup-linear/SKILL.md sub-skill and follow its instructions.


Step 5: GitHub (if selected)

Only if the user selected GitHub in Step 0.

Read the cyrus-setup-github/SKILL.md sub-skill and follow its instructions.


Step 5b: GitLab (if selected)

Only if the user selected GitLab in Step 0.

Read the cyrus-setup-gitlab/SKILL.md sub-skill and follow its instructions.


Step 6: Slack (if selected)

Only if the user selected Slack in Step 0.

Read the cyrus-setup-slack/SKILL.md sub-skill and follow its instructions. All paths (A-1, A-2, and B) must use the manifest-based creation flow — never create the Slack app "from scratch" with manual scope/event configuration.


Step 7: Add Repositories

Read the cyrus-setup-repository/SKILL.md sub-skill and follow its instructions.


Step 8: Launch

Read the cyrus-setup-launch/SKILL.md sub-skill and follow its instructions.


Design Principles

  1. Skip-if-done — Every sub-skill checks existing state first. Re-running /setup is safe.
  2. Secrets never enter chat — Credentials are either scraped via agent-browser or written via clipboard-to-env shell commands the user runs in their terminal.
  3. Agent writes non-secret config — Values like CYRUS_SERVER_PORT and LINEAR_DIRECT_WEBHOOKS are written directly by the agent.
  4. Browser automation when available — Uses agent-browser for Linear/Slack app creation; falls back to guided manual steps if not installed.
  5. Package manager aware — The user's choice is used consistently throughout.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.83%
按下载量换算490

Claude

30.88%
按下载量换算422

Cursor

17.23%
按下载量换算236

Gemini CLI

8.36%
按下载量换算114

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills