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

quickstartquickstart 搜索

Agent Skill

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

总安装

11,383

周安装

465

GitHub Stars

318

下载量

3,683
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/boshu2/agentops --skill quickstart

简介

quickstart 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用于研究检索类任务,支持多宿主环境集成。
  • quickstart 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

/quickstart

One job: Tell a new user what AgentOps does and what to do first. Fast.

YOU MUST EXECUTE THIS WORKFLOW. Do not just describe it.

Execution Steps

Step 1: Detect setup

git rev-parse --is-inside-work-tree >/dev/null 2>&1 && echo "GIT=true" || echo "GIT=false"
command -v ao >/dev/null && echo "AO=true" || echo "AO=false"
command -v bd >/dev/null && echo "BD=true" || echo "BD=false"
[ -d .agents ] && echo "AGENTS=true" || echo "AGENTS=false"
[ -d "$HOME/.agents" ] && echo "GLOBAL_AGENTS=true" || echo "GLOBAL_AGENTS=false"
[ -n "${CODEX_THREAD_ID:-}" ] || [ "${CODEX_INTERNAL_ORIGINATOR_OVERRIDE:-}" = "Codex Desktop" ] && echo "CODEX=true" || echo "CODEX=false"

Step 2: Show what AgentOps does

Output exactly this (no additions, no diagrams):

AgentOps is the operational layer for coding agents.

It gives your coding agent four things it doesn't have by default:

  Bookkeeping — sessions capture learnings, findings, and reusable context in .agents/
  Validation  — /council, /pre-mortem, and /vibe challenge plans and code before shipping
  Primitives  — skills, hooks, and the ao CLI give you building blocks for almost any interaction
  Flows       — /research, /implement, /validation, and /rpi can run alone or compose end to end

Key skills: /rpi  /research  /validation  /implement  /council  /pre-mortem  /swarm  /status
Full reference: /quickstart --catalog

Step 3: One next action

Match the first row that applies. Output only that message — nothing else.

ConditionMessage
GIT=false + AO=true + GLOBAL_AGENTS=true"🗂 You're outside a git repo but have a global corpus at ~/.agents. Global knowledge workflow:\n 1. /harvest — scan all .agents/ across your repos and promote artifacts into ~/.agents/learnings/\n 2. /compile — mine, synthesize, and write an interlinked wiki into .agents/compiled/ (runs from cwd; set AGENTOPS_COMPILE_RUNTIME=claude-cli if you have the claude CLI, no API key needed)\n 3. /knowledge-activation — turn the compiled corpus into playbooks, a belief book, and runtime briefings for future sessions\n 4. /status — flywheel health snapshot\nIf instead you want to start a fresh repo-local project here, git init first."
GIT=false"⚠ Not in a git repo. Run git init first.\n (If you meant to work against your global ~/.agents corpus, run /quickstart from a dir with .agents/ or see /harvest, /compile, /knowledge-activation.)"
AO=false + CODEX=true"📦 Install ao CLI first:\n brew tap boshu2/agentops https://github.com/boshu2/homebrew-agentops\n brew install agentops\n ao init && ao seed\nThen: /rpi \"a small goal\" to run your first cycle.\nCodex CLI v0.115.0+ uses native hooks by default after install; older versions can use ao codex start."
AO=false"📦 Install ao CLI first:\n brew tap boshu2/agentops https://github.com/boshu2/homebrew-agentops\n brew install agentops\n ao init --hooks && ao seed\nThen: /rpi \"a small goal\" to run your first cycle."
AGENTS=false + CODEX=true"🌱 ao is installed but not initialized here.\n Run /bootstrap to set up GOALS.md, PRODUCT.md,.agents/, and hooks.\n Or manually: ao init && ao seed\nThen: /rpi \"a small goal\" to run your first cycle.\nCodex CLI v0.115.0+ uses native hooks by default after install; older versions can use ao codex start."
AGENTS=false"🌱 ao is installed but not initialized here.\n Run /bootstrap to set up GOALS.md, PRODUCT.md,.agents/, and hooks.\n Or manually: ao init --hooks && ao seed\nThen: /rpi \"a small goal\" to run your first cycle."
BD=false + CODEX=true"✅ Codex native-hooks path ready.\n /rpi \"your goal\" — full /discovery → /crank → /validation pipeline\n /research <topic> — explore the codebase\n On Codex CLI v0.115.0+, native hooks handle startup and closeout automatically after install.\n Older versions fall back to ao codex ensure-start / ao codex ensure-stop.\n Manual escape hatch: ao codex status\n Want issue tracking? brew install boshu2/agentops/beads && bd init --prefix <prefix>"
BD=false"✅ Flywheel active. Start now:\n /rpi \"your goal\" — full /discovery → /crank → /validation pipeline\n /validation — close out recent work and capture learnings\n /research <topic> — explore the codebase\n Want issue tracking? brew install boshu2/agentops/beads && bd init --prefix <prefix>"
BD=true + CODEX=true"✅ Codex full stack ready.\n bd ready — see open work\n /rpi \"your goal\" — start a new goal from scratch\n On Codex CLI v0.115.0+, native hooks handle startup and closeout automatically after install.\n Older versions fall back to ao codex ensure-start / ao codex ensure-stop.\n Manual escape hatch: ao codex status"
BD=true"✅ Full stack ready.\n bd ready — see open work\n /rpi \"your goal\" — start a new goal from scratch\n /status — see current session state"

Starting a new project? Run /scaffold <language> <name> to generate project structure with best practices.


Examples

First-Time Setup

User says: /quickstart

What happens: Agent detects tools, shows one-line status, gives the single next action to run.

Already Set Up

User says: /quickstart

What happens: Agent detects full stack is ready and suggests /rpi "your goal" or bd ready.

Troubleshooting

ProblemSolution
Skills not installedbash <(curl -fsSL https://raw.githubusercontent.com/boshu2/agentops/main/scripts/install.sh)
Codex hooks on older versions (pre-v0.115.0)Codex CLI v0.115.0+ has native hooks. For older versions, use ao codex start to begin and ao codex stop to close out; ao codex status shows hookless lifecycle health
Flywheel count is 0First session — run /rpi "a small goal" to start it
Want the full skill catalogAsk: "show me all the skills" or see references/full-catalog.md

Reference Documents

See Also

  • scaffold — Project scaffolding and component generation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.27%
按下载量换算1,336

Claude

33.11%
按下载量换算1,219

Cursor

17.59%
按下载量换算648

Gemini CLI

9.61%
按下载量换算354

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills