loop-goal-triage
避免选错运行模式,提升自动化任务的成功率与可验证性。
为任务决定最合适的执行模式并改写提示以匹配该模式。
帮你判断一项任务该用一次性普通 prompt、/goal(目标驱动)、/loop(定时轮询)、动态工作流还是长期 Routine 其中哪种执行方式,并把提示语改写成能在 Claude Code 或 Hermes 里直接跑的格式。常在准备把工作自动化或决定能不能循环执行某个任务时用,避免盲目把需要判断的生成任务丢进循环。特点是把可确定的子步骤和不可确定的生成核拆开,防止质量随循环自我匹配退化。
▸ 展开 SKILL.md 英文原文
Triage any task, prompt, or project to the right execution method, then rewrite the prompt to run that way in Claude Code or Hermes. The space is five-way, not a binary: a plain prompt (most tasks), /goal or Hermes goal-mode (drive one task to a verifiable finish), timer polling (/loop or Hermes cron), dynamic workflow or delegation, or a durable Routine or Hermes cron/webhook job. Built to prevent the core failure: forcing generative or judgment-heavy work into a loop, where quality drifts as the model pattern-matches its own output. Splits deterministic sub-steps that can loop from generative cores that cannot. MANDATORY TRIGGERS: loop or goal, /goal vs /loop, should I loop this, loop-goal-triage, Hermes loop, Hermes goal, Hermes cron, how should I run this, autonomous run, batch this directory, point claude code at, convert to a loop, execution method, should I automate this, promote to a routine, run this unattended, can I run this in cowork, which surface, /goal vs routine, dynami
帮我安装这个 skill:https://raw.githubusercontent.com/fullREFIT/skills/main/skills/loop-goal-triage/SKILL.mdcurl -fsSL "https://raw.githubusercontent.com/fullREFIT/skills/main/skills/loop-goal-triage/SKILL.md"# Loop / Goal Triage Decide how a task should run before deciding to automate it. This skill takes a task, a prompt, a project, or a directory of work and returns one defended verdict: run it as a plain prompt, a goal-driven run, a timer poll, a dynamic workflow, or a durable routine. In Claude Code that may mean `/goal`, `/loop`, dynamic workflows, or cloud Routines. In Hermes that means `/goal` when available, the `cronjob` tool for timer or durable runs, `delegate_task` or spawned Hermes agents for parallel work, and a plain prompt for most work. It then rewrites the prompt to run that way, or explains why no loop should touch it. ## Table of Contents 1. [Core principle](#core-principle