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-recipesnpx skills add shyftlabs/continuum --skill continuum-recipesgit 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-recipes)<a href="https://agentmods.dev/skills/shyftlabs/continuum/continuum-recipes"><img src="https://agentmods.dev/badge/skills/shyftlabs/continuum/continuum-recipes.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.1 | $0.00073 | $0.01914 |
| Opus 5 | $0.00036 | $0.00957 |
| Sonnet 5 | $0.00015 | $0.00383 |
| Haiku 4.5 | $0.00007 | $0.00191 |
Grade B, and why
continuum-recipes scanned grade B with 1 finding 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 2d 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.
Instruction-override phrasingmediumPrompt injection
Text telling the model to disregard its earlier instructions or safety rules is the shape of a prompt injection, whoever wrote it.
if "ignore previous instructions" in text.lower(): Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.
How it starts
The opening of the file, as written. The whole thing — 300 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Continuum Recipes Skill
Common, ready-to-paste patterns. Each is verified against framework 0.2.0.
1. RAG-augmented agent
from continuum.agent import BaseAgent, AgentRunner
from continuum.agent.config import AgentConfig
retrieved_docs = await my_retriever.search(query)
rag_text = "\n\n".join(d.text for d in retrieved_docs[:5])
agent = BaseAgent(
name="rag-agent",
instructions="Answer ONLY using the PROVIDED CONTEXT. If unsure, say so.",
config=AgentConfig(rag_context=rag_text, require_context=True),
)
resp = await AgentRunner().run(agent, query, user_id="u1")
2. Plan-and-execute (orchestrator + executor)
from pydantic import BaseModel
from typing import Literal
class ToolStep(BaseModel):
step_id: str
tool_name: str
parameters: dict
instruction: str
depends_on: list[str] | None = None
class ExecutionPlan(BaseModel):
intent: Literal["search", "checkout", "support", "other"]
respond_directly: bool = False
direct_response: str | None = None
steps: list[ToolStep] = []
user_context: str | None = None
response_instructions: str = "Be concise."
orchestrator = BaseAgent(
name="orchestrator",
instructions=("Analyze the request and emit an ExecutionPlan as JSON. "
"If you can answer directly, set respond_directly=true."),
output_schema=ExecutionPlan,
model="gpt-4o-mini",
)
executor = BaseAgent(
name="executor",
instructions="Execute the plan steps in order using the available tools.",
mcp_servers=[mcp],
model="gpt-4o-mini",
)
runner = AgentRunner(agent_registry={"orchestrator": orchestrator, "executor": executor})
plan_resp = await runner.run(orchestrator, user_msg, session_id=sid, user_id=uid)
plan: ExecutionPlan = plan_resp.structured_output
if plan.respond_directly:
return plan.direct_response
exec_resp = await runner.run(executor, format_plan_for_executor(plan),
session_id=sid, user_id=uid)
return exec_resp.content
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.
- 2d ago First seen · 300 lines · 73 tokens per session scan B ac69c64cd542
continuum-recipes is a skill published in the GitHub repository shyftlabs/continuum (84 stars, last pushed 2d ago), licensed Apache-2.0. It adds 73 tokens to every session and 1,914 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 1 finding (instruction-override phrasing). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
agentfootprint
Use when building AI agents with agentfootprint — LLMCall, Agent, skills, RAG, memory, control flow, Swarm concepts, mock/anthropic/openai/ollama providers, tools, recorders, resilience, and streaming. Also use when someone asks how agentfootprint works or wants to understand the framework.
llm-application-dev
Building applications with Large Language Models - prompt engineering, RAG patterns, and LLM integration. Use for AI-powered features, chatbots, or LLM-based automation.
jetson-inference-mem-tune
Pick the serving stack and per-runtime memory flags (vLLM, SGLang, llama.cpp, TensorRT Edge-LLM) for an LLM/VLM workload on any NVIDIA Jetson.
embedding-strategies
Select and optimize embedding models for semantic search and RAG applications. Use when choosing embedding models, implementing chunking strategies, or optimizing embedding quality for specific domains.
neuron-test-engineer
Write tests for Neuron AI agents, RAG systems, workflows, and tools using the built-in testing utilities. Use this skill when the user mentions testing agents, writing unit tests, mocking AI providers, testing tool execution, verifying RAG retrieval, testing workflow behavior, or creating test cases for Neuron AI…
mem0-integration
Mem0 memory layer integration for AI agents. Implement persistent, semantic memory for long-term context retention and personalization.