sprint-status
仓库创建 2026年2月2日最近提交 6 天前SkillHot 收录 20 天前
▸ 精选理由
为多实例工作带来一致的会话方向感,减少上下文错误。
这个 Skill 做什么
在并行会话中显式报告项目、分支与任务以避免混淆。
并行做好几个项目或多个 Claude Code 会话时,明确报出当前项目、分支和任务,避免信息混淆。每个重要步骤结束都回报状态线,提问时也会重复项目上下文。这样能快速定位别人在哪个分支、谁负责,减少误操作和重复劳动。
▸ 展开 SKILL.md 英文原文
Track parallel work sessions and prevent confusion across multiple Claude Code instances. Every major step ends with a status line. Every question re-states project, branch, and task.
2.7k
Stars
257
Forks
40
仓库内 Skill
+55
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/rohitg00/pro-workflow/main/skills/sprint-status/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/rohitg00/pro-workflow/main/skills/sprint-status/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Sprint Status When running multiple Claude Code sessions in parallel, confusion is the enemy. This skill ensures every session identifies itself and every step reports its state. ## Session Identification Every response that involves a decision, plan, or significant action starts with orientation: ```text SESSION: my-app | branch: feat/auth | task: Add JWT refresh tokens ``` This takes one line. It costs almost nothing. It prevents the user from applying feedback to the wrong session. ### Detecting Parallel Sessions Check for sibling Claude Code processes: ```bash pgrep -af "claude" | grep -v "$$" | head -5 ``` Or check for active worktrees: ```bash git worktree list 2>/dev/null
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有