Skill · em Automatizar e estender
rote
Compile a proven agent skill (a SKILL.md plus references) into a deterministic pipeline that runs without an LLM in the loop, then serve it back to Claude as an MCP tool. Use when: rote, compile this skill, turn this skill into a workflow, make this skill deterministic, make this skill cheaper or…
Procedência
- Origem: davila7/claude-code-templates
- Caminho:
cli-tool/components/skills/workflow-automation/rote - Versão fixada:
57f899e5394bb8ca166f38eacae8f0853cbfe033 - Licença: Apache-2.0
- Espelhado em 25/09/2026
- nenhum download no Claude Code Templates (lido em 25/09/2026)
Antes de instalar
1 arquivo · 7,6 KB · só texto, nenhum script
Instalar na sua CLI
O comando baixa a versão fixada (commit 57f899e) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.
Claude Code
Neste projeto: instala em .claude/skills/rote/.
d=".claude/skills/rote" u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/workflow-automation/rote" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md"
Global: instala em ~/.claude/skills/rote/.
d="$HOME/.claude/skills/rote" u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/workflow-automation/rote" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md"
Codex
Neste projeto: instala em .agents/skills/rote/.
d=".agents/skills/rote" u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/workflow-automation/rote" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md"
Global: instala em ~/.agents/skills/rote/.
d="$HOME/.agents/skills/rote" u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/workflow-automation/rote" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md"
Antigravity
Neste projeto: instala em .agents/skills/rote/.
d=".agents/skills/rote" u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/workflow-automation/rote" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md"
Global: instala em ~/.gemini/antigravity-cli/skills/rote/.
d="$HOME/.gemini/antigravity-cli/skills/rote" u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/workflow-automation/rote" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md"
Peça ao Rook
Já usa o Rook Labs? Cole no chat do Rook: instale a skill https://rooklabs.sh/marketplace/cct.rote
Prévia do SKILL.md
---
name: rote
description: "Compile a proven agent skill (a SKILL.md plus references) into a deterministic pipeline that runs without an LLM in the loop, then serve it back to Claude as an MCP tool. Use when: rote, compile this skill, turn this skill into a workflow, make this skill deterministic, make this skill cheaper or faster, …
license: Apache-2.0
metadata:
author: trevhud
version: "0.12.1"
homepage: https://github.com/trevhud/rote
---
# rote: compile a skill into a deterministic pipeline
You orchestrate the `rote` CLI. It runs an LLM compiler agent over a source
skill once, and emits a pipeline that runs forever after without an agent
loop. Your job is to resolve the inputs, run the CLI, and interpret the
output. You never classify nodes or write `pipeline.yaml` yourself; the
CLI's compiler agent does that.
## When this applies
Use it on a skill the user has already run many times and wants to run many
more, unattended. Exploratory or one-off work should stay an agent loop:
flexibility is the point there, and there is nothing proven to compile yet.
Say so and stop if that is what you are looking at.
## 1. Identify the source skill
The source is a directory containing a `SKILL.md`, optionally with a
`references/` folder. The user names it, or you infer it from context: a
skill just discussed, a path in the conversation, `.claude/skills/*` or
`skills/*` in the project.
Confirm the resolved absolute path with the user before running.
Compilation costs real time and tokens, so never guess and go. If the
directory has no `SKILL.md`, stop and ask.
## 2. Pick a runtime target
| Runtime | `--runtime` | Language | Choose when |
| --- | --- | --- | --- |
…