SSyncropel Docs

Cookbook

Short, tested recipes for common operational shapes. Copy, adapt, ship. Each recipe names a real problem, shows the commands, and explains the trade-off.

What this section is

A cookbook is not a tutorial and not a guide. A tutorial teaches a concept; a guide explains a subsystem. A recipe solves one specific problem in one specific way. You arrive, you copy commands, you leave.

Every recipe on the next pages:

  1. Names a problem in one sentence at the top.
  2. Gives the commands in runnable form — you can paste them at a terminal with only the names swapped out.
  3. Explains the one trade-off you should know before you ship the result.
  4. Points to the underlying concept if you want to know why the recipe works.

If a recipe gets long, it probably belongs in a guide. Recipes stay short on purpose.

Recipes

RecipeProblem it solves
Route by domainDispatch code work to one agent and ops work to another without a rule explosion.
Trust-gated auto-approvalLet high-trust actors ship without blocking on human review; require review for low-trust ones.
Federate one threadShare a single task thread with a collaborator on a different spl instance, nothing more.
Scheduled daily digestEmit a daily summary record at 09:00 containing what closed in the last 24 hours.
Audit export to ElasticPipe the security-relevant record stream into Elasticsearch or another SIEM.
Summarize a research paper — 3-LLM consensusFan out to three LLMs, consensus-fold their summaries, take the most-agreed answer.
Translate with human verificationClaude translates, GPT-4 verifies, Alice is the tiebreaker — human only when LLMs disagree.
Cost-bounded query waterfallTry cheap LLM first, escalate stage-by-stage, hard-stop at a 5-cent ceiling.
Audit-critical with ensemble + auditEnsemble-fold three LLMs, then require a trusted compliance officer to audit.
Escalate to human on low confidenceLLM handles the common case; human pulled in only when the LLM isn't sure.

How these relate to guides

Guides explain a subsystem end-to-end (CEL, Federation, Task management). Recipes are cross-cutting — they pick pieces from multiple subsystems to solve one operational problem.

When a recipe starts to grow into a full subsystem explanation, it graduates into a guide. When a guide accumulates too many "how do I X?" questions in comments, the Xs become recipes. Both directions happen.

Contributing

Every recipe should be verified by running the commands in a clean shell. Copy-paste quality is the acceptance criterion. If a recipe's commands don't work when you follow them, open an issue — a broken recipe is worse than a missing one.

On this page