Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add open-octo/octo-agent --skill workflow-creatorgit clone --depth 1 https://github.com/open-octo/octo-agentWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/open-octo/octo-agent/workflow-creator)<a href="https://agentmods.dev/skills/open-octo/octo-agent/workflow-creator"><img src="https://agentmods.dev/badge/skills/open-octo/octo-agent/workflow-creator/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/open-octo/octo-agent/workflow-creator"><img src="https://agentmods.dev/badge/skills/open-octo/octo-agent/workflow-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00278 | $0.02452 |
| Opus 5 | $0.00139 | $0.01226 |
| Sonnet 5 | $0.00056 | $0.00490 |
| Haiku 4.5 | $0.00028 | $0.00245 |
Grade A, and why
workflow-creator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 168 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Build a saved workflow
A saved workflow is a small Ruby (mruby) script that runs on demand or on a schedule. Your job is to guide the user from a one-off description of what they want repeated to a saved, validated workflow. It takes one of two shapes, sometimes mixed in the same script:
- Skill chain — the script calls existing skills/recordings in order via
recording(...)/skill(...), passing each one's output to the next's input. You are composing things that already exist. - Primitive-composed — the script calls
agent(...)directly (alone, or fanned out withparallel/pipeline) to do fresh sub-agent work that has no matching existing skill — e.g. "review this diff across 3 dimensions in parallel" or "run this check over every file in the list." There is nothing to inventory here; you're writing the orchestration from scratch, just not the agent-level logic (that's still an LLM call insideagent(...), not new Go/tool code).
Figure out which shape (or mix) fits before drafting anything — see Step 0.
The pieces you use
agent(prompt, opts = {})— run one sub-agent to completion, returns a String.opts[:schema](a JSON-schema string) makes the reply come back as a JSON string matching it — parse it yourself withJSON.parse, unlikeskill()'s schema results, which arrive already parsed.skill(name, params = {}, opts = {})— runs one existing SKILL.md skill as a sub-agent and returns its result as native Ruby.opts[:schema]makes the reply come back structured (already parsed).recording(name, params = {})— replays one existing browser recording deterministically and returns its declared outputs as a RubyHash.args— the workflow's input, a RubyHash, so the saved workflow is parameterizable and reusable.parallel(items) { |it| ... }/pipeline(items, *stages)— for fan-out or staged flows, overagent()/skill()/recording()calls.log(msg)/phase(title)— progress output, no effect on scheduling.- The
workflowtool — runs a script (in the background: returns a run id). workflow_save— persists the script as a named workflow.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 168 lines · 278 tokens per session scan A 2435e5ea1342
workflow-creator is a skill published in the GitHub repository open-octo/octo-agent (97 stars, last pushed today), licensed MIT. It adds 278 tokens to every session and 2,452 once invoked, about $0.0014 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
meeting-notes
Use when the user asks to capture, structure, or summarize meeting notes / call notes / 1:1 discussion / standup notes. Produces a standard template with attendees, agenda, decisions, action items (owner + deadline), and open questions.
ha-settings
Manage Hope Agent application settings through conversation. Use when the user wants to view or change any app configuration: theme, language, enhanced focus indicators, proxy, temperature, notifications, tool timeout, context compaction, automatic session titles, web search, GitHub issue reporting, memory, embedding…
tg-moderator
Telegram chat moderator/companion mode. No tools, conversational only.
apple-reminders
Apple Reminders via remindctl: add, list, complete.
apple-notes
Manage Apple Notes via memo CLI: create, search, edit.
telegram-workflow
Rules for using a personal Telegram account through claudegram, a connection that works as the account owner rather than as a bot. It covers reading chats, searching messages, drafting replies, and managing conversations and groups.