DA`/50 · open-source · local-first
Run commodified intelligence
at industrial volume.
Intelligence has become a commodity: cheap, abundant, interchangeable. That makes it a pipeline problem, not an app problem. Fifty-cent models at ten-billion-token scale need plumbing that is stateless, composable, and controllable. DA`/50 is that plumbing: a unix-grade call layer, memory that travels between context windows, agents with real control flow, and spend that cannot overshoot.
The front door
llcat: /usr/bin/cat for LLMs
An introduction. One stateless, transparent command that talks to any OpenAI-compatible endpoint: OpenRouter, Ollama, llama.cpp, sglang. Nothing is installed beyond the tool itself.
- Universal. Keys, models, servers and conversations are explicit arguments. Rotate keys from a file (-k @credentials.txt:0), batch across models, run N×M×P jobs in parallel.
- Stateless. No config files, no caches, no leaky state between runs. --curlify shows you the raw request. Nothing is hidden because nothing is the Emperor's clothes.
- Composable. It is the base layer everything else in this cabinet runs on or pairs with. Master the call and the rest is within reach.
$ uvx llcat openrouter.ai/api -m
OpenRouter model list:
openai/gpt-5.5
anthropic/claude-sonnet-4-6
deepseek/deepseek-v4
qwen/qwen3-235b-a22b
meta-llama/llama-3.3-70b
$ for i in {0..40}; do llcat -k @credentials.json:.[1].password -m @models.txt:$i \
"evaluate this prompt against 40 models, in parallel"; done
→ 40 responses, 3 servers, one line
The other door
ursh: enterprise compliance for what you run
Write your enterprise's compliance document once. SOC-2, HIPAA, favorable-license posture, whatever you must stand behind. Then audit any piece of software: a script, a dependency chain, a package from npm, PyPI, gem, or crates. Find out immediately whether it is compliant with your enterprise.
- The compliance document is the source of truth. Every audit produces a machine-readable permission manifest; ursh answers one question against your policy: compliant, or not.
- Transitive dependency analysis. Audit each dependency and use set operations: union, intersect, difference to reveal the real permission surface of the whole chain.
- Policies you can enforce. Generate policy files from your compliance document and gate every future run on them.
$ ursh policy --from soc2.yaml
compliance doc loaded: soc-2 · 12 rules
$ ursh audit gh:org/ci/deploy.sh
✓ passes policy
$ ursh audit gh:vendor/telemetry.sh
✗ NOT COMPLIANT
network.put https://telemetry.example.com/events (line 41)
not permitted by soc-2 policy
How it stacks
One system, not a pile of tools.
Each stage is a small, composable, MIT tool. Together they form the operating layer: feed the machine, control the agent, remember the context, count the cost, prove the trust.
-
01
Talk
Reach any model, any protocol, any provider.
llcat · llsed · MAS
-
02
Remember
Stop re-burning tokens. Move memory between context windows.
ctools · gabngo
-
03
Control
Keep agents on task. The model is the ALU, not the driver.
structured-skills · haberdash · maxac
-
04
Spend
Caps that are enforced by the provider, not aspirational.
capit
-
05
Trust
Enterprise compliance documents: audit any script or dependency against your policy.
ursh
-
06
Serve
Meet humans where they work: the terminal.
streamdown · sidechat · zummoner · ESChatch
-
07
Feed
Crawl, dedup, and preprocess corpora before a single expensive token.
wgetjs · undecorate · ono · dailyllm.news
-
08
Scale
Many agents, one codebase: merge-safe filesystems, no collisions.
agentfs · StackedDiffFS
The cabinet
Every drawer.
Talk to models
Memory & context
Agents & control flow
structured-skills
A tiny VM where the LLM is the ALU. Real control flow, DAP debugging.
pyhaberdash
Runtime for agentic instructions. Cloning a repo and running a macro are one op.
pymaxac
Single-shot agent: define success, plan, execute, verify, learn.
pyagent-cli-helper
Makes LLMs, even small ones, use interactive terminal apps.
sholm
A text file of one-liners becomes a full MCP server.
pySpend & trust
Parallel filesystems
The human front
streamdown
Realtime streaming markdown renderer for the terminal.
pysidechat
tmux AI assistant at the point of failure.
shzummoner
Summon the LLM at your shell. English in, real command out.
shESChatch
Inject LLM keystrokes into any pty: vim, ssh, python.
pyllwhat
Ask your man pages questions. Local, semantic, private.
py