Add rote plugin (Workflow Orchestration) - #319
Open
trevhud wants to merge 1 commit into
Open
Conversation
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds rote under Workflow Orchestration.
What it is
rote is an open source CLI (Apache-2.0,
pip install rote-cli) that compiles a proven skill, meaning a SKILL.md plus its references, into a deterministic pipeline that runs without an LLM in the loop. Fixed logic becomes reviewable Python or TypeScript with per-step tests; the steps that genuinely need judgment stay as typed LLM-judge signatures rather than being pretended away. Targets are DBOS, Temporal, plain Python, Cloudflare Workflows, DBOS TypeScript, and Inngest.The plugin ships two skills:
/rote:compileresolves the source skill, picks a runtime, runs the CLI in the background, and reports the node-kind breakdown and codified fraction./rote:servecoversrote registerplusrote serve, which exposes compiled pipelines back to Claude as MCP tools so Claude can trigger a deployed workflow instead of re-running the skill.What this PR changes
plugins/rote/with.claude-plugin/plugin.jsonand the two skills, vendored to match how the other 116 plugins live in this repo..claude-plugin/marketplace.json, categoryWorkflow Orchestration.README.mdandREADME-zh.md, alphabetical betweenproblem-solver-specialistandstudio-coach.Both JSON files parse. Note that this is the first skills-only plugin in the repo; every existing plugin uses
commands/,agents/, orhooks/.The canonical source is trevhud/rote, which publishes its own marketplace at
.claude-plugin/marketplace.json. If you would rather not carry a vendored copy that can drift, I am happy to change this to a pointer instead.Disclosure: I am the author. The project is new and I am not claiming traction it does not have.
🤖 Generated with Claude Code