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 agentmods add skills/shyftlabs/continuum/continuum-workflowsnpx skills add shyftlabs/continuum --skill continuum-workflowsgit clone --depth 1 https://github.com/shyftlabs/continuumWrote 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/shyftlabs/continuum/continuum-workflows)<a href="https://agentmods.dev/skills/shyftlabs/continuum/continuum-workflows"><img src="https://agentmods.dev/badge/skills/shyftlabs/continuum/continuum-workflows.svg" alt="Measured on agentmods" height="20"></a>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 | $0.00082 | $0.01191 |
| Opus 5 | $0.00041 | $0.00596 |
| Sonnet 5 | $0.00016 | $0.00238 |
| Haiku 4.5 | $0.00008 | $0.00119 |
Grade A, and why
continuum-workflows 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 today.
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 — 208 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Continuum Workflow Agents Skill
Workflow agents are themselves BaseAgent subclasses, so they nest.
Each ships with a create_* factory.
Authoritative source: docs/agent.md, §6.
Imports
from continuum.agent import (
create_sequential_agent, create_parallel_agent, create_loop_agent,
create_reflection_agent, create_planner_agent, create_router_agent,
MemoryScope, MergeStrategy, FailStrategy, TerminationType,
)
# Debate, Scatter, and Supervised factories live one level deeper —
# they are NOT re-exported from `continuum.agent`.
from continuum.agent.workflow import (
create_debate_agent, create_scatter_agent, create_supervised_agent,
)
SequentialAgent
pipeline = create_sequential_agent(
name="content-pipeline",
agents=[researcher, writer, editor],
pass_full_history=False,
fail_strategy=FailStrategy.FAIL_FAST,
)
Use when each agent's output should feed the next.
ParallelAgent
fanout = create_parallel_agent(
name="fanout",
agents=[a, b, c],
merge_strategy=MergeStrategy.LLM_SUMMARIZE, # CONCATENATE / STRUCTURED / FIRST_SUCCESS
fail_strategy=FailStrategy.CONTINUE_ON_ERROR,
timeout=300,
)
Use when independent perspectives can run concurrently and you want them merged.
LoopAgent
iterate = create_loop_agent(
name="iterate-until-done",
agent=worker,
termination_type=TerminationType.LLM_DECISION,
max_iterations=10,
termination_prompt="Reply COMPLETE if done, CONTINUE otherwise.",
# or termination_tool="finish" / termination_pattern="^DONE" /
# termination_condition=fn(content, history)
)
ReflectionAgent
self_improving = create_reflection_agent(
name="self-improving",
agent=writer,
critique_prompt=None, # default critique
max_reflections=2,
reflection_model=None, # defaults to writer's model
)
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.
- today First seen · 208 lines · 82 tokens per session scan A e32f223dde5d
continuum-workflows is a skill published in the GitHub repository shyftlabs/continuum (84 stars, last pushed today), licensed Apache-2.0. It adds 82 tokens to every session and 1,191 once invoked, about $0.0004 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-09-03.
Other skills, from other repositories
reachai-onboarding
Integrate Java business systems with ReachAI SDK registration, SDK instance heartbeat, gateway/embed access, and optional API Management handoff. Use when asked to connect a Spring Boot service to ReachAI, add reachai-capability-sdk or reachai-spring-boot2-starter, configure…
agenticx-agent-builder
Guide for creating persistent Near desktop digital avatars (数字分身) via natural-language interview and the createavatar tool. Use when the user wants to create an avatar, digital twin, specialist agent persona, or add someone to the avatar sidebar.
agenticx-skill-manager
Guide for managing AgenticX skills including listing, searching, installing, uninstalling, publishing, and running a skill registry server. Use when the user wants to manage skills, find available skills, publish custom skills, set up a skill registry, or understand the skill ecosystem.
agenticx-tool-creator
Guide for creating custom tools in AgenticX including function decorator tools, MCP tool integration, tool registries, and remote tool access. Use when the user wants to create tools for agents, integrate external APIs as tools, build MCP servers, or extend agent capabilities with custom functions.
skill-creator
Create or update AgenticX skills from a live conversation workflow. Use when the user asks to save, persist, or encapsulate a multi-step procedure as a local skill, when tool calls were repeated too often, or when refining SKILL.md frontmatter and discoverability after skillmanage.
feature-loop
Coding agent for the project-level harness — one feature per session, must verify, must be mergeable.