Relay start
Skill liutao773680119-cmyk/relay-dev-skills/starter/relay-kit-v1/global-skills/relay-start
一套面向 Codex、Cursor、Claude Code 的接力开发 skills 与项目模板,支持中文自然语言触发、多会话上下文恢复和标准交接。
npx -y skills add liutao773680119-cmyk/relay-dev-skills --skill relay-startAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when starting a new session or taking over from another model, and context must be reconstructed before execution. 中文常见触发:接手这个项目、按接力开发规则来、开始按接力流程接手当前项目。
SKILL.md
1.4 KB, as published. Nobody here has run it
Relay Start
目标
让新会话或接力会话在 30 秒内恢复上下文并进入执行。
执行步骤
- 按顺序读取:
AGENTS.mdtask_registry.mdprogress.mdtask_plan.mdfindings.md修改记录_会话备忘.md
- 默认采用“摘要优先、按需深读”:
AGENTS.md全文读取task_registry.md先读当前活跃Task-ID行progress.md先读顶部Latest Handoff Snapshottask_plan.md/findings.md先读当前任务相关段修改记录_会话备忘.md先读最近 1-3 条相关记录- 仅在用户明确要求、上下文冲突或无法恢复任务时再扩大读取范围
- 先锁定或创建一个
Task-ID,并声明Task-Name。 - 输出
Session Context:- Developer/Branch(or No-Git)
- Task-ID / Task-Name
- Active Goal
- Current Phase
- Next First Command
- Open TODO Top3
- 执行启动检查:
Get-LocationGet-ChildItem -Forceif (Test-Path .git) { git status --short } else { 'NO_GIT_REPO' }python -V
- 执行
Next First Command并继续当前任务。