Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

rs-init初始化 RS

Agent Skill

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

总安装

1,444

周安装

59

GitHub Stars

公开资料未说明

下载量

463
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/rootspec/rootspec --skill rs-init

简介

用于查找、检索和筛选相关信息。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。
  • rs-init 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

You are setting up a project to use RootSpec. Start by telling the developer what you're about to do:

"I'll set up RootSpec for this project — create the spec directory, copy the framework files, and configure prerequisites (dev server, test runner, etc.). This takes a minute or two."

Step 1: Scan the project

Understand what exists. Run these from the project root:

bash "$(dirname "$0")/../rs-shared/scripts/scan-spec.sh" .
bash "$(dirname "$0")/../rs-shared/scripts/scan-project.sh" .

If these paths don't resolve, find the scripts by searching for scan-spec.sh in the skills directory.

Based on the output, determine the situation:

  • Fresh init — no .rootspec.json, no rootspec/ directory. Most common case.
  • Partial init — some files exist but others are missing (interrupted previous init).
  • Re-init.rootspec.json exists. If the version is behind the bundled framework, suggest /rs-update instead. Otherwise, ask the developer what they want to update. Do NOT overwrite existing spec files (01-05). You may update 00.AXIOMS.md and 00.FRAMEWORK.md to the latest bundled versions if the developer confirms.
  • Already initialized — everything exists. Tell the developer and suggest /rs-spec instead.

Report what you found before proceeding.

Step 2: Bootstrap the project

Run the bootstrap script to create the spec directory, base files, prerequisites, and .rootspec.json:

bash "$(dirname "$0")/../rs-shared/scripts/bootstrap-init.sh" . "$(dirname "$0")/../rs-shared"

If this path doesn't resolve, find the script by searching for bootstrap-init.sh in the skills directory.

This creates everything needed for a greenfield project: rootspec/ with framework files, scripts/dev.sh, scripts/test.sh, .githooks/pre-commit, scripts/release.sh, Cypress reporter, .rootspec.json, and package.json. Files that already exist are skipped.

Step 3: Detect and adapt prerequisites

Run the detection script to check what the bootstrap created vs what the project already had:

bash "$(dirname "$0")/../rs-shared/scripts/detect-prerequisites.sh" .

The script outputs DEV_SERVER=, PRE_COMMIT_HOOK=, RELEASE_SCRIPT=, VALIDATION_SCRIPT= lines with detected paths or none.

Read ../rs-shared/fragments/prerequisites.md for the full reference on what each prerequisite is.

Package.json rule: NEVER write the dependencies or devDependencies sections of package.json directly. Always use npm install <pkg> or npm install --save-dev <pkg> to add packages — npm manages the dependency tree. You may edit the scripts section directly (e.g., to add dev:start).

Report what was detected. For brownfield projects, adapt the bootstrap defaults:

  • Dev server — edit the DEV_CMD variable in scripts/dev.sh to match the project's actual dev command (e.g., npm run dev, npx vite).
  • Existing prerequisites — if the project already had a dev server, test runner, etc., update .rootspec.json to point to them instead of the bootstrap defaults.
  • Package.json scripts — add dev:start, dev:stop, dev:restart entries if not already present.

Cypress plugin setup

Set up the RootSpec Cypress reporter (bootstrap already copied the file):

  1. Wire it into cypress.config.ts — if the config exists, add the setupNodeEvents hook with the reporter. If creating a new config, include it from the start. See ../rs-shared/fragments/prerequisites.md for the exact wiring.

This plugin automatically updates rootspec/tests-status.json after every Cypress run — the agent doesn't need to parse results or call scripts.

Step 4: Update .rootspec.json

If Step 3 detected existing prerequisites that differ from the bootstrap defaults, update .rootspec.json with the correct paths.

Step 5: Verify and hand off

Run the verification script:

bash "$(dirname "$0")/../rs-shared/scripts/verify-init.sh" .

If anything is reported missing, create it. Then report:

"Project initialized. Here's what was set up:

  • [list files created]
  • [list prerequisites configured or skipped]

Run /rs-spec to create your specification."

Focus

If the developer passes an argument:

  • "resume" → skip to whatever step is incomplete
  • "prerequisites" → only run Steps 3-4 (detect/create prerequisites, update.rootspec.json)

Scope

  • CAN read: all project files
  • CAN write: rootspec/ directory (including spec-status.json, tests-status.json), .rootspec.json, prerequisite templates (e.g., scripts/dev.sh)
  • SHOULD NOT write: application source code, existing test files

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.87%
按下载量换算161

Claude

30.62%
按下载量换算142

Cursor

18.32%
按下载量换算85

Gemini CLI

8.91%
按下载量换算41

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills