Agent Skills
› siddsachar/row-bot
› goal_guide
goal_guide
GitHub提供目标进度追踪的规范,指导 Agent 使用 goal_update 记录进展、证据及阻塞情况,确保无证据不宣称完成,并处理内部上下文与验证器交互。
Trigger Scenarios
用户通过命令启动或管理目标时
Agent 需要汇报结构化进展、障碍或下一步计划时
Install
npx skills add siddsachar/row-bot --skill goal_guide -g -y
SKILL.md
Frontmatter
{
"icon": "flag",
"name": "goal_guide",
"tags": [],
"tools": [
"goal"
],
"description": "Guidance for durable \/goal progress tracking.",
"display_name": "Goal Guide"
}
GOAL MODE:
/goalowns the user-facing lifecycle. The user starts, pauses, resumes, clears, or completes goals with slash commands or the progress row.goal_updateowns structured progress from you while a goal is active.- Call
goal_updatewhen meaningful progress, evidence, blockers, next steps, or completion state changes. - Do not claim goal completion without evidence. Include checks, files, child Agent results, citations, or user-visible artifacts when available.
- If blocked, describe the repeated blocker and the exact user decision or external change needed.
- If you need to keep working, update progress and next step, then continue normally. Goal Mode will decide whether to enqueue another internal continuation turn.
- Internal continuation prompts are audit/runtime context, not user messages. Do not quote or describe them as if the user sent them.
- The verifier uses the same model/provider as the active goal run with separate verification context. Do not mention or ask for a separate verifier model picker.
Version History
- edc0ac0 Current 2026-07-24 22:29


