Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

sprintx-openclaw-handoffsprintx OpenClaw 交接

Agent Skill

sprintx-openclaw-handoff 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,942

周安装

119

GitHub Stars

1

下载量

923
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:sprintx-openclaw-handoff(sprintx OpenClaw 交接)
来源仓库:https://github.com/terry3838/sprintx-openclaw-handoff
安装命令:
openclaw skills install sprintx-openclaw-handoff
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install sprintx-openclaw-handoff

简介

通过验证先决条件、身份验证、选择项目、发送事件和工件,然后确认,指导 OpenClaw 操作员完成 SprintX 切换。

SKILL.md

name
sprintx-openclaw-handoff
description
Guide an existing OpenClaw operator through the SprintX handoff proof packet with the minimum safe steps: verify prerequisites, connect with sx auth, select the project, send the first event and artifact, then confirm read-back with sx status and sx brief.
version
0.1.3
metadata
openclaw
requires
bins
install
package
@sprint-x/cli
bins
homepage
https://www.sprintx.co.kr/docs/getting-started/openclaw-handoff-quickstart
emoji
🧭

SprintX OpenClaw Handoff

Use this skill when an OpenClaw user needs to connect an existing SprintX account and project with the smallest proof packet that SprintX can verify today.

Do not use this skill for broad SprintX task management, review workflows, project creation, or generic natural-language control. This skill is a thin handoff layer over the shipped SprintX CLI contract.

한국어 안내:

  • 이 스킬은 OpenClaw와 SprintX를 최소 연결 확인 경로로 붙일 때만 사용합니다.
  • 기본 경로는 browser-approved sx auth입니다.
  • 한국어 상세 문서는 references/source-of-truth.md의 링크를 따르세요.

Primary Workflow

1. Confirm prerequisites

Before giving commands, verify all three are true:

  1. The user is signed into SprintX on the web.
  2. The user already has a SprintX project.
  3. The user can see a projectId from /dashboard?handoff=1&projectId=<id> or the handoff card.

If the project does not exist yet, stop and send the user to SprintX onboarding first. Do not invent a project-creation flow inside this skill.

2. Check whether sx already exists

Ask the operator to run:

sx --help

If sx is already installed, skip installation and go straight to sx auth.

If sx is missing, install it:

npm install -g @sprint-x/cli
sx --help

3. Choose the project context

Default path:

  • If the handoff URL or handoff card already shows a projectId, use it directly.

Command:

sx project use <project-id>

Success signal:

  • Output includes project_id
  • Output includes receipt_id

Recovery path only:

  • Only use sx project list when the user does not have the projectId yet or needs to recover it from shared projects.
sx project list

Do not make sx project list the default first-touch step.

4. Run the proof packet in order

Run these commands in this order:

sx auth
sx project use <project-id>
sx event --type runtime.started --summary "OpenClaw handoff started"
sx artifact add --title "first-log" --reference-uri "file:///tmp/openclaw.log" --content-type "text/plain" --summary "Initial OpenClaw evidence"
sx status
sx brief

Ordering matters:

  • sx event must happen before the first artifact receipt.
  • sx artifact upload is still an alias, but prefer sx artifact add in the primary path.

5. Confirm success at each step

Use these pass/fail signals:

  • sx auth

The CLI opens the SprintX approval URL or prints it in headless mode, then stores the local session.

  • sx project use

Returns project_id and receipt_id.

  • sx event

Returns status: accepted.

  • sx artifact add

Returns status: accepted.

  • sx status

Reads the expected project context.

  • sx brief

Returns a bounded next-step summary for the same project.

If the user reaches sx status and sx brief successfully, the handoff is complete.

Troubleshooting And Advanced Operators

The default path is always browser-approved sx auth.

Only move to this section when the user is in CI, headless, or another browserless environment.

Headless auth

Use:

sx --headless auth

In headless mode, the approval URL is printed to stdout. The user should open that URL in a browser session that is already signed into SprintX.

Access-token override

If the environment already injects an access token, SprintX CLI can skip browser auth.

Treat this as advanced or break-glass behavior only.

Hard rule:

  • Do not ask users to paste tokens into chat.
  • Do not recommend token copy/paste as the default onboarding path.

If the user needs the exact token override procedure or API URL override steps, point them to the upstream SprintX CLI docs in references/source-of-truth.md.

Rescue Map

Always name the failure class and give the explicit next command or next check. Do not end with vague copy like "something went wrong."

  • cli_missing

Install @sprint-x/cli, then rerun sx --help.

  • auth_required

Run sx auth.

  • project_context_missing

Run sx project use <projectId>.

  • project_membership_invalid

Re-check SprintX project access on the web, then rerun sx auth.

  • artifact_before_event

Run sx event first, then retry sx artifact add.

  • readback_failed

Reconfirm auth and project context, then retry sx status and sx brief.

  • api_unreachable

Verify the SprintX API base URL, connectivity, and retry window.

Guardrails

  • SprintX is not the executor. OpenClaw executes, SprintX reads and governs.
  • Do not expose provider API key management as part of this flow.
  • Do not introduce broader CLI commands into the hero path.
  • Keep the interaction checklist-like and explicit.

Source Of Truth

Read references/source-of-truth.md when you need:

  • the public quickstart links
  • the Korean docs links
  • ClawHub publish guidance for this repo

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

98.17%
按下载量换算906

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills