Run auditable, budgeted AI workflows with cost caps and receipts
Run deterministic AI workflows as auditable YAML files with cost caps and tamper-evident traces using Nika via the Hermes terminal tool.
Why it matters
Capture repeatable AI tasks as plain-text workflow files that can be checked before execution, run with hard cost budgets, and produce tamper-evident audit trails-enabling teams to automate multi-step LLM pipelines, ETL jobs, reports, and data processing tasks with full cost control and reproducibility.
Outcomes
What it gets done
Check workflow files for cost floors, secret flows, and type errors before spending any tokens
Execute multi-step AI pipelines mixing local and cloud models with hard budget caps that refuse to start or stop mid-run
Generate tamper-evident trace files for every run with verification, outputs extraction, and reproducibility
Author reusable workflow templates for daily digests, triage automation, reports, and ETL jobs from plain YAML
Install
Add it to your toolbox
Run in your project directory:
curl -fsSL https://spark.entire.vc/get/ag-nika | bash Overview
Nika Skill
A workflow execution engine that captures repeatable AI tasks as auditable YAML files with pre-run validation, hard cost caps, and tamper-evident traces. Use when tasks will be repeated, need cost control, mix providers, or require audit trails. Skip for one-off questions or autonomous coding (use opencode instead).
What it does
Use Nika as a deterministic workflow worker orchestrated by the Hermes terminal tool. Nika is an open-source (AGPL) Rust engine that captures a repeatable AI task as a plain-text *.nika.yaml file, audits it before a single token is spent (plan, cost floor, secret flows, types), executes it against local or cloud providers (Ollama/llama.cpp/vLLM included), and records a tamper-evident trace.
Division of labor: Hermes orchestrates, Nika captures repeatable work as a checkable file and runs it with receipts. Nika is NOT another coding agent - for autonomous coding, use the opencode skill. Delegate to Nika when the work should be repeatable, budgeted, and auditable.
When to use - and when NOT to
Use Nika when:
- The user asks to run, check, or author a
*.nika.yamlworkflow - A task will be repeated (daily digest, triage, ETL, report, multi-step LLM pipeline) - capture it as a workflow instead of re-prompting
- The user wants a hard cost cap, a cost estimate before running, or receipts/audit of what ran
- A pipeline mixes models/providers (local + cloud) or mixes LLM steps with shell/HTTP/file steps
- The user wants a run they can replay, verify, or reproduce later
Do NOT use Nika for:
- One-off questions or single tool calls - just answer or use a tool
- Autonomous code implementation/refactoring/PR review - use the
opencodeskill instead - Interactive back-and-forth tasks - workflows are non-interactive by design
Inputs and outputs
Inputs: A *.nika.yaml workflow file defining tasks, dependencies, model steps, and outputs. Optional variables passed via --var flags. Model selection via --model (e.g., ollama/qwen3.5:4b, mistral/mistral-small-latest). Hard budget via --max-cost-usd for paid models.
Outputs: Workflow execution results declared in the outputs: section. A tamper-evident trace file under .nika/traces/. Cost estimates and static analysis findings from nika check.
Integrations
Local inference providers: Ollama, llama.cpp, vLLM - run without API keys for offline/local work.
Cloud providers: Mistral and other cataloged providers - read standard environment variables from the shell; nika doctor diagnoses and prints exact fix commands.
Mock provider: mock/echo runs offline with zero keys and no network for testing and validation.
MCP oracle (optional): Nika also ships a read-only MCP oracle (nika mcp) exposing validation and learning tools (nika_check, nika_explain, nika_schema, nika_examples, nika_template, nika_canon, nika_catalog, nika_tools). Wiring guide at https://github.com/supernovae-st/nika-agents/tree/main/integrations/mcp. Without the oracle, everything still works over the terminal; running workflows stays there regardless, where the budget flags and traces live.
How to use it
Install Nika via brew install supernovae-st/tap/nika (other paths at https://nika.sh). Verify with terminal(command="nika --version"). Prove the toolchain offline first:
terminal(command="nika examples run 01-hello --model mock/echo")
Run a real workflow with a local model:
terminal(command="nika run flow.nika.yaml --model ollama/qwen3.5:4b", workdir="~/project")
Cloud model with a hard budget:
terminal(command="nika run flow.nika.yaml --model mistral/mistral-small-latest --max-cost-usd 0.25", workdir="~/project")
Pass workflow variables:
terminal(command="nika run report.nika.yaml --var city=Paris --var days=7 --max-cost-usd 0.50", workdir="~/project")
The check-before-run law: Never run an unchecked workflow. nika check is a static pre-flight (no tokens spent, no network) that validates plan shape, cost floor, secret-flow analysis, type checks, and tool args. Exit 0 means green, safe to run. Fix findings before running.
terminal(command="nika check flow.nika.yaml --json", workdir="~/project")
For long runs, launch in background and poll:
terminal(command="nika run long.nika.yaml --max-cost-usd 1.00", workdir="~/project", background=true)
process(action="poll", session_id="<id>")
process(action="log", session_id="<id>")
After a run, verify the tamper-evident trace using the path from the trace line:
terminal(command="nika trace show .nika/traces/<run>.ndjson", workdir="~/project")
terminal(command="nika trace verify .nika/traces/<run>.ndjson", workdir="~/project")
trace verify checks the tamper-evidence hash chain: exit 0 intact, 2 broken, 3 pre-chain.
Who it's for
Engineers and teams running repeated AI tasks who need cost control, auditability, and reproducibility. Users who want workflows captured as version-controlled files rather than re-prompting. Teams mixing local and cloud models or building multi-step LLM pipelines with hard budget caps. Unlike autonomous coding agents (use opencode for that), Nika is for deterministic, repeatable work with receipts.
Source README
Nika Skill
Use Nika as a deterministic workflow worker orchestrated by
the Hermes terminal tool. Nika is an open-source (AGPL) Rust engine that captures
a repeatable AI task as a plain-text *.nika.yaml file, audits it before a
single token is spent (plan, cost floor, secret flows, types), executes it
against local or cloud providers (Ollama/llama.cpp/vLLM included), and records
a tamper-evident trace.
Division of labor: Hermes orchestrates · Nika captures repeatable work as a
checkable file and runs it with receipts. Nika is NOT another coding agent -
for autonomous coding, use the opencode skill. Delegate to Nika when the
work should be repeatable, budgeted, and auditable.
When to Use
- The user asks to run, check, or author a
*.nika.yamlworkflow - A task will be repeated (daily digest, triage, ETL, report, multi-step LLM
pipeline) - capture it as a workflow instead of re-prompting - The user wants a hard cost cap, a cost estimate before running, or
receipts/audit of what ran - A pipeline mixes models/providers (local + cloud) or mixes LLM steps with
shell/HTTP/file steps - The user wants a run they can replay, verify, or reproduce later
When NOT to use
- One-off questions or single tool calls - just answer or use a tool
- Autonomous code implementation/refactoring/PR review - use the
opencodeskill - Interactive back-and-forth tasks - workflows are non-interactive by design
Prerequisites
- Nika installed:
brew install supernovae-st/tap/nika- other install
paths (script, manual download) are documented at https://nika.sh: installing
is a human step, not something this skill runs - Verify:
terminal(command="nika --version") - Zero keys needed for local/offline work:
--model mock/echo(offline) and--model ollama/...(local) run without any API key - Cloud providers read standard env vars from the shell;
terminal(command="nika doctor")diagnoses and prints exact fix commands
How to Run
Prove the toolchain offline first (no key, no network):
terminal(command="nika examples run 01-hello --model mock/echo")
Run a real workflow - local model first:
terminal(command="nika run flow.nika.yaml --model ollama/qwen3.5:4b", workdir="~/project")
Cloud model with a hard budget (always set one for paid models):
terminal(command="nika run flow.nika.yaml --model mistral/mistral-small-latest --max-cost-usd 0.25", workdir="~/project")
Pass workflow variables:
terminal(command="nika run report.nika.yaml --var city=Paris --var days=7 --max-cost-usd 0.50", workdir="~/project")
Long runs: launch in background and poll - do not block the turn:
terminal(command="nika run long.nika.yaml --max-cost-usd 1.00", workdir="~/project", background=true)
process(action="poll", session_id="<id>")
process(action="log", session_id="<id>")
The check-before-run law
Never run a workflow you have not checked. nika check is a static pre-flight
(no tokens spent, no network): plan shape, cost floor, secret-flow analysis,
type checks, tool args.
terminal(command="nika check flow.nika.yaml --json", workdir="~/project")
Findings carry NIKA-XXXX codes that explain themselves vianika explain NIKA-XXXX. Exit 0 = green, safe to run. Fix findings before
running - never suppress them.
Authoring a workflow
Turn a repeated task into a file. List templates, then instantiate:
terminal(command="nika new --from '?'")
terminal(command="nika new flow.nika.yaml --from chain", workdir="~/project")
--from also accepts plain-words intent. Edit the skeleton (vars:,tasks:, outputs:), then check it. nika explain flow.nika.yaml
narrates what it will do, the waves, the cost floor, and what it touches -
before anything runs.
The artifact you are producing looks like this (checks clean on 0.98):
nika: v1
workflow: daily-brief
model: ollama/qwen3.5:4b
tasks:
- id: fetch
invoke:
tool: "nika:fetch"
args: { url: "https://hn.algolia.com/api/v1/search?tags=front_page" }
- id: brief
depends_on: [fetch]
infer:
max_tokens: 300
prompt: |
Five bullet points, most signal first: ${{ tasks.fetch.output }}
outputs:
brief: ${{ tasks.brief.output }}
One file, plain YAML: tasks, an explicit dependency, a bounded model step,
a declared output. That file is what gets checked, run, diffed and reused.
Cost honesty
- When the workflow prices above the budget,
--max-cost-usdrefuses to
start (exit 2, zero tokens) - and since 0.99 the pre-start floor prices
the EFFECTIVE model,--modeloverride included - Mid-run, the ledger stops the workflow the moment real spend crosses the
budget: the crossing call completes, nothing new starts, the run failsNIKA-1704(exit 1) with spent-vs-budget - Estimates use LIST RATES from the vendored public catalog; local · mock ·
unpriced work is never blocked - A model absent from the catalog meters as $0 - a paid uncataloged model
runs with no budget protection; prefer cataloged ids (nika catalog) - Report the cost line from the final run card (the summary block
nika runprints last - status, cost, trace path) back to the user verbatim
Receipts and verification
Every run writes a trace under .nika/traces/ - the run card prints the
trace path on its trace: line. Both commands take that path (bare
invocations are a usage error):
terminal(command="nika trace show .nika/traces/<run>.ndjson", workdir="~/project")
terminal(command="nika trace verify .nika/traces/<run>.ndjson", workdir="~/project")
trace verify checks the tamper-evidence hash chain: exit 0 intact · 2
broken · 3 pre-chain. Also useful: nika trace outputs · nika trace flow ·nika trace reproduce · nika trace export (OTLP lines).
Optional: MCP oracle tools
Nika also ships a read-only MCP oracle (nika mcp) exposing validation and
learning tools (nika_check, nika_explain, nika_schema, nika_examples,nika_template, nika_canon, nika_catalog, nika_tools). If the user
wants those wired into their agent client, point them at the wiring guide -
https://github.com/supernovae-st/nika-agents/tree/main/integrations/mcp -
editing the client's own configuration is the user's step, never this
skill's. Without the oracle, everything above still works over the terminal;
running workflows stays there regardless, where the budget flags and traces
live.
Quick Reference
| Command | Use |
|---|---|
nika welcome |
What Nika is + what this machine has (offline, exit 0) |
nika new <file> --from <template> |
Scaffold a workflow (--from '?' lists) |
nika check <file> --json |
Static pre-flight - ALWAYS before run |
nika explain <file> |
Narrate: waves, cost floor, touches |
nika run <file> --model <p/m> --max-cost-usd <usd> |
Execute with budget |
nika test <file> |
Golden test under the mock provider (offline) |
nika trace show/verify/outputs/flow <trace> |
Receipts after a run (path from the run card's trace: line) |
nika doctor |
Diagnose env/keys - prints exact fixes |
nika catalog |
Provider/model ids + required env vars |
Procedure
- Verify readiness:
terminal(command="nika --version"); install per
Prerequisites if missing. - If the task is new, scaffold:
nika new <file> --from <template>. - Check:
nika check <file> --json. Fix every finding
(nika explain <code>). Do not run an unchecked file. - Preview offline when useful:
nika run <file> --model mock/echo. - Run with an explicit
--modeland, for any paid model, an explicit--max-cost-usd. - For long runs use
background=trueand poll withprocess(action="poll"|"log"). - After the run:
nika trace show <trace>+nika trace verify <trace>
(path from the run card); report outputs, actual cost, and the verify
verdict to the user.
Rules
- NEVER run an unchecked workflow -
nika checkfirst, every time. - ALWAYS pass
--max-cost-usdwhen the model is a paid cloud model. - Prefer local models (
ollama/...) ormock/echofor drafts; escalate to
cloud models only when needed. - Report the final run card honestly: status, actual cost, trace path,
trace verifyverdict. - One workflow file per delegated task; keep files in the user's repo so
they are diffable and reusable. - If a run fails, read
nika explain <NIKA-code>before retrying - do not
blind-retry.
Pitfalls
nika runrenders live on a TTY; when piped (Hermes terminal), output can
stay quiet until completion - for anything long, preferbackground=true+
poll, then readnika trace show <trace>for the final card.nika newwith no--fromopens a guided TTY flow; in a pipe it fails
fast naming the flag - always pass--from <template>when delegating.- The budget guard stops NEW admissions: one wide parallel wave can overshoot
by that wave's spend. Tighten withmax_parallel:when the budget is strict. - Uncataloged model ids meter as $0 - never rely on
--max-cost-usdfor a
custom endpoint model. - Workflow
outputs:are not resolved on a budget stop - per-task values
live in the trace (nika trace outputs).
Limitations
- Static checks reduce risk but cannot prove that remote content, shell steps,
provider behavior, or generated outputs are safe or correct. - Cost caps are not reliable for uncataloged paid models and a parallel wave
can overshoot before new work is stopped; require explicit user approval for
paid runs and report the actual ledger result. - Trace verification proves integrity of the recorded chain, not correctness
of the workflow or truth of its outputs.
Verification
Smoke test (offline, zero keys):
terminal(command="nika examples run 01-hello --model mock/echo")
Success criteria: run completes exit 0 with a final run card · nika check
exits 0 before any real run · nika trace verify exits 0 after the run.
Discussion
Questions & comments · 0
Sign In Sign in to leave a comment.