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 commands/thrashr888/agentkernel/pipelinesgit clone --depth 1 https://github.com/thrashr888/agentkernelWhat 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.00000 | $0.00574 |
| Opus 5 | $0.00000 | $0.00287 |
| Sonnet 5 | $0.00000 | $0.00115 |
| Haiku 4.5 | $0.00000 | $0.00057 |
Grade A, and why
pipelines 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 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.
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 — 90 lines — stays where its author put it; the contents beside it link to each section on GitHub.
agentkernel pipeline
Run a multi-step agent pipeline. Each step runs in its own sandbox, and output from one step can be piped as input to the next.
Usage
agentkernel pipeline [OPTIONS] <FILE>
Options
| Option | Description |
|---|---|
-B, --backend <BACKEND> |
Backend to use for pipeline sandboxes |
Pipeline File Format
Pipelines are defined in TOML:
[[step]]
name = "generate"
image = "python:3.12-alpine"
command = "python generate_data.py"
output = "/app/output/"
[[step]]
name = "process"
image = "node:22-alpine"
command = "node process.js"
input = "/app/input/"
output = "/app/results/"
[[step]]
name = "analyze"
image = "python:3.12-alpine"
command = "python analyze.py"
input = "/app/input/"
Step Fields
| Field | Required | Description |
|---|---|---|
name |
Yes | Step name (must be unique, no / or ..) |
image |
Yes | Docker image for this step |
command |
Yes | Command to execute (split on whitespace) |
input |
No | Directory inside sandbox to receive previous step's output |
output |
No | Directory inside sandbox to pass to next step |
Examples
Run a pipeline
$ agentkernel pipeline pipeline.toml
[1/3] generate done (2.1s)
[2/3] process done (1.5s)
[3/3] analyze done (0.8s)
Done (4.4s total)
With a specific backend
agentkernel pipeline pipeline.toml -B docker
How It Works
- Steps execute sequentially in order
- Each step gets its own sandbox (created, started, executed, stopped, removed)
- If a step defines
output, files in that directory are copied to a temporary host directory - If the next step defines
input, those files are copied into the sandbox before execution - Pipeline stops on first failure
- All temporary directories are cleaned up after the pipeline completes
Validation
- Step names must be unique
- Step names cannot contain
/,\, or..(path traversal prevention) - Pipeline must have at least one step
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 · 90 lines · 0 tokens per session scan A d9df2f912dfb
pipelines is a command published in the GitHub repository thrashr888/agentkernel (58 stars, last pushed 3d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 574 tokens. 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 commands, from other repositories
agentlas
Agentlas commands — one entry point for network, build, storm, call, and the rest.
agnix
Use when user asks to 'lint agent configs', 'validate skills', 'check CLAUDE.md', 'validate hooks', 'lint MCP', or mentions 'agent config issues', 'skill validation'.
agentlas-cloud
Staff a task only from the signed-in owner's Agent Cloud agents.
agentlas-graph
Build an Agentlas automation by describing it, list saved ones, or request a run.
agentlas-orch
Set or show which model runs the orchestrator and which runs the workers.
agentlas-storm
Run a force-robust Stormbreaker loop — route to real agents, execute a verified pipeline to completion.