Live Beta — free to use during beta. Paid tiers are marked "Free during beta" until monetization launches.

← back to the Power Combos guide

The complete combo catalog

Every combo that ships with AI Cockpit, listed by backend and tier — name, what it does, when to reach for it, and a worked example. Free combos come installed with any fresh install. Premium combos unlock with a Content-tier subscription and download from the in-app Marketplace.

Ollama — Free (ships with install) (50 combos)

Accessibility (1)

Accessibility Pass (Ollama) ollama free parallel

HTML/UI text → contrast/label issues + non-color cues + alt-text.

Good for: making content easier to read, navigate, or use for people with different needs.

Example: Say you paste in a page of text or a UI flow you want checked. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: A11y Issues, Non-Color Cues, Alt Text. Use it when you want making content easier to read, navigate, or use for people with different needs.

Steps (3):

  • A11y Issues (qwen2.5-coder:1.5b) — Review the HTML/UI for accessibility issues: missing labels, alt, roles, contrast risks. Bullets.
  • Non-Color Cues (llama3.2:1b) — Suggest non-color ways to convey meaning (icons, text, patterns) for any color-only cues. Bullets.
  • Alt Text (qwen2.5:1.5b) — Write concise alt text for any images/icons mentioned. Bullets.

Coding (14)

API Designer (Ollama) ollama free sequential

Idea → endpoints → example request/response payloads.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Routes, Payloads. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Routes (qwen2.5-coder:3b) — Design a minimal REST API for the request: list endpoints (method + path + purpose).
  • Payloads (qwen2.5-coder:1.5b) — For these endpoints, give one example JSON request and response each.
Bug Triage (Ollama) ollama free sequential

Error/log → root-cause → fix → test idea.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Diagnosis, Fix, Test. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Diagnosis (qwen2.5-coder:3b) — From the error/log, state the most likely root cause in 1-2 sentences.
  • Fix (qwen2.5-coder:3b) — Propose a concrete fix (code or steps) for this root cause.
  • Test (qwen2.5-coder:1.5b) — Suggest one test that would catch this bug. Be specific.
Code Explainer (Ollama) ollama free parallel

Code → plain English + complexity + risks.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Plain English, Complexity, Risks. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Plain English (qwen2.5-coder:1.5b) — Explain what this code does in plain English, step by step. Brief.
  • Complexity (llama3.2:1b) — State the time/space complexity and any performance concerns. Brief.
  • Risks (qwen2.5-coder:1.5b) — List correctness/security risks in this code. Bullets.
Code Generator Duel (Ollama) ollama free judge

Two coders write the same thing; a judge picks the cleaner.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Coder A, Coder B. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Coder A (qwen2.5-coder:3b) — Write clean, correct code for the request. Code first, minimal prose.
  • Coder B (starcoder2:3b) — Write clean, correct code for the request. Code only.
Code QA Panel (Ollama) ollama free parallel

3 specialists audit code: bugs, docs, security.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Documenter, Security. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter (qwen2.5-coder:1.5b) — List ONLY syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Documenter (llama3.2:1b) — Output a concise Markdown README: what it does + how to use. No code changes.
  • Security (qwen2.5-coder:1.5b) — Report ONLY security issues: missing validation, injection, plaintext secrets. Bullets.
Code Translator (Ollama) ollama free sequential

Port code between languages (PHP↔Pascal↔Bash): analyze → emit → lint.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Analyzer, Porter, Linter. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Analyzer (qwen2.5-coder:3b) — Extract the logic of the given code as terse pseudo-steps. State source + intended target language if named.
  • Porter (qwen2.5-coder:3b) — Using the pseudo-steps, write the equivalent code in the requested target language. Code only.
  • Linter (qwen2.5-coder:1.5b) — Check the code for obvious syntax/style problems. Output the corrected final code only.
Commit / PR Writer (Ollama) ollama free sequential

Diff/notes → summary → Conventional Commit + body.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Summary, Commit. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Summary (qwen2.5-coder:1.5b) — Summarize what this change does in one sentence.
  • Commit (qwen2.5-coder:1.5b) — Write a Conventional Commits message: a <=50-char subject line, then a short body. Output the message only.
Cron Scheduler (Ollama) ollama free parallel

Schedule in words → cron + systemd timer + explanation.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Cron, systemd, Explain. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Cron (qwen2.5-coder:1.5b) — Output ONLY the crontab expression for the described schedule, plus the command line.
  • systemd (qwen2.5-coder:1.5b) — Output a systemd OnCalendar= line equivalent to the described schedule.
  • Explain (qwen3:0.6b) — Restate when this schedule fires, in plain words.
Dev Pipeline (RAG) (Ollama) ollama free sequential

Librarian condenses RAG → coder writes the code.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Librarian, Coder. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Librarian (qwen2.5:3b) — From the context, extract ONLY the syntax rules, names, and signatures relevant to the task. Terse bullets. Do NOT write code.
  • Coder (qwen2.5-coder:3b) — Write the code using only the rules below. Code only.
Dockerfile Builder (Ollama) ollama free sequential

App description → Dockerfile → compose → run notes.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Dockerfile, Compose. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Dockerfile (qwen2.5-coder:3b) — Write a Dockerfile for the described app. File only.
  • Compose (qwen2.5-coder:1.5b) — Write a minimal docker-compose.yml for it, plus the run command.
One-Liner Forge (Ollama) ollama free parallel

Need → regex + sed/awk + bash one-liners side by side.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Regex, sed/awk, Bash. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Regex (qwen2.5-coder:1.5b) — Output ONLY a regex that satisfies the request, plus a one-line explanation.
  • sed/awk (qwen2.5-coder:1.5b) — Output ONLY a sed or awk one-liner for the request, plus one line of explanation.
  • Bash (qwen2.5-coder:3b) — Output ONLY a bash one-liner for the request, plus one line of explanation.
Refactor & Document (Ollama) ollama free sequential

Refactor for clarity → add comments → sanity check.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Commenter, Checker. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Refactorer (qwen2.5-coder:3b) — Refactor the code for clarity and structure without changing behavior. Code only.
  • Commenter (qwen2.5-coder:1.5b) — Add concise, useful comments/docstrings to the code. Output the commented code.
  • Checker (qwen2.5-coder:1.5b) — List any remaining issues in 1-3 bullets, then output the final code.
SQL Builder (Ollama) ollama free parallel

Plain English → SQL for MySQL + SQLite + explanation.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: MySQL, SQLite, Explain. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • MySQL (qwen2.5-coder:3b) — Write the SQL query for MySQL. Query only.
  • SQLite (qwen2.5-coder:1.5b) — Write the SQL query for SQLite. Query only.
  • Explain (llama3.2:1b) — Explain in 2-3 bullets what the requested query does.
Test Writer (Ollama) ollama free parallel

Code → unit tests + edge cases + failure modes.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Unit Tests, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Unit Tests (qwen2.5-coder:3b) — Write unit tests for the given code. Tests only.
  • Edge Cases (qwen2.5-coder:1.5b) — List tricky edge cases this code should handle. Bullets.
  • Failure Modes (llama3.2:1b) — List ways this code could fail at runtime. Bullets.

Creative Writing (3)

Sci-Fi Worldbuilder (Ollama) ollama free parallel

One prompt → environment + factions + tech + NPCs.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Architect, Sociologist, Quartermaster, NPCs. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (4):

  • Architect (llama3.2:1b) — Describe the physical environment/infrastructure of the setting. 1 paragraph.
  • Sociologist (tinyllama:1.1b) — Describe factions, culture, conflicts. 1 paragraph.
  • Quartermaster (smollm2:360m) — List available technology, weapons, vehicles. Bullets.
  • NPCs (llama3.2:1b) — Create 3 short character profiles that fit the setting.
Story Continuation (Ollama) ollama free sequential

Premise → outline → next chapter → cliffhanger.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Outline, Chapter, Cliffhanger. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • Outline (qwen2.5:3b) — Outline the next chapter for the premise. Bullets.
  • Chapter (llama3.2:3b) — Write the next chapter from the outline.
  • Cliffhanger (llama3.2:1b) — Write a one-paragraph cliffhanger ending.
Storyteller's Workshop (Ollama) ollama free sequential

Draft → edit for consistency → wrap as clean HTML.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Writer, Editor, Formatter. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • Writer (qwen2.5:3b) — Write a rich draft for the request. Avoid relying on color names for meaning.
  • Editor (llama3.2:3b) — Edit the draft for consistency and flow. Output edited text.
  • Formatter (qwen2.5-coder:3b) — Wrap the text in clean semantic HTML (headings, paragraphs). HTML only, no commentary.

Data & Research (4)

CSV / Data Cleaner (Ollama) ollama free parallel

Messy tabular text → schema + cleaned rows + anomalies.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Schema, Cleaned, Anomalies. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Schema (qwen2.5-coder:1.5b) — Infer the columns and types from the data. JSON.
  • Cleaned (qwen2.5-coder:3b) — Output the data as clean, normalized CSV (consistent delimiters, trimmed).
  • Anomalies (qwen3:0.6b) — List rows/values that look wrong or inconsistent. Bullets.
Data Extraction Team (Ollama) ollama free parallel

Messy text → tech tokens + human text + timestamps.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Tech Parser, Linguist, Timekeeper. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Tech Parser (qwen2.5-coder:1.5b) — Extract ONLY IPs, file paths, URLs, error codes. JSON array.
  • Linguist (llama3.2:1b) — Extract ONLY the human-readable messages/complaints. Bullets.
  • Timekeeper (qwen3:0.6b) — Extract ONLY timestamps/dates, chronological. JSON array.
Fact-Check Interrogator (Ollama) ollama free parallel

Vet claims: skeptic + timeline + related concepts.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Skeptic, Timeline, Concepts. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Skeptic (llama3.2:1b) — List claims that sound dubious or lack evidence. Bullets.
  • Timeline (qwen3:0.6b) — Extract every date/event, chronological. JSON.
  • Concepts (smollm2:1.7b) — Suggest 5 related topics or works based on the themes.
Research Digest (Ollama) ollama free parallel

Article → summary + claims + counterpoints + to-verify.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summary, Claims, Counterpoints, To Verify. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (4):

  • Summary (llama3.2:3b) — Summarize the article in 4 bullets.
  • Claims (qwen2.5:1.5b) — List the main claims the article makes. Bullets.
  • Counterpoints (llama3.2:1b) — List plausible counterpoints or limitations. Bullets.
  • To Verify (qwen3:0.6b) — List specific facts worth verifying. Bullets.

Image Prompting (5)

Image Prompt Studio (Ollama) ollama free parallel

Idea → 3 style prompts: photoreal + illustration + cinematic.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Photoreal, Illustration, Cinematic. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Photoreal (llama3.2:3b) — Write a photorealistic image prompt for the idea: camera, lens, lighting, detail tags. One line.
  • Illustration (qwen2.5:1.5b) — Write an illustration/art-style image prompt for the idea: medium, style, palette tags. One line.
  • Cinematic (llama3.2:1b) — Write a cinematic image prompt for the idea: mood, composition, film tags. One line.
Logo Concepts (Ollama) ollama free parallel

Brand → 3 distinct logo prompt directions.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Minimal Mark, Emblem, Wordmark. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Minimal Mark (llama3.2:1b) — Describe a minimalist logo concept + an image prompt for the brand. One line prompt.
  • Emblem (qwen2.5:1.5b) — Describe an emblem/badge logo concept + an image prompt. One line prompt.
  • Wordmark (llama3.2:1b) — Describe a typographic wordmark logo concept + an image prompt. One line prompt.
Media Director (Ollama) ollama free sequential

Idea → detailed image-generation prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Expander. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (1):

  • Prompt Expander (llama3.2:3b) — Expand the idea into a detailed, comma-separated image prompt: subject, lighting, lens, style tags. One line.
Prompt + Negative + Params (Ollama) ollama free sequential

Idea → detailed prompt → negative prompt → suggested params.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt, Negative, Params. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Prompt (llama3.2:3b) — Write a detailed image prompt for the idea. One line.
  • Negative (qwen2.5:1.5b) — Write a negative prompt (things to avoid) for this image. One line.
  • Params (qwen3:0.6b) — Suggest CFG scale, steps, and size for this image. JSON.
Video Storyboard (Ollama) ollama free sequential

Concept → scenes → shot list → image prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scenes, Shot List, Prompts. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Scenes (llama3.2:3b) — Break the concept into 4-6 scenes. One line each.
  • Shot List (qwen2.5:1.5b) — For each scene, give a shot (angle + action).
  • Prompts (llama3.2:1b) — For each shot, write a one-line image prompt.

Language & Translation (8)

Cross-Cultural Marketing (Ollama) ollama free parallel

Announcement → Spanish + Hebrew + hashtags.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Spanish, Hebrew, Hashtags. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Spanish (qwen2.5:1.5b) — Localize to engaging Castilian Spanish. Text only.
  • Hebrew (llama3.2:1b) — Localize to natural Hebrew (RTL). Text only.
  • Hashtags (tinyllama:1.1b) — Generate relevant social hashtags.
Grammar & Clarity (Ollama) ollama free sequential

Text → grammar fix → clarity → tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar, Tighten. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar (qwen2.5:3b) — Fix grammar and spelling. Output corrected text only.
  • Tighten (llama3.2:3b) — Improve clarity and remove redundancy. Output the final text.
Localization Matrix (Ollama) ollama free parallel

UI text → Hebrew + Spanish + tooltips.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Hebrew, Spanish, Tooltips. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Hebrew (llama3.2:1b) — Translate to natural Hebrew (RTL). Translation only.
  • Spanish (qwen2.5:1.5b) — Translate to natural Castilian Spanish. Translation only.
  • Tooltips (qwen3:0.6b) — Write short English UI tooltips for the text. Bullets.
Multilingual Broadcast (Ollama) ollama free parallel

One text → Hebrew + Spanish + Arabic + French at once.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Hebrew, Spanish, Arabic, French. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (4):

  • Hebrew (llama3.2:1b) — Translate to Hebrew (RTL). Translation only.
  • Spanish (qwen2.5:1.5b) — Translate to Spanish. Translation only.
  • Arabic (llama3.2:3b) — Translate to Arabic (RTL). Translation only.
  • French (qwen2.5:1.5b) — Translate to French. Translation only.
Polyglot (translate+validate) (Ollama) ollama free sequential

Translate to JSON, then validate the JSON.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Validator. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator (llama3.2:3b) — Translate the text to Hebrew and Spanish. Output JSON {"he":"...","es":"..."} only.
  • Validator (qwen2.5-coder:1.5b) — Validate and fix the JSON so it is well-formed UTF-8. Output ONLY the corrected JSON.
Subtitle Translator (Ollama) ollama free sequential

Transcript lines → translate → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translate, Tidy. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translate (llama3.2:3b) — Translate each subtitle line to the requested language, keeping line breaks and any timecodes intact.
  • Tidy (qwen2.5:1.5b) — Ensure line lengths are subtitle-friendly (short lines). Output the final lines.
Tone Rewriter (Ollama) ollama free parallel

Text → formal + casual + concise versions.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal, Casual, Concise. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Formal (qwen2.5:1.5b) — Rewrite the text in a formal, professional tone.
  • Casual (llama3.2:1b) — Rewrite the text in a friendly, casual tone.
  • Concise (qwen2.5:1.5b) — Rewrite the text as concisely as possible without losing meaning.
Translator Pro (verify loop) (Ollama) ollama free sequential

Translate → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translate, Back-translate, Final. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translate (llama3.2:3b) — Translate the text to the requested target language. Translation only.
  • Back-translate (qwen2.5:3b) — Translate the following back to English literally, to check fidelity.
  • Final (llama3.2:3b) — Given the original request, the translation, and its back-translation, output the corrected final translation only.

Learning & Study (5)

Debate + Judge (Ollama) ollama free judge

3 agents propose; a judge synthesizes the best.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Creative, Logical, Minimalist. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • Creative (llama3.2:1b) — Give a creative, unorthodox solution. Brief.
  • Logical (qwen2.5:1.5b) — Give the most logically sound solution. Brief.
  • Minimalist (qwen3:0.6b) — Give the simplest solution. Brief.
Explain 3 Levels (Ollama) ollama free parallel

Concept → ELI5 + intermediate + expert at once.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5, Intermediate, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 (llama3.2:1b) — Explain the concept simply, as if to a curious child. Short.
  • Intermediate (qwen2.5:1.5b) — Explain the concept for a knowledgeable beginner. Short.
  • Expert (qwen2.5:3b) — Explain the concept precisely for an expert, with the key nuance.
Flashcards (Ollama) ollama free sequential

Text → key facts → Q/A flashcards (JSON).

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Facts, Cards. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Facts (llama3.2:1b) — Extract the key facts from the text. Bullets.
  • Cards (qwen2.5:1.5b) — Turn the facts into Q/A flashcards. Output a JSON array of {"q":..,"a":..}.
Name Brainstorm (Ollama) ollama free judge

Idea → 3 brainstorms → judge shortlists.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Playful, Professional, Quirky. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • Playful (llama3.2:1b) — Brainstorm 8 playful, catchy names for the idea.
  • Professional (qwen2.5:1.5b) — Brainstorm 8 clean, professional names for the idea.
  • Quirky (tinyllama:1.1b) — Brainstorm 8 unusual, memorable names for the idea.
Pros / Cons / Decision (Ollama) ollama free judge

Dilemma → pros + cons + risks → verdict.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Pros, Cons, Risks. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • Pros (llama3.2:1b) — List the strongest pros/arguments for the option. Bullets.
  • Cons (qwen2.5:1.5b) — List the strongest cons/arguments against. Bullets.
  • Risks (qwen3:0.6b) — List the key risks/unknowns. Bullets.

Office & Docs (10)

Changelog Writer (Ollama) ollama free sequential

Commits/notes → changelog → release post.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Changelog, Release Post. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Changelog (qwen2.5-coder:1.5b) — Turn the notes into a grouped changelog (Added/Fixed/Changed). Markdown.
  • Release Post (llama3.2:3b) — Write a short, friendly release announcement from this changelog.
Document Q&A (Ollama) ollama free parallel

Long doc → TL;DR + outline + key terms + questions it answers.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR, Outline, Key Terms, Answers. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (4):

  • TL;DR (llama3.2:3b) — Give a 2-3 sentence TL;DR of the document.
  • Outline (llama3.2:1b) — Give a bulleted outline of the document's structure.
  • Key Terms (qwen2.5:1.5b) — List the key terms/definitions in the document.
  • Answers (qwen3:0.6b) — List 5 questions this document answers.
Document Triage (Ollama) ollama free parallel

Messy text → 3-bullet summary + action items + tone.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summary, Actions, Sentiment. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summary (llama3.2:1b) — Summarize the text in exactly 3 bullet points.
  • Actions (qwen3:0.6b) — Extract action items / tasks / dates as a JSON checklist.
  • Sentiment (smollm2:360m) — State the tone in 1-3 words (e.g. urgent, formal).
Email Composer (Ollama) ollama free sequential

Intent → draft → tone polish → subject + TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Draft, Polish, Subject + TL;DR. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Draft (llama3.2:3b) — Write a clear email for the user's intent.
  • Polish (qwen2.5:1.5b) — Polish the email for tone and concision. Output the email.
  • Subject + TL;DR (qwen3:0.6b) — Give a subject line and a one-line TL;DR for this email.
FAQ Generator (Ollama) ollama free parallel

Product/topic → FAQ + objections + support replies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: FAQ, Objections, Support Replies. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • FAQ (llama3.2:3b) — Write 5 FAQ question/answer pairs for the topic.
  • Objections (qwen2.5:1.5b) — List likely objections/concerns and a short rebuttal each.
  • Support Replies (llama3.2:1b) — Write 3 friendly canned support replies for common issues.
Invoice / Receipt Extractor (Ollama) ollama free parallel

Messy text → line items + totals + dates.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Line Items, Totals, Dates/Parties. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Line Items (qwen2.5-coder:1.5b) — Extract line items (description, qty, price) as a JSON array.
  • Totals (qwen3:0.6b) — Extract subtotal, tax, and total amounts. JSON.
  • Dates/Parties (qwen3:0.6b) — Extract dates, invoice number, and parties. JSON.
Meeting Minutes (Ollama) ollama free parallel

Transcript → summary + decisions + action items + attendees.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summary, Decisions, Action Items, Attendees. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (4):

  • Summary (llama3.2:3b) — Summarize the meeting in 3-5 bullets.
  • Decisions (llama3.2:1b) — List decisions made. Bullets.
  • Action Items (qwen2.5:1.5b) — List action items with owner + due if stated. JSON.
  • Attendees (qwen3:0.6b) — List the people/speakers mentioned.
Proposal Writer (Ollama) ollama free sequential

Idea → outline → draft → exec summary.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Outline, Draft, Exec Summary. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Outline (qwen2.5:3b) — Create a proposal outline for the idea.
  • Draft (llama3.2:3b) — Expand the outline into a short proposal draft.
  • Exec Summary (qwen2.5:1.5b) — Write a 3-sentence executive summary of this proposal.
Resume / Bio Polish (Ollama) ollama free sequential

Rough bio → polish → ATS keywords.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polish, Keywords. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polish (llama3.2:3b) — Rewrite the bio/resume text to be crisp and professional.
  • Keywords (qwen2.5:1.5b) — List relevant ATS keywords/skills implied by this text.
Spreadsheet Formula (Ollama) ollama free parallel

Describe need → Excel + Google Sheets formula + explanation.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Excel, Google Sheets, Explain. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Excel (qwen2.5-coder:1.5b) — Output ONLY the Excel formula for the request.
  • Google Sheets (qwen2.5-coder:1.5b) — Output ONLY the Google Sheets formula for the request.
  • Explain (llama3.2:1b) — Explain in 1-2 lines what the formula computes.

LocalAI — Free (ships with install) (50 combos)

Accessibility (1)

Keyboard Navigation Pass (LocalAI) localai free sequential

HTML/UI → keyboard navigation issues found + concrete fixes.

Good for: making content easier to read, navigate, or use for people with different needs.

Example: Say you paste in a page of text or a UI flow you want checked. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: A11y Scanner, Fix Suggester. Use it when you want making content easier to read, navigate, or use for people with different needs.

Steps (2):

  • A11y Scanner (gemma-3-1b-it) — Scan this HTML/UI text ONLY for keyboard navigation issues. List concrete problems as bullets, cite the element.
  • Fix Suggester (gemma-3-4b-it) — For each keyboard navigation issue found, suggest a concrete fix (markup/attribute/CSS change).

Coding (14)

Bash Test Generator (LocalAI) localai free parallel

Generate Bash unit tests: happy path, edge cases, and failure modes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Happy Path, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Happy Path (gemma-3-1b-it) — Write Bash unit tests for the normal/expected inputs only.
  • Edge Cases (gemma-3-4b-it) — Write Bash unit tests for boundary/edge-case inputs only.
  • Failure Modes (gemma-4-e2b-it-qat-mtp) — Write Bash unit tests for invalid input / error conditions only.
C# Duel (LocalAI) localai free judge

Two C# coders solve the same task differently; a judge picks the cleaner one.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Coder A, Coder B. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Coder A (gemma-3-1b-it) — Solve the given task in C#, straightforward/imperative style. Code only.
  • Coder B (gemma-3-4b-it) — Solve the given task in C#, a more functional/idiomatic style. Code only.
C++ Refactor Pass (LocalAI) localai free sequential

Refactor C++ code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer (qwen_qwen3.5-2b) — Rewrite the given C++ code for clarity and idiom. Output only the revised code.
  • Verifier (gemma-3-1b-it) — Sanity-check the refactored C++ code against the original — same behavior? List any risk in 3 bullets max.
Go Test Generator (LocalAI) localai free parallel

Generate Go unit tests: happy path, edge cases, and failure modes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Happy Path, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Happy Path (gemma-4-e2b-it-qat-mtp) — Write Go unit tests for the normal/expected inputs only.
  • Edge Cases (lfm2.5-1.2b-instruct) — Write Go unit tests for boundary/edge-case inputs only.
  • Failure Modes (qwen_qwen3.5-0.8b) — Write Go unit tests for invalid input / error conditions only.
Java Bug Triage (LocalAI) localai free sequential

Error/log in Java → root cause → fix → a test to prevent regression.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Diagnoser, Fixer, Test Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Diagnoser (qwen_qwen3.5-0.8b) — Given a Java error/log, state the most likely root cause in 2-3 sentences.
  • Fixer (qwen_qwen3.5-2b) — Propose a concrete Java code fix for the diagnosed cause. Code only, minimal diff.
  • Test Writer (gemma-3-1b-it) — Write one Java regression test that would have caught this bug.
JavaScript Refactor Pass (LocalAI) localai free sequential

Refactor JavaScript code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer (gemma-3-4b-it) — Rewrite the given JavaScript code for clarity and idiom. Output only the revised code.
  • Verifier (gemma-4-e2b-it-qat-mtp) — Sanity-check the refactored JavaScript code against the original — same behavior? List any risk in 3 bullets max.
Kotlin Explainer (LocalAI) localai free parallel

Kotlin code → plain-English explanation + complexity + risk notes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Explainer, Complexity, Risk Spotter. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Explainer (lfm2.5-1.2b-instruct) — Explain what this Kotlin code does in plain English, no jargon.
  • Complexity (qwen_qwen3.5-0.8b) — State the time/space complexity of this Kotlin code in one line, with reasoning.
  • Risk Spotter (qwen_qwen3.5-2b) — List any risk (security, correctness, maintainability) in this Kotlin code. Bullets.
PHP API Designer (LocalAI) localai free sequential

Idea → REST endpoints in PHP conventions → example payloads.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: API Designer, Example Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • API Designer (qwen_qwen3.5-2b) — Given a feature idea, propose REST endpoints following PHP-ecosystem conventions.
  • Example Writer (gemma-3-1b-it) — Write example request/response JSON payloads for the proposed endpoints.
Python Code Reviewer (LocalAI) localai free parallel

Three specialists audit Python code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter (gemma-3-1b-it) — List ONLY Python syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker (gemma-3-4b-it) — Point out non-idiomatic Python — what a senior Python dev would flag in review. Bullets only.
  • Performance (gemma-4-e2b-it-qat-mtp) — Report ONLY performance concerns for this Python code — hot loops, allocations, complexity. Bullets.
Ruby Dockerize (LocalAI) localai free sequential

App description (Ruby) → Dockerfile → run notes.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Dockerfile Author, Notes Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Dockerfile Author (gemma-4-e2b-it-qat-mtp) — Write a production-sane Dockerfile for this Ruby app description.
  • Notes Writer (lfm2.5-1.2b-instruct) — Write 3-5 short run/build notes for the Dockerfile above.
Rust → Docs (LocalAI) localai free sequential

Turn Rust code into a short README, then tighten it.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Doc Writer, Editor. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Doc Writer (lfm2.5-1.2b-instruct) — Write a concise Markdown README for this Rust code: what it does, how to use it.
  • Editor (qwen_qwen3.5-0.8b) — Tighten the README — cut fluff, keep only what a new user actually needs.
SQL → Docs (LocalAI) localai free sequential

Turn SQL code into a short README, then tighten it.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Doc Writer, Editor. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Doc Writer (gemma-3-4b-it) — Write a concise Markdown README for this SQL code: what it does, how to use it.
  • Editor (gemma-4-e2b-it-qat-mtp) — Tighten the README — cut fluff, keep only what a new user actually needs.
Swift Code Reviewer (LocalAI) localai free parallel

Three specialists audit Swift code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter (qwen_qwen3.5-0.8b) — List ONLY Swift syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker (qwen_qwen3.5-2b) — Point out non-idiomatic Swift — what a senior Swift dev would flag in review. Bullets only.
  • Performance (gemma-3-1b-it) — Report ONLY performance concerns for this Swift code — hot loops, allocations, complexity. Bullets.
TypeScript Commit Writer (LocalAI) localai free sequential

TypeScript diff/notes → summary → Conventional Commit message.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Summarizer, Commit Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Summarizer (gemma-3-4b-it) — Summarize what this TypeScript diff/change actually does, in plain English.
  • Commit Writer (gemma-4-e2b-it-qat-mtp) — Write a Conventional Commits message (type, scope, subject, body) for this change.

Creative Writing (3)

Hard Sci-Fi Worldbuilder (LocalAI) localai free parallel

One prompt → hard sci-fi setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect (gemma-3-1b-it) — Describe a hard sci-fi setting for this prompt — geography, mood, era.
  • Faction Writer (gemma-3-4b-it) — Invent 2-3 factions/groups that fit this hard sci-fi setting.
  • NPC Writer (gemma-4-e2b-it-qat-mtp) — Invent 2 memorable NPCs that fit this hard sci-fi setting.
High Fantasy Story Continuation (LocalAI) localai free sequential

Premise → high fantasy outline → next chapter → cliffhanger.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Outliner, Writer, Hook Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • Outliner (gemma-3-4b-it) — Outline the next 3 beats of this high fantasy story premise.
  • Writer (gemma-4-e2b-it-qat-mtp) — Write the next chapter/scene in high fantasy style, following the outline.
  • Hook Writer (lfm2.5-1.2b-instruct) — Write a one-paragraph cliffhanger ending for this high fantasy chapter.
Noir Detective Worldbuilder (LocalAI) localai free parallel

One prompt → noir detective setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect (gemma-4-e2b-it-qat-mtp) — Describe a noir detective setting for this prompt — geography, mood, era.
  • Faction Writer (lfm2.5-1.2b-instruct) — Invent 2-3 factions/groups that fit this noir detective setting.
  • NPC Writer (qwen_qwen3.5-0.8b) — Invent 2 memorable NPCs that fit this noir detective setting.

Data & Research (4)

Customer Support Transcripts Digest (LocalAI) localai free parallel

customer support transcripts → summary + notable claims + what to verify, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Claim Spotter, Verifier. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Summarizer (gemma-4-e2b-it-qat-mtp) — Summarize the key findings visible in this customer support transcripts sample.
  • Claim Spotter (lfm2.5-1.2b-instruct) — List any strong/surprising claims implied by this customer support transcripts sample.
  • Verifier (qwen_qwen3.5-0.8b) — List what in this customer support transcripts sample would need independent verification before acting on it.
E-Commerce Order Exports Cleaner (LocalAI) localai free parallel

Messy e-commerce order exports → schema guess + cleaned rows + anomalies, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Schema Guesser, Cleaner, Anomaly Spotter. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Schema Guesser (gemma-3-4b-it) — Guess a reasonable schema (column names + types) for this e-commerce order exports sample.
  • Cleaner (gemma-4-e2b-it-qat-mtp) — Reformat this e-commerce order exports sample into clean, consistent rows.
  • Anomaly Spotter (lfm2.5-1.2b-instruct) — Flag rows/values in this e-commerce order exports sample that look wrong or inconsistent.
Sensor Telemetry Readings Extraction (LocalAI) localai free parallel

Messy sensor telemetry readings → structured tokens + human summary + timestamps, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Summarizer, Timestamp Finder. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Extractor (lfm2.5-1.2b-instruct) — Pull structured fields out of this sensor telemetry readings sample, as a table.
  • Summarizer (qwen_qwen3.5-0.8b) — Summarize what's happening in this sensor telemetry readings sample, in plain English.
  • Timestamp Finder (qwen_qwen3.5-2b) — List every timestamp/date found in this sensor telemetry readings sample.
Server Access Logs Extraction (LocalAI) localai free parallel

Messy server access logs → structured tokens + human summary + timestamps, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Summarizer, Timestamp Finder. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Extractor (gemma-3-1b-it) — Pull structured fields out of this server access logs sample, as a table.
  • Summarizer (gemma-3-4b-it) — Summarize what's happening in this server access logs sample, in plain English.
  • Timestamp Finder (gemma-4-e2b-it-qat-mtp) — List every timestamp/date found in this server access logs sample.

Image Prompting (5)

Cyberpunk Neon Storyboard (LocalAI) localai free sequential

Concept → scenes → cyberpunk neon-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown (gemma-4-e2b-it-qat-mtp) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer (lfm2.5-1.2b-instruct) — Write a cyberpunk neon-style image prompt for each scene above.
Flat Vector Illustration Prompt Studio (LocalAI) localai free sequential

Idea → detailed flat vector illustration image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer (lfm2.5-1.2b-instruct) — Turn this idea into a detailed flat vector illustration-style image generation prompt.
  • Negative Prompt Writer (qwen_qwen3.5-0.8b) — Write a negative prompt to pair with the flat vector illustration prompt above — what to avoid.
Oil Painting Concepts x3 (LocalAI) localai free parallel

Idea → 3 distinct oil painting prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A (qwen_qwen3.5-0.8b) — Write a oil painting-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B (qwen_qwen3.5-2b) — Write a oil painting-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C (gemma-3-1b-it) — Write a oil painting-style image prompt for this idea, direction C (unexpected angle).
Photorealistic Prompt Studio (LocalAI) localai free sequential

Idea → detailed photorealistic image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer (gemma-3-1b-it) — Turn this idea into a detailed photorealistic-style image generation prompt.
  • Negative Prompt Writer (gemma-3-4b-it) — Write a negative prompt to pair with the photorealistic prompt above — what to avoid.
Watercolor Painting Concepts x3 (LocalAI) localai free parallel

Idea → 3 distinct watercolor painting prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A (gemma-3-4b-it) — Write a watercolor painting-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B (gemma-4-e2b-it-qat-mtp) — Write a watercolor painting-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C (lfm2.5-1.2b-instruct) — Write a watercolor painting-style image prompt for this idea, direction C (unexpected angle).

Language & Translation (8)

Arabic Grammar & Clarity (LocalAI) localai free sequential

Text in Arabic → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer (qwen_qwen3.5-0.8b) — Fix grammar/spelling errors in this Arabic text. Output corrected text only.
  • Clarity Editor (qwen_qwen3.5-2b) — Tighten this Arabic text for clarity — cut redundancy, keep meaning.
French Localization (LocalAI) localai free parallel

UI text → French + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer (gemma-3-4b-it) — Translate this UI text into French, concise and natural for a UI label.
  • Tooltip Writer (gemma-4-e2b-it-qat-mtp) — Write a short French tooltip/help text version of this UI text.
German Tone Rewriter (LocalAI) localai free parallel

Text → formal + casual German versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice (gemma-4-e2b-it-qat-mtp) — Translate/rewrite this text into formal, professional German.
  • Casual Voice (lfm2.5-1.2b-instruct) — Translate/rewrite this text into casual, everyday German.
Hebrew Subtitle Pass (LocalAI) localai free sequential

Transcript lines → Hebrew translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator (lfm2.5-1.2b-instruct) — Translate these subtitle lines into Hebrew, keeping line breaks intact.
  • Format Checker (qwen_qwen3.5-0.8b) — Verify the Hebrew lines still match the original line count/timing markers.
Italian Localization (LocalAI) localai free parallel

UI text → Italian + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer (gemma-3-1b-it) — Translate this UI text into Italian, concise and natural for a UI label.
  • Tooltip Writer (gemma-3-4b-it) — Write a short Italian tooltip/help text version of this UI text.
Japanese Translator Pro (LocalAI) localai free sequential

Translate to Japanese → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator (qwen_qwen3.5-2b) — Translate the given text into Japanese. Natural, not literal.
  • Back-Translator (gemma-3-1b-it) — Translate the Japanese translation back into English.
  • Drift Fixer (gemma-3-4b-it) — Compare original vs back-translation; fix the Japanese version if meaning drifted.
Portuguese Tone Rewriter (LocalAI) localai free parallel

Text → formal + casual Portuguese versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice (gemma-3-4b-it) — Translate/rewrite this text into formal, professional Portuguese.
  • Casual Voice (gemma-4-e2b-it-qat-mtp) — Translate/rewrite this text into casual, everyday Portuguese.
Spanish Translator Pro (LocalAI) localai free sequential

Translate to Spanish → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator (gemma-3-1b-it) — Translate the given text into Spanish. Natural, not literal.
  • Back-Translator (gemma-3-4b-it) — Translate the Spanish translation back into English.
  • Drift Fixer (gemma-4-e2b-it-qat-mtp) — Compare original vs back-translation; fix the Spanish version if meaning drifted.

Learning & Study (5)

Blockchain Consensus — 3 Levels (LocalAI) localai free parallel

Explain blockchain consensus at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher (lfm2.5-1.2b-instruct) — Explain blockchain consensus like the reader is 10 years old. No jargon.
  • Intermediate Teacher (qwen_qwen3.5-0.8b) — Explain blockchain consensus for someone with basic background — some technical terms OK.
  • Expert (qwen_qwen3.5-2b) — Explain blockchain consensus at expert depth, precise terminology, no hand-holding.
Compound Interest Debate (LocalAI) localai free judge

3 agents argue about compound interest; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A (gemma-4-e2b-it-qat-mtp) — Give the strongest argument/explanation of compound interest, angle A.
  • Advocate B (lfm2.5-1.2b-instruct) — Give the strongest argument/explanation of compound interest, angle B, different framing.
Photosynthesis — 3 Levels (LocalAI) localai free parallel

Explain photosynthesis at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher (gemma-3-1b-it) — Explain photosynthesis like the reader is 10 years old. No jargon.
  • Intermediate Teacher (gemma-3-4b-it) — Explain photosynthesis for someone with basic background — some technical terms OK.
  • Expert (gemma-4-e2b-it-qat-mtp) — Explain photosynthesis at expert depth, precise terminology, no hand-holding.
Quantum Entanglement Flashcards (LocalAI) localai free sequential

Text about quantum entanglement → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor (qwen_qwen3.5-0.8b) — Extract the key facts about quantum entanglement from the given text, as bullets.
  • Flashcard Writer (qwen_qwen3.5-2b) — Turn those facts into Q/A flashcards about quantum entanglement (JSON array of {q,a}).
Recursion Flashcards (LocalAI) localai free sequential

Text about recursion → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor (gemma-3-4b-it) — Extract the key facts about recursion from the given text, as bullets.
  • Flashcard Writer (gemma-4-e2b-it-qat-mtp) — Turn those facts into Q/A flashcards about recursion (JSON array of {q,a}).

Office & Docs (10)

Client Proposal Triage (LocalAI) localai free parallel

Messy a client proposal text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer (gemma-3-1b-it) — Summarize this a client proposal in exactly 3 bullets.
  • Action Extractor (gemma-3-4b-it) — List only concrete action items found in this a client proposal, as bullets.
  • Tone Reader (gemma-4-e2b-it-qat-mtp) — State the tone of this a client proposal in one sentence (e.g. urgent, neutral, frustrated).
Internal Memo Extractor (LocalAI) localai free parallel

Messy an internal memo text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor (lfm2.5-1.2b-instruct) — Extract structured line items from this an internal memo as a table.
  • Date Finder (qwen_qwen3.5-0.8b) — List every date/deadline mentioned in this an internal memo.
  • Anomaly Spotter (qwen_qwen3.5-2b) — Flag anything in this an internal memo that looks inconsistent or wrong.
Job Posting Triage (LocalAI) localai free parallel

Messy a job posting text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer (qwen_qwen3.5-2b) — Summarize this a job posting in exactly 3 bullets.
  • Action Extractor (gemma-3-1b-it) — List only concrete action items found in this a job posting, as bullets.
  • Tone Reader (gemma-3-4b-it) — State the tone of this a job posting in one sentence (e.g. urgent, neutral, frustrated).
Partnership Agreement Summary Rewriter (LocalAI) localai free sequential

Rough a partnership agreement summary → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher (lfm2.5-1.2b-instruct) — Polish this rough a partnership agreement summary draft for grammar and flow.
  • Keyword Pass (qwen_qwen3.5-0.8b) — Add/verify relevant keywords a reader or search would expect in this a partnership agreement summary.
Performance Review Composer (LocalAI) localai free sequential

Intent → draft a performance review → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter (gemma-3-1b-it) — Write a first draft of a performance review given the stated intent.
  • Polisher (gemma-3-4b-it) — Polish the tone of this a performance review draft — professional, clear, no filler.
  • Summarizer (gemma-4-e2b-it-qat-mtp) — Write a one-line subject and a 2-sentence TL;DR for this a performance review.
Policy Document QA (LocalAI) localai free parallel

Long a policy document → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer (gemma-3-4b-it) — Write a 2-sentence TL;DR of this a policy document.
  • Outliner (gemma-4-e2b-it-qat-mtp) — Extract a section-by-section outline of this a policy document.
  • Term Extractor (lfm2.5-1.2b-instruct) — List key terms/jargon used in this a policy document, with one-line definitions.
Press Release Rewriter (LocalAI) localai free sequential

Rough a press release → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher (qwen_qwen3.5-0.8b) — Polish this rough a press release draft for grammar and flow.
  • Keyword Pass (qwen_qwen3.5-2b) — Add/verify relevant keywords a reader or search would expect in this a press release.
Status Report Composer (LocalAI) localai free sequential

Intent → draft a status report → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter (gemma-3-4b-it) — Write a first draft of a status report given the stated intent.
  • Polisher (gemma-4-e2b-it-qat-mtp) — Polish the tone of this a status report draft — professional, clear, no filler.
  • Summarizer (lfm2.5-1.2b-instruct) — Write a one-line subject and a 2-sentence TL;DR for this a status report.
Support Ticket Reply QA (LocalAI) localai free parallel

Long a support ticket reply → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer (gemma-4-e2b-it-qat-mtp) — Write a 2-sentence TL;DR of this a support ticket reply.
  • Outliner (lfm2.5-1.2b-instruct) — Extract a section-by-section outline of this a support ticket reply.
  • Term Extractor (qwen_qwen3.5-0.8b) — List key terms/jargon used in this a support ticket reply, with one-line definitions.
User Manual Section Extractor (LocalAI) localai free parallel

Messy a user manual section text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor (gemma-4-e2b-it-qat-mtp) — Extract structured line items from this a user manual section as a table.
  • Date Finder (lfm2.5-1.2b-instruct) — List every date/deadline mentioned in this a user manual section.
  • Anomaly Spotter (qwen_qwen3.5-0.8b) — Flag anything in this a user manual section that looks inconsistent or wrong.

Dual — Free (ships with install) (50 combos)

Accessibility (1)

Keyboard Navigation Pass (Dual) dual free sequential

HTML/UI → keyboard navigation issues found + concrete fixes.

Good for: making content easier to read, navigate, or use for people with different needs.

Example: Say you paste in a page of text or a UI flow you want checked. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: A11y Scanner, Fix Suggester. Use it when you want making content easier to read, navigate, or use for people with different needs.

Steps (2):

  • A11y Scanner O (qwen2.5-coder:1.5b) — Scan this HTML/UI text ONLY for keyboard navigation issues. List concrete problems as bullets, cite the element.
  • Fix Suggester L (gemma-3-1b-it) — For each keyboard navigation issue found, suggest a concrete fix (markup/attribute/CSS change).

Coding (14)

Bash Test Generator (Dual) dual free parallel

Generate Bash unit tests: happy path, edge cases, and failure modes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Happy Path, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Happy Path O (llama3.2:3b) — Write Bash unit tests for the normal/expected inputs only.
  • Edge Cases L (gemma-3-4b-it) — Write Bash unit tests for boundary/edge-case inputs only.
  • Failure Modes O (qwen2.5:1.5b) — Write Bash unit tests for invalid input / error conditions only.
C# Duel (Dual) dual free judge

Two C# coders solve the same task differently; a judge picks the cleaner one.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Coder A, Coder B. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Coder A O (qwen2.5:3b) — Solve the given task in C#, straightforward/imperative style. Code only.
  • Coder B L (gemma-3-4b-it) — Solve the given task in C#, a more functional/idiomatic style. Code only.
C++ Refactor Pass (Dual) dual free sequential

Refactor C++ code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer O (llama3.2:1b) — Rewrite the given C++ code for clarity and idiom. Output only the revised code.
  • Verifier L (gemma-3-1b-it) — Sanity-check the refactored C++ code against the original — same behavior? List any risk in 3 bullets max.
Go Test Generator (Dual) dual free parallel

Generate Go unit tests: happy path, edge cases, and failure modes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Happy Path, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Happy Path O (llama3.2:1b) — Write Go unit tests for the normal/expected inputs only.
  • Edge Cases L (lfm2.5-1.2b-instruct) — Write Go unit tests for boundary/edge-case inputs only.
  • Failure Modes O (gemma2:2b) — Write Go unit tests for invalid input / error conditions only.
Java Bug Triage (Dual) dual free sequential

Error/log in Java → root cause → fix → a test to prevent regression.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Diagnoser, Fixer, Test Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Diagnoser O (gemma2:2b) — Given a Java error/log, state the most likely root cause in 2-3 sentences.
  • Fixer L (qwen_qwen3.5-2b) — Propose a concrete Java code fix for the diagnosed cause. Code only, minimal diff.
  • Test Writer O (qwen2.5:3b) — Write one Java regression test that would have caught this bug.
JavaScript Refactor Pass (Dual) dual free sequential

Refactor JavaScript code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer O (qwen2.5-coder:3b) — Rewrite the given JavaScript code for clarity and idiom. Output only the revised code.
  • Verifier L (gemma-4-e2b-it-qat-mtp) — Sanity-check the refactored JavaScript code against the original — same behavior? List any risk in 3 bullets max.
Kotlin Explainer (Dual) dual free parallel

Kotlin code → plain-English explanation + complexity + risk notes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Explainer, Complexity, Risk Spotter. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Explainer O (qwen2.5-coder:1.5b) — Explain what this Kotlin code does in plain English, no jargon.
  • Complexity L (qwen_qwen3.5-0.8b) — State the time/space complexity of this Kotlin code in one line, with reasoning.
  • Risk Spotter O (llama3.2:1b) — List any risk (security, correctness, maintainability) in this Kotlin code. Bullets.
PHP API Designer (Dual) dual free sequential

Idea → REST endpoints in PHP conventions → example payloads.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: API Designer, Example Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • API Designer O (qwen2.5:1.5b) — Given a feature idea, propose REST endpoints following PHP-ecosystem conventions.
  • Example Writer L (gemma-3-1b-it) — Write example request/response JSON payloads for the proposed endpoints.
Python Code Reviewer (Dual) dual free parallel

Three specialists audit Python code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter O (qwen2.5-coder:1.5b) — List ONLY Python syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker L (gemma-3-4b-it) — Point out non-idiomatic Python — what a senior Python dev would flag in review. Bullets only.
  • Performance O (llama3.2:1b) — Report ONLY performance concerns for this Python code — hot loops, allocations, complexity. Bullets.
Ruby Dockerize (Dual) dual free sequential

App description (Ruby) → Dockerfile → run notes.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Dockerfile Author, Notes Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Dockerfile Author O (smollm2:1.7b) — Write a production-sane Dockerfile for this Ruby app description.
  • Notes Writer L (lfm2.5-1.2b-instruct) — Write 3-5 short run/build notes for the Dockerfile above.
Rust → Docs (Dual) dual free sequential

Turn Rust code into a short README, then tighten it.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Doc Writer, Editor. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Doc Writer O (llama3.2:3b) — Write a concise Markdown README for this Rust code: what it does, how to use it.
  • Editor L (qwen_qwen3.5-0.8b) — Tighten the README — cut fluff, keep only what a new user actually needs.
SQL → Docs (Dual) dual free sequential

Turn SQL code into a short README, then tighten it.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Doc Writer, Editor. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Doc Writer O (gemma2:2b) — Write a concise Markdown README for this SQL code: what it does, how to use it.
  • Editor L (gemma-4-e2b-it-qat-mtp) — Tighten the README — cut fluff, keep only what a new user actually needs.
Swift Code Reviewer (Dual) dual free parallel

Three specialists audit Swift code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter O (qwen2.5-coder:3b) — List ONLY Swift syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker L (qwen_qwen3.5-2b) — Point out non-idiomatic Swift — what a senior Swift dev would flag in review. Bullets only.
  • Performance O (llama3.2:3b) — Report ONLY performance concerns for this Swift code — hot loops, allocations, complexity. Bullets.
TypeScript Commit Writer (Dual) dual free sequential

TypeScript diff/notes → summary → Conventional Commit message.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Summarizer, Commit Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Summarizer O (deepseek-r1:1.5b) — Summarize what this TypeScript diff/change actually does, in plain English.
  • Commit Writer L (gemma-4-e2b-it-qat-mtp) — Write a Conventional Commits message (type, scope, subject, body) for this change.

Creative Writing (3)

Hard Sci-Fi Worldbuilder (Dual) dual free parallel

One prompt → hard sci-fi setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect O (qwen2.5-coder:1.5b) — Describe a hard sci-fi setting for this prompt — geography, mood, era.
  • Faction Writer L (gemma-3-4b-it) — Invent 2-3 factions/groups that fit this hard sci-fi setting.
  • NPC Writer O (llama3.2:1b) — Invent 2 memorable NPCs that fit this hard sci-fi setting.
High Fantasy Story Continuation (Dual) dual free sequential

Premise → high fantasy outline → next chapter → cliffhanger.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Outliner, Writer, Hook Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • Outliner O (qwen2.5-coder:3b) — Outline the next 3 beats of this high fantasy story premise.
  • Writer L (gemma-4-e2b-it-qat-mtp) — Write the next chapter/scene in high fantasy style, following the outline.
  • Hook Writer O (llama3.2:3b) — Write a one-paragraph cliffhanger ending for this high fantasy chapter.
Noir Detective Worldbuilder (Dual) dual free parallel

One prompt → noir detective setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect O (llama3.2:1b) — Describe a noir detective setting for this prompt — geography, mood, era.
  • Faction Writer L (lfm2.5-1.2b-instruct) — Invent 2-3 factions/groups that fit this noir detective setting.
  • NPC Writer O (gemma2:2b) — Invent 2 memorable NPCs that fit this noir detective setting.

Data & Research (4)

Customer Support Transcripts Digest (Dual) dual free parallel

customer support transcripts → summary + notable claims + what to verify, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Claim Spotter, Verifier. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Summarizer O (llama3.2:1b) — Summarize the key findings visible in this customer support transcripts sample.
  • Claim Spotter L (lfm2.5-1.2b-instruct) — List any strong/surprising claims implied by this customer support transcripts sample.
  • Verifier O (gemma2:2b) — List what in this customer support transcripts sample would need independent verification before acting on it.
E-Commerce Order Exports Cleaner (Dual) dual free parallel

Messy e-commerce order exports → schema guess + cleaned rows + anomalies, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Schema Guesser, Cleaner, Anomaly Spotter. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Schema Guesser O (qwen2.5-coder:3b) — Guess a reasonable schema (column names + types) for this e-commerce order exports sample.
  • Cleaner L (gemma-4-e2b-it-qat-mtp) — Reformat this e-commerce order exports sample into clean, consistent rows.
  • Anomaly Spotter O (llama3.2:3b) — Flag rows/values in this e-commerce order exports sample that look wrong or inconsistent.
Sensor Telemetry Readings Extraction (Dual) dual free parallel

Messy sensor telemetry readings → structured tokens + human summary + timestamps, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Summarizer, Timestamp Finder. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Extractor O (llama3.2:3b) — Pull structured fields out of this sensor telemetry readings sample, as a table.
  • Summarizer L (qwen_qwen3.5-0.8b) — Summarize what's happening in this sensor telemetry readings sample, in plain English.
  • Timestamp Finder O (qwen2.5:1.5b) — List every timestamp/date found in this sensor telemetry readings sample.
Server Access Logs Extraction (Dual) dual free parallel

Messy server access logs → structured tokens + human summary + timestamps, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Summarizer, Timestamp Finder. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Extractor O (qwen2.5-coder:1.5b) — Pull structured fields out of this server access logs sample, as a table.
  • Summarizer L (gemma-3-4b-it) — Summarize what's happening in this server access logs sample, in plain English.
  • Timestamp Finder O (llama3.2:1b) — List every timestamp/date found in this server access logs sample.

Image Prompting (5)

Cyberpunk Neon Storyboard (Dual) dual free sequential

Concept → scenes → cyberpunk neon-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown O (llama3.2:1b) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer L (lfm2.5-1.2b-instruct) — Write a cyberpunk neon-style image prompt for each scene above.
Flat Vector Illustration Prompt Studio (Dual) dual free sequential

Idea → detailed flat vector illustration image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer O (llama3.2:3b) — Turn this idea into a detailed flat vector illustration-style image generation prompt.
  • Negative Prompt Writer L (qwen_qwen3.5-0.8b) — Write a negative prompt to pair with the flat vector illustration prompt above — what to avoid.
Oil Painting Concepts x3 (Dual) dual free parallel

Idea → 3 distinct oil painting prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A O (gemma2:2b) — Write a oil painting-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B L (qwen_qwen3.5-2b) — Write a oil painting-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C O (qwen2.5:3b) — Write a oil painting-style image prompt for this idea, direction C (unexpected angle).
Photorealistic Prompt Studio (Dual) dual free sequential

Idea → detailed photorealistic image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer O (qwen2.5-coder:1.5b) — Turn this idea into a detailed photorealistic-style image generation prompt.
  • Negative Prompt Writer L (gemma-3-4b-it) — Write a negative prompt to pair with the photorealistic prompt above — what to avoid.
Watercolor Painting Concepts x3 (Dual) dual free parallel

Idea → 3 distinct watercolor painting prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A O (qwen2.5-coder:3b) — Write a watercolor painting-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B L (gemma-4-e2b-it-qat-mtp) — Write a watercolor painting-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C O (llama3.2:3b) — Write a watercolor painting-style image prompt for this idea, direction C (unexpected angle).

Language & Translation (8)

Arabic Grammar & Clarity (Dual) dual free sequential

Text in Arabic → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer O (gemma2:2b) — Fix grammar/spelling errors in this Arabic text. Output corrected text only.
  • Clarity Editor L (qwen_qwen3.5-2b) — Tighten this Arabic text for clarity — cut redundancy, keep meaning.
French Localization (Dual) dual free parallel

UI text → French + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer O (qwen2.5-coder:3b) — Translate this UI text into French, concise and natural for a UI label.
  • Tooltip Writer L (gemma-4-e2b-it-qat-mtp) — Write a short French tooltip/help text version of this UI text.
German Tone Rewriter (Dual) dual free parallel

Text → formal + casual German versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice O (llama3.2:1b) — Translate/rewrite this text into formal, professional German.
  • Casual Voice L (lfm2.5-1.2b-instruct) — Translate/rewrite this text into casual, everyday German.
Hebrew Subtitle Pass (Dual) dual free sequential

Transcript lines → Hebrew translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator O (llama3.2:3b) — Translate these subtitle lines into Hebrew, keeping line breaks intact.
  • Format Checker L (qwen_qwen3.5-0.8b) — Verify the Hebrew lines still match the original line count/timing markers.
Italian Localization (Dual) dual free parallel

UI text → Italian + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer O (qwen2.5:3b) — Translate this UI text into Italian, concise and natural for a UI label.
  • Tooltip Writer L (gemma-3-4b-it) — Write a short Italian tooltip/help text version of this UI text.
Japanese Translator Pro (Dual) dual free sequential

Translate to Japanese → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator O (qwen2.5:1.5b) — Translate the given text into Japanese. Natural, not literal.
  • Back-Translator L (gemma-3-1b-it) — Translate the Japanese translation back into English.
  • Drift Fixer O (deepseek-r1:1.5b) — Compare original vs back-translation; fix the Japanese version if meaning drifted.
Portuguese Tone Rewriter (Dual) dual free parallel

Text → formal + casual Portuguese versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice O (deepseek-r1:1.5b) — Translate/rewrite this text into formal, professional Portuguese.
  • Casual Voice L (gemma-4-e2b-it-qat-mtp) — Translate/rewrite this text into casual, everyday Portuguese.
Spanish Translator Pro (Dual) dual free sequential

Translate to Spanish → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator O (qwen2.5-coder:1.5b) — Translate the given text into Spanish. Natural, not literal.
  • Back-Translator L (gemma-3-4b-it) — Translate the Spanish translation back into English.
  • Drift Fixer O (llama3.2:1b) — Compare original vs back-translation; fix the Spanish version if meaning drifted.

Learning & Study (5)

Blockchain Consensus — 3 Levels (Dual) dual free parallel

Explain blockchain consensus at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher O (llama3.2:3b) — Explain blockchain consensus like the reader is 10 years old. No jargon.
  • Intermediate Teacher L (qwen_qwen3.5-0.8b) — Explain blockchain consensus for someone with basic background — some technical terms OK.
  • Expert O (qwen2.5:1.5b) — Explain blockchain consensus at expert depth, precise terminology, no hand-holding.
Compound Interest Debate (Dual) dual free judge

3 agents argue about compound interest; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A O (llama3.2:1b) — Give the strongest argument/explanation of compound interest, angle A.
  • Advocate B L (lfm2.5-1.2b-instruct) — Give the strongest argument/explanation of compound interest, angle B, different framing.
Photosynthesis — 3 Levels (Dual) dual free parallel

Explain photosynthesis at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher O (qwen2.5-coder:1.5b) — Explain photosynthesis like the reader is 10 years old. No jargon.
  • Intermediate Teacher L (gemma-3-4b-it) — Explain photosynthesis for someone with basic background — some technical terms OK.
  • Expert O (llama3.2:1b) — Explain photosynthesis at expert depth, precise terminology, no hand-holding.
Quantum Entanglement Flashcards (Dual) dual free sequential

Text about quantum entanglement → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor O (gemma2:2b) — Extract the key facts about quantum entanglement from the given text, as bullets.
  • Flashcard Writer L (qwen_qwen3.5-2b) — Turn those facts into Q/A flashcards about quantum entanglement (JSON array of {q,a}).
Recursion Flashcards (Dual) dual free sequential

Text about recursion → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor O (qwen2.5-coder:3b) — Extract the key facts about recursion from the given text, as bullets.
  • Flashcard Writer L (gemma-4-e2b-it-qat-mtp) — Turn those facts into Q/A flashcards about recursion (JSON array of {q,a}).

Office & Docs (10)

Client Proposal Triage (Dual) dual free parallel

Messy a client proposal text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer O (qwen2.5-coder:1.5b) — Summarize this a client proposal in exactly 3 bullets.
  • Action Extractor L (gemma-3-4b-it) — List only concrete action items found in this a client proposal, as bullets.
  • Tone Reader O (llama3.2:1b) — State the tone of this a client proposal in one sentence (e.g. urgent, neutral, frustrated).
Internal Memo Extractor (Dual) dual free parallel

Messy an internal memo text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor O (llama3.2:3b) — Extract structured line items from this an internal memo as a table.
  • Date Finder L (qwen_qwen3.5-0.8b) — List every date/deadline mentioned in this an internal memo.
  • Anomaly Spotter O (qwen2.5:1.5b) — Flag anything in this an internal memo that looks inconsistent or wrong.
Job Posting Triage (Dual) dual free parallel

Messy a job posting text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer O (qwen2.5:1.5b) — Summarize this a job posting in exactly 3 bullets.
  • Action Extractor L (gemma-3-1b-it) — List only concrete action items found in this a job posting, as bullets.
  • Tone Reader O (deepseek-r1:1.5b) — State the tone of this a job posting in one sentence (e.g. urgent, neutral, frustrated).
Partnership Agreement Summary Rewriter (Dual) dual free sequential

Rough a partnership agreement summary → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher O (qwen2.5-coder:1.5b) — Polish this rough a partnership agreement summary draft for grammar and flow.
  • Keyword Pass L (qwen_qwen3.5-0.8b) — Add/verify relevant keywords a reader or search would expect in this a partnership agreement summary.
Performance Review Composer (Dual) dual free sequential

Intent → draft a performance review → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter O (qwen2.5:3b) — Write a first draft of a performance review given the stated intent.
  • Polisher L (gemma-3-4b-it) — Polish the tone of this a performance review draft — professional, clear, no filler.
  • Summarizer O (smollm2:1.7b) — Write a one-line subject and a 2-sentence TL;DR for this a performance review.
Policy Document QA (Dual) dual free parallel

Long a policy document → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer O (deepseek-r1:1.5b) — Write a 2-sentence TL;DR of this a policy document.
  • Outliner L (gemma-4-e2b-it-qat-mtp) — Extract a section-by-section outline of this a policy document.
  • Term Extractor O (qwen2.5-coder:1.5b) — List key terms/jargon used in this a policy document, with one-line definitions.
Press Release Rewriter (Dual) dual free sequential

Rough a press release → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher O (gemma2:2b) — Polish this rough a press release draft for grammar and flow.
  • Keyword Pass L (qwen_qwen3.5-2b) — Add/verify relevant keywords a reader or search would expect in this a press release.
Status Report Composer (Dual) dual free sequential

Intent → draft a status report → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter O (qwen2.5-coder:3b) — Write a first draft of a status report given the stated intent.
  • Polisher L (gemma-4-e2b-it-qat-mtp) — Polish the tone of this a status report draft — professional, clear, no filler.
  • Summarizer O (llama3.2:3b) — Write a one-line subject and a 2-sentence TL;DR for this a status report.
Support Ticket Reply QA (Dual) dual free parallel

Long a support ticket reply → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer O (llama3.2:1b) — Write a 2-sentence TL;DR of this a support ticket reply.
  • Outliner L (lfm2.5-1.2b-instruct) — Extract a section-by-section outline of this a support ticket reply.
  • Term Extractor O (gemma2:2b) — List key terms/jargon used in this a support ticket reply, with one-line definitions.
User Manual Section Extractor (Dual) dual free parallel

Messy a user manual section text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor O (smollm2:1.7b) — Extract structured line items from this a user manual section as a table.
  • Date Finder L (lfm2.5-1.2b-instruct) — List every date/deadline mentioned in this a user manual section.
  • Anomaly Spotter O (qwen2.5-coder:3b) — Flag anything in this a user manual section that looks inconsistent or wrong.

Ollama — Premium (Content tier, Marketplace) (185 combos)

Accessibility (4)

Color Contrast Pass (Ollama) ollama premium sequential

HTML/UI → color contrast issues found + concrete fixes.

Good for: making content easier to read, navigate, or use for people with different needs.

Example: Say you paste in a page of text or a UI flow you want checked. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: A11y Scanner, Fix Suggester. Use it when you want making content easier to read, navigate, or use for people with different needs.

Steps (2):

  • A11y Scanner (llama3.2:1b) — Scan this HTML/UI text ONLY for color contrast issues. List concrete problems as bullets, cite the element.
  • Fix Suggester (llama3.2:3b) — For each color contrast issue found, suggest a concrete fix (markup/attribute/CSS change).
Focus Indicators Pass (Ollama) ollama premium sequential

HTML/UI → focus indicators issues found + concrete fixes.

Good for: making content easier to read, navigate, or use for people with different needs.

Example: Say you paste in a page of text or a UI flow you want checked. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: A11y Scanner, Fix Suggester. Use it when you want making content easier to read, navigate, or use for people with different needs.

Steps (2):

  • A11y Scanner (llama3.2:3b) — Scan this HTML/UI text ONLY for focus indicators issues. List concrete problems as bullets, cite the element.
  • Fix Suggester (gemma2:2b) — For each focus indicators issue found, suggest a concrete fix (markup/attribute/CSS change).
Keyboard Navigation Pass (Ollama) ollama premium sequential

HTML/UI → keyboard navigation issues found + concrete fixes.

Good for: making content easier to read, navigate, or use for people with different needs.

Example: Say you paste in a page of text or a UI flow you want checked. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: A11y Scanner, Fix Suggester. Use it when you want making content easier to read, navigate, or use for people with different needs.

Steps (2):

  • A11y Scanner (qwen2.5-coder:1.5b) — Scan this HTML/UI text ONLY for keyboard navigation issues. List concrete problems as bullets, cite the element.
  • Fix Suggester (qwen2.5-coder:3b) — For each keyboard navigation issue found, suggest a concrete fix (markup/attribute/CSS change).
Screen-Reader Labeling Pass (Ollama) ollama premium sequential

HTML/UI → screen-reader labeling issues found + concrete fixes.

Good for: making content easier to read, navigate, or use for people with different needs.

Example: Say you paste in a page of text or a UI flow you want checked. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: A11y Scanner, Fix Suggester. Use it when you want making content easier to read, navigate, or use for people with different needs.

Steps (2):

  • A11y Scanner (qwen2.5-coder:3b) — Scan this HTML/UI text ONLY for screen-reader labeling issues. List concrete problems as bullets, cite the element.
  • Fix Suggester (llama3.2:1b) — For each screen-reader labeling issue found, suggest a concrete fix (markup/attribute/CSS change).

Coding (52)

Bash Test Generator — Lite (Ollama) ollama premium parallel

Generate Bash unit tests: happy path, edge cases, and failure modes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Happy Path, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Happy Path (qwen2.5:1.5b) — Write Bash unit tests for the normal/expected inputs only.
  • Edge Cases (qwen2.5:3b) — Write Bash unit tests for boundary/edge-case inputs only.
  • Failure Modes (deepseek-r1:1.5b) — Write Bash unit tests for invalid input / error conditions only.
Bash Test Generator — Pro (Ollama) ollama premium parallel

Generate Bash unit tests: happy path, edge cases, and failure modes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Happy Path, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Happy Path (llama3.2:3b) — Write Bash unit tests for the normal/expected inputs only.
  • Edge Cases (gemma2:2b) — Write Bash unit tests for boundary/edge-case inputs only.
  • Failure Modes (qwen2.5:1.5b) — Write Bash unit tests for invalid input / error conditions only.
C# Duel — Lite (Ollama) ollama premium judge

Two C# coders solve the same task differently; a judge picks the cleaner one.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Coder A, Coder B. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Coder A (smollm2:1.7b) — Solve the given task in C#, straightforward/imperative style. Code only.
  • Coder B (qwen2.5-coder:1.5b) — Solve the given task in C#, a more functional/idiomatic style. Code only.
C# Duel — Pro (Ollama) ollama premium judge

Two C# coders solve the same task differently; a judge picks the cleaner one.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Coder A, Coder B. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Coder A (qwen2.5:3b) — Solve the given task in C#, straightforward/imperative style. Code only.
  • Coder B (deepseek-r1:1.5b) — Solve the given task in C#, a more functional/idiomatic style. Code only.
C# Duel — Standard (Ollama) ollama premium judge

Two C# coders solve the same task differently; a judge picks the cleaner one.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Coder A, Coder B. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Coder A (qwen2.5-coder:3b) — Solve the given task in C#, straightforward/imperative style. Code only.
  • Coder B (llama3.2:1b) — Solve the given task in C#, a more functional/idiomatic style. Code only.
C++ Refactor Pass — Lite (Ollama) ollama premium sequential

Refactor C++ code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer (gemma2:2b) — Rewrite the given C++ code for clarity and idiom. Output only the revised code.
  • Verifier (qwen2.5:1.5b) — Sanity-check the refactored C++ code against the original — same behavior? List any risk in 3 bullets max.
C++ Refactor Pass — Pro (Ollama) ollama premium sequential

Refactor C++ code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer (qwen2.5:3b) — Rewrite the given C++ code for clarity and idiom. Output only the revised code.
  • Verifier (deepseek-r1:1.5b) — Sanity-check the refactored C++ code against the original — same behavior? List any risk in 3 bullets max.
C++ Refactor Pass — Standard (Ollama) ollama premium sequential

Refactor C++ code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer (llama3.2:1b) — Rewrite the given C++ code for clarity and idiom. Output only the revised code.
  • Verifier (llama3.2:3b) — Sanity-check the refactored C++ code against the original — same behavior? List any risk in 3 bullets max.
Dart Dockerize — Lite (Ollama) ollama premium sequential

App description (Dart) → Dockerfile → run notes.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Dockerfile Author, Notes Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Dockerfile Author (llama3.2:1b) — Write a production-sane Dockerfile for this Dart app description.
  • Notes Writer (llama3.2:3b) — Write 3-5 short run/build notes for the Dockerfile above.
Dart Dockerize — Pro (Ollama) ollama premium sequential

App description (Dart) → Dockerfile → run notes.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Dockerfile Author, Notes Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Dockerfile Author (qwen2.5-coder:1.5b) — Write a production-sane Dockerfile for this Dart app description.
  • Notes Writer (qwen2.5-coder:3b) — Write 3-5 short run/build notes for the Dockerfile above.
Elixir Bug Triage — Lite (Ollama) ollama premium sequential

Error/log in Elixir → root cause → fix → a test to prevent regression.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Diagnoser, Fixer, Test Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Diagnoser (deepseek-r1:1.5b) — Given a Elixir error/log, state the most likely root cause in 2-3 sentences.
  • Fixer (smollm2:1.7b) — Propose a concrete Elixir code fix for the diagnosed cause. Code only, minimal diff.
  • Test Writer (qwen2.5-coder:1.5b) — Write one Elixir regression test that would have caught this bug.
Elixir Bug Triage — Pro (Ollama) ollama premium sequential

Error/log in Elixir → root cause → fix → a test to prevent regression.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Diagnoser, Fixer, Test Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Diagnoser (qwen2.5:1.5b) — Given a Elixir error/log, state the most likely root cause in 2-3 sentences.
  • Fixer (qwen2.5:3b) — Propose a concrete Elixir code fix for the diagnosed cause. Code only, minimal diff.
  • Test Writer (deepseek-r1:1.5b) — Write one Elixir regression test that would have caught this bug.
Go Test Generator — Lite (Ollama) ollama premium parallel

Generate Go unit tests: happy path, edge cases, and failure modes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Happy Path, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Happy Path (llama3.2:1b) — Write Go unit tests for the normal/expected inputs only.
  • Edge Cases (llama3.2:3b) — Write Go unit tests for boundary/edge-case inputs only.
  • Failure Modes (gemma2:2b) — Write Go unit tests for invalid input / error conditions only.
Go Test Generator — Pro (Ollama) ollama premium parallel

Generate Go unit tests: happy path, edge cases, and failure modes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Happy Path, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Happy Path (gemma2:2b) — Write Go unit tests for the normal/expected inputs only.
  • Edge Cases (qwen2.5:1.5b) — Write Go unit tests for boundary/edge-case inputs only.
  • Failure Modes (qwen2.5:3b) — Write Go unit tests for invalid input / error conditions only.
Go Test Generator — Standard (Ollama) ollama premium parallel

Generate Go unit tests: happy path, edge cases, and failure modes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Happy Path, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Happy Path (qwen2.5:3b) — Write Go unit tests for the normal/expected inputs only.
  • Edge Cases (deepseek-r1:1.5b) — Write Go unit tests for boundary/edge-case inputs only.
  • Failure Modes (smollm2:1.7b) — Write Go unit tests for invalid input / error conditions only.
Java Bug Triage — Lite (Ollama) ollama premium sequential

Error/log in Java → root cause → fix → a test to prevent regression.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Diagnoser, Fixer, Test Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Diagnoser (qwen2.5:3b) — Given a Java error/log, state the most likely root cause in 2-3 sentences.
  • Fixer (deepseek-r1:1.5b) — Propose a concrete Java code fix for the diagnosed cause. Code only, minimal diff.
  • Test Writer (smollm2:1.7b) — Write one Java regression test that would have caught this bug.
Java Bug Triage — Pro (Ollama) ollama premium sequential

Error/log in Java → root cause → fix → a test to prevent regression.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Diagnoser, Fixer, Test Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Diagnoser (gemma2:2b) — Given a Java error/log, state the most likely root cause in 2-3 sentences.
  • Fixer (qwen2.5:1.5b) — Propose a concrete Java code fix for the diagnosed cause. Code only, minimal diff.
  • Test Writer (qwen2.5:3b) — Write one Java regression test that would have caught this bug.
Java Bug Triage — Standard (Ollama) ollama premium sequential

Error/log in Java → root cause → fix → a test to prevent regression.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Diagnoser, Fixer, Test Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Diagnoser (smollm2:1.7b) — Given a Java error/log, state the most likely root cause in 2-3 sentences.
  • Fixer (qwen2.5-coder:1.5b) — Propose a concrete Java code fix for the diagnosed cause. Code only, minimal diff.
  • Test Writer (qwen2.5-coder:3b) — Write one Java regression test that would have caught this bug.
JavaScript Refactor Pass — Lite (Ollama) ollama premium sequential

Refactor JavaScript code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer (qwen2.5-coder:3b) — Rewrite the given JavaScript code for clarity and idiom. Output only the revised code.
  • Verifier (llama3.2:1b) — Sanity-check the refactored JavaScript code against the original — same behavior? List any risk in 3 bullets max.
JavaScript Refactor Pass — Pro (Ollama) ollama premium sequential

Refactor JavaScript code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer (llama3.2:3b) — Rewrite the given JavaScript code for clarity and idiom. Output only the revised code.
  • Verifier (gemma2:2b) — Sanity-check the refactored JavaScript code against the original — same behavior? List any risk in 3 bullets max.
JavaScript Refactor Pass — Standard (Ollama) ollama premium sequential

Refactor JavaScript code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer (qwen2.5:1.5b) — Rewrite the given JavaScript code for clarity and idiom. Output only the revised code.
  • Verifier (qwen2.5:3b) — Sanity-check the refactored JavaScript code against the original — same behavior? List any risk in 3 bullets max.
Kotlin Explainer — Lite (Ollama) ollama premium parallel

Kotlin code → plain-English explanation + complexity + risk notes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Explainer, Complexity, Risk Spotter. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Explainer (qwen2.5-coder:1.5b) — Explain what this Kotlin code does in plain English, no jargon.
  • Complexity (qwen2.5-coder:3b) — State the time/space complexity of this Kotlin code in one line, with reasoning.
  • Risk Spotter (llama3.2:1b) — List any risk (security, correctness, maintainability) in this Kotlin code. Bullets.
Kotlin Explainer — Pro (Ollama) ollama premium parallel

Kotlin code → plain-English explanation + complexity + risk notes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Explainer, Complexity, Risk Spotter. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Explainer (gemma2:2b) — Explain what this Kotlin code does in plain English, no jargon.
  • Complexity (qwen2.5:1.5b) — State the time/space complexity of this Kotlin code in one line, with reasoning.
  • Risk Spotter (qwen2.5:3b) — List any risk (security, correctness, maintainability) in this Kotlin code. Bullets.
Kotlin Explainer — Standard (Ollama) ollama premium parallel

Kotlin code → plain-English explanation + complexity + risk notes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Explainer, Complexity, Risk Spotter. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Explainer (llama3.2:1b) — Explain what this Kotlin code does in plain English, no jargon.
  • Complexity (llama3.2:3b) — State the time/space complexity of this Kotlin code in one line, with reasoning.
  • Risk Spotter (gemma2:2b) — List any risk (security, correctness, maintainability) in this Kotlin code. Bullets.
Lua Commit Writer — Lite (Ollama) ollama premium sequential

Lua diff/notes → summary → Conventional Commit message.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Summarizer, Commit Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Summarizer (smollm2:1.7b) — Summarize what this Lua diff/change actually does, in plain English.
  • Commit Writer (qwen2.5-coder:1.5b) — Write a Conventional Commits message (type, scope, subject, body) for this change.
Lua Commit Writer — Pro (Ollama) ollama premium sequential

Lua diff/notes → summary → Conventional Commit message.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Summarizer, Commit Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Summarizer (qwen2.5-coder:3b) — Summarize what this Lua diff/change actually does, in plain English.
  • Commit Writer (llama3.2:1b) — Write a Conventional Commits message (type, scope, subject, body) for this change.
PHP API Designer — Lite (Ollama) ollama premium sequential

Idea → REST endpoints in PHP conventions → example payloads.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: API Designer, Example Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • API Designer (deepseek-r1:1.5b) — Given a feature idea, propose REST endpoints following PHP-ecosystem conventions.
  • Example Writer (smollm2:1.7b) — Write example request/response JSON payloads for the proposed endpoints.
PHP API Designer — Pro (Ollama) ollama premium sequential

Idea → REST endpoints in PHP conventions → example payloads.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: API Designer, Example Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • API Designer (qwen2.5-coder:1.5b) — Given a feature idea, propose REST endpoints following PHP-ecosystem conventions.
  • Example Writer (qwen2.5-coder:3b) — Write example request/response JSON payloads for the proposed endpoints.
PHP API Designer — Standard (Ollama) ollama premium sequential

Idea → REST endpoints in PHP conventions → example payloads.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: API Designer, Example Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • API Designer (qwen2.5:1.5b) — Given a feature idea, propose REST endpoints following PHP-ecosystem conventions.
  • Example Writer (qwen2.5:3b) — Write example request/response JSON payloads for the proposed endpoints.
Perl Duel — Lite (Ollama) ollama premium judge

Two Perl coders solve the same task differently; a judge picks the cleaner one.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Coder A, Coder B. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Coder A (deepseek-r1:1.5b) — Solve the given task in Perl, straightforward/imperative style. Code only.
  • Coder B (smollm2:1.7b) — Solve the given task in Perl, a more functional/idiomatic style. Code only.
Perl Duel — Pro (Ollama) ollama premium judge

Two Perl coders solve the same task differently; a judge picks the cleaner one.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Coder A, Coder B. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Coder A (qwen2.5-coder:1.5b) — Solve the given task in Perl, straightforward/imperative style. Code only.
  • Coder B (qwen2.5-coder:3b) — Solve the given task in Perl, a more functional/idiomatic style. Code only.
Python Code Reviewer — Lite (Ollama) ollama premium parallel

Three specialists audit Python code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter (qwen2.5-coder:1.5b) — List ONLY Python syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker (qwen2.5-coder:3b) — Point out non-idiomatic Python — what a senior Python dev would flag in review. Bullets only.
  • Performance (llama3.2:1b) — Report ONLY performance concerns for this Python code — hot loops, allocations, complexity. Bullets.
Python Code Reviewer — Pro (Ollama) ollama premium parallel

Three specialists audit Python code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter (gemma2:2b) — List ONLY Python syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker (qwen2.5:1.5b) — Point out non-idiomatic Python — what a senior Python dev would flag in review. Bullets only.
  • Performance (qwen2.5:3b) — Report ONLY performance concerns for this Python code — hot loops, allocations, complexity. Bullets.
Python Code Reviewer — Standard (Ollama) ollama premium parallel

Three specialists audit Python code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter (llama3.2:1b) — List ONLY Python syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker (llama3.2:3b) — Point out non-idiomatic Python — what a senior Python dev would flag in review. Bullets only.
  • Performance (gemma2:2b) — Report ONLY performance concerns for this Python code — hot loops, allocations, complexity. Bullets.
R Explainer — Lite (Ollama) ollama premium parallel

R code → plain-English explanation + complexity + risk notes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Explainer, Complexity, Risk Spotter. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Explainer (llama3.2:3b) — Explain what this R code does in plain English, no jargon.
  • Complexity (gemma2:2b) — State the time/space complexity of this R code in one line, with reasoning.
  • Risk Spotter (qwen2.5:1.5b) — List any risk (security, correctness, maintainability) in this R code. Bullets.
R Explainer — Pro (Ollama) ollama premium parallel

R code → plain-English explanation + complexity + risk notes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Explainer, Complexity, Risk Spotter. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Explainer (qwen2.5-coder:3b) — Explain what this R code does in plain English, no jargon.
  • Complexity (llama3.2:1b) — State the time/space complexity of this R code in one line, with reasoning.
  • Risk Spotter (llama3.2:3b) — List any risk (security, correctness, maintainability) in this R code. Bullets.
Ruby Dockerize — Lite (Ollama) ollama premium sequential

App description (Ruby) → Dockerfile → run notes.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Dockerfile Author, Notes Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Dockerfile Author (smollm2:1.7b) — Write a production-sane Dockerfile for this Ruby app description.
  • Notes Writer (qwen2.5-coder:1.5b) — Write 3-5 short run/build notes for the Dockerfile above.
Ruby Dockerize — Pro (Ollama) ollama premium sequential

App description (Ruby) → Dockerfile → run notes.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Dockerfile Author, Notes Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Dockerfile Author (llama3.2:3b) — Write a production-sane Dockerfile for this Ruby app description.
  • Notes Writer (gemma2:2b) — Write 3-5 short run/build notes for the Dockerfile above.
Ruby Dockerize — Standard (Ollama) ollama premium sequential

App description (Ruby) → Dockerfile → run notes.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Dockerfile Author, Notes Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Dockerfile Author (qwen2.5-coder:3b) — Write a production-sane Dockerfile for this Ruby app description.
  • Notes Writer (llama3.2:1b) — Write 3-5 short run/build notes for the Dockerfile above.
Rust → Docs — Lite (Ollama) ollama premium sequential

Turn Rust code into a short README, then tighten it.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Doc Writer, Editor. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Doc Writer (deepseek-r1:1.5b) — Write a concise Markdown README for this Rust code: what it does, how to use it.
  • Editor (smollm2:1.7b) — Tighten the README — cut fluff, keep only what a new user actually needs.
Rust → Docs — Pro (Ollama) ollama premium sequential

Turn Rust code into a short README, then tighten it.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Doc Writer, Editor. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Doc Writer (llama3.2:3b) — Write a concise Markdown README for this Rust code: what it does, how to use it.
  • Editor (gemma2:2b) — Tighten the README — cut fluff, keep only what a new user actually needs.
Rust → Docs — Standard (Ollama) ollama premium sequential

Turn Rust code into a short README, then tighten it.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Doc Writer, Editor. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Doc Writer (qwen2.5:1.5b) — Write a concise Markdown README for this Rust code: what it does, how to use it.
  • Editor (qwen2.5:3b) — Tighten the README — cut fluff, keep only what a new user actually needs.
SQL → Docs — Lite (Ollama) ollama premium sequential

Turn SQL code into a short README, then tighten it.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Doc Writer, Editor. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Doc Writer (gemma2:2b) — Write a concise Markdown README for this SQL code: what it does, how to use it.
  • Editor (qwen2.5:1.5b) — Tighten the README — cut fluff, keep only what a new user actually needs.
SQL → Docs — Pro (Ollama) ollama premium sequential

Turn SQL code into a short README, then tighten it.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Doc Writer, Editor. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Doc Writer (qwen2.5:3b) — Write a concise Markdown README for this SQL code: what it does, how to use it.
  • Editor (deepseek-r1:1.5b) — Tighten the README — cut fluff, keep only what a new user actually needs.
Scala API Designer — Lite (Ollama) ollama premium sequential

Idea → REST endpoints in Scala conventions → example payloads.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: API Designer, Example Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • API Designer (smollm2:1.7b) — Given a feature idea, propose REST endpoints following Scala-ecosystem conventions.
  • Example Writer (qwen2.5-coder:1.5b) — Write example request/response JSON payloads for the proposed endpoints.
Scala API Designer — Pro (Ollama) ollama premium sequential

Idea → REST endpoints in Scala conventions → example payloads.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: API Designer, Example Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • API Designer (qwen2.5:3b) — Given a feature idea, propose REST endpoints following Scala-ecosystem conventions.
  • Example Writer (deepseek-r1:1.5b) — Write example request/response JSON payloads for the proposed endpoints.
Swift Code Reviewer — Lite (Ollama) ollama premium parallel

Three specialists audit Swift code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter (qwen2.5:1.5b) — List ONLY Swift syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker (qwen2.5:3b) — Point out non-idiomatic Swift — what a senior Swift dev would flag in review. Bullets only.
  • Performance (deepseek-r1:1.5b) — Report ONLY performance concerns for this Swift code — hot loops, allocations, complexity. Bullets.
Swift Code Reviewer — Pro (Ollama) ollama premium parallel

Three specialists audit Swift code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter (qwen2.5-coder:3b) — List ONLY Swift syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker (llama3.2:1b) — Point out non-idiomatic Swift — what a senior Swift dev would flag in review. Bullets only.
  • Performance (llama3.2:3b) — Report ONLY performance concerns for this Swift code — hot loops, allocations, complexity. Bullets.
Swift Code Reviewer — Standard (Ollama) ollama premium parallel

Three specialists audit Swift code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter (llama3.2:3b) — List ONLY Swift syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker (gemma2:2b) — Point out non-idiomatic Swift — what a senior Swift dev would flag in review. Bullets only.
  • Performance (qwen2.5:1.5b) — Report ONLY performance concerns for this Swift code — hot loops, allocations, complexity. Bullets.
TypeScript Commit Writer — Lite (Ollama) ollama premium sequential

TypeScript diff/notes → summary → Conventional Commit message.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Summarizer, Commit Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Summarizer (deepseek-r1:1.5b) — Summarize what this TypeScript diff/change actually does, in plain English.
  • Commit Writer (smollm2:1.7b) — Write a Conventional Commits message (type, scope, subject, body) for this change.
TypeScript Commit Writer — Pro (Ollama) ollama premium sequential

TypeScript diff/notes → summary → Conventional Commit message.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Summarizer, Commit Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Summarizer (qwen2.5-coder:1.5b) — Summarize what this TypeScript diff/change actually does, in plain English.
  • Commit Writer (qwen2.5-coder:3b) — Write a Conventional Commits message (type, scope, subject, body) for this change.
TypeScript Commit Writer — Standard (Ollama) ollama premium sequential

TypeScript diff/notes → summary → Conventional Commit message.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Summarizer, Commit Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Summarizer (llama3.2:1b) — Summarize what this TypeScript diff/change actually does, in plain English.
  • Commit Writer (llama3.2:3b) — Write a Conventional Commits message (type, scope, subject, body) for this change.

Creative Writing (11)

Cozy Mystery Story Continuation (Ollama) ollama premium sequential

Premise → cozy mystery outline → next chapter → cliffhanger.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Outliner, Writer, Hook Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • Outliner (llama3.2:3b) — Outline the next 3 beats of this cozy mystery story premise.
  • Writer (gemma2:2b) — Write the next chapter/scene in cozy mystery style, following the outline.
  • Hook Writer (qwen2.5:1.5b) — Write a one-paragraph cliffhanger ending for this cozy mystery chapter.
Cyberpunk Heist Story Continuation (Ollama) ollama premium sequential

Premise → cyberpunk heist outline → next chapter → cliffhanger.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Outliner, Writer, Hook Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • Outliner (deepseek-r1:1.5b) — Outline the next 3 beats of this cyberpunk heist story premise.
  • Writer (smollm2:1.7b) — Write the next chapter/scene in cyberpunk heist style, following the outline.
  • Hook Writer (qwen2.5-coder:1.5b) — Write a one-paragraph cliffhanger ending for this cyberpunk heist chapter.
Fairy-Tale Retelling Worldbuilder (Ollama) ollama premium parallel

One prompt → fairy-tale retelling setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect (smollm2:1.7b) — Describe a fairy-tale retelling setting for this prompt — geography, mood, era.
  • Faction Writer (qwen2.5-coder:1.5b) — Invent 2-3 factions/groups that fit this fairy-tale retelling setting.
  • NPC Writer (qwen2.5-coder:3b) — Invent 2 memorable NPCs that fit this fairy-tale retelling setting.
Gothic Horror Worldbuilder (Ollama) ollama premium parallel

One prompt → gothic horror setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect (qwen2.5:3b) — Describe a gothic horror setting for this prompt — geography, mood, era.
  • Faction Writer (deepseek-r1:1.5b) — Invent 2-3 factions/groups that fit this gothic horror setting.
  • NPC Writer (smollm2:1.7b) — Invent 2 memorable NPCs that fit this gothic horror setting.
Hard Sci-Fi Worldbuilder (Ollama) ollama premium parallel

One prompt → hard sci-fi setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect (qwen2.5-coder:1.5b) — Describe a hard sci-fi setting for this prompt — geography, mood, era.
  • Faction Writer (qwen2.5-coder:3b) — Invent 2-3 factions/groups that fit this hard sci-fi setting.
  • NPC Writer (llama3.2:1b) — Invent 2 memorable NPCs that fit this hard sci-fi setting.
High Fantasy Story Continuation (Ollama) ollama premium sequential

Premise → high fantasy outline → next chapter → cliffhanger.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Outliner, Writer, Hook Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • Outliner (qwen2.5-coder:3b) — Outline the next 3 beats of this high fantasy story premise.
  • Writer (llama3.2:1b) — Write the next chapter/scene in high fantasy style, following the outline.
  • Hook Writer (llama3.2:3b) — Write a one-paragraph cliffhanger ending for this high fantasy chapter.
Historical Fiction Story Continuation (Ollama) ollama premium sequential

Premise → historical fiction outline → next chapter → cliffhanger.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Outliner, Writer, Hook Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • Outliner (qwen2.5-coder:1.5b) — Outline the next 3 beats of this historical fiction story premise.
  • Writer (qwen2.5-coder:3b) — Write the next chapter/scene in historical fiction style, following the outline.
  • Hook Writer (llama3.2:1b) — Write a one-paragraph cliffhanger ending for this historical fiction chapter.
Noir Detective Worldbuilder (Ollama) ollama premium parallel

One prompt → noir detective setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect (llama3.2:1b) — Describe a noir detective setting for this prompt — geography, mood, era.
  • Faction Writer (llama3.2:3b) — Invent 2-3 factions/groups that fit this noir detective setting.
  • NPC Writer (gemma2:2b) — Invent 2 memorable NPCs that fit this noir detective setting.
Post-Apocalyptic Survival Worldbuilder (Ollama) ollama premium parallel

One prompt → post-apocalyptic survival setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect (gemma2:2b) — Describe a post-apocalyptic survival setting for this prompt — geography, mood, era.
  • Faction Writer (qwen2.5:1.5b) — Invent 2-3 factions/groups that fit this post-apocalyptic survival setting.
  • NPC Writer (qwen2.5:3b) — Invent 2 memorable NPCs that fit this post-apocalyptic survival setting.
Romantic Comedy Worldbuilder (Ollama) ollama premium parallel

One prompt → romantic comedy setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect (qwen2.5-coder:3b) — Describe a romantic comedy setting for this prompt — geography, mood, era.
  • Faction Writer (llama3.2:1b) — Invent 2-3 factions/groups that fit this romantic comedy setting.
  • NPC Writer (llama3.2:3b) — Invent 2 memorable NPCs that fit this romantic comedy setting.
Space Opera Story Continuation (Ollama) ollama premium sequential

Premise → space opera outline → next chapter → cliffhanger.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Outliner, Writer, Hook Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • Outliner (qwen2.5:1.5b) — Outline the next 3 beats of this space opera story premise.
  • Writer (qwen2.5:3b) — Write the next chapter/scene in space opera style, following the outline.
  • Hook Writer (deepseek-r1:1.5b) — Write a one-paragraph cliffhanger ending for this space opera chapter.

Data & Research (15)

Clinical Trial Data Notes Digest (Ollama) ollama premium parallel

clinical trial data notes → summary + notable claims + what to verify, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Claim Spotter, Verifier. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Summarizer (smollm2:1.7b) — Summarize the key findings visible in this clinical trial data notes sample.
  • Claim Spotter (qwen2.5-coder:1.5b) — List any strong/surprising claims implied by this clinical trial data notes sample.
  • Verifier (qwen2.5-coder:3b) — List what in this clinical trial data notes sample would need independent verification before acting on it.
Customer Support Transcripts Digest — Lite (Ollama) ollama premium parallel

customer support transcripts → summary + notable claims + what to verify, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Claim Spotter, Verifier. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Summarizer (llama3.2:1b) — Summarize the key findings visible in this customer support transcripts sample.
  • Claim Spotter (llama3.2:3b) — List any strong/surprising claims implied by this customer support transcripts sample.
  • Verifier (gemma2:2b) — List what in this customer support transcripts sample would need independent verification before acting on it.
Customer Support Transcripts Digest — Pro (Ollama) ollama premium parallel

customer support transcripts → summary + notable claims + what to verify, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Claim Spotter, Verifier. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Summarizer (qwen2.5:1.5b) — Summarize the key findings visible in this customer support transcripts sample.
  • Claim Spotter (qwen2.5:3b) — List any strong/surprising claims implied by this customer support transcripts sample.
  • Verifier (deepseek-r1:1.5b) — List what in this customer support transcripts sample would need independent verification before acting on it.
E-Commerce Order Exports Cleaner — Lite (Ollama) ollama premium parallel

Messy e-commerce order exports → schema guess + cleaned rows + anomalies, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Schema Guesser, Cleaner, Anomaly Spotter. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Schema Guesser (gemma2:2b) — Guess a reasonable schema (column names + types) for this e-commerce order exports sample.
  • Cleaner (qwen2.5:1.5b) — Reformat this e-commerce order exports sample into clean, consistent rows.
  • Anomaly Spotter (qwen2.5:3b) — Flag rows/values in this e-commerce order exports sample that look wrong or inconsistent.
E-Commerce Order Exports Cleaner — Pro (Ollama) ollama premium parallel

Messy e-commerce order exports → schema guess + cleaned rows + anomalies, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Schema Guesser, Cleaner, Anomaly Spotter. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Schema Guesser (qwen2.5-coder:3b) — Guess a reasonable schema (column names + types) for this e-commerce order exports sample.
  • Cleaner (llama3.2:1b) — Reformat this e-commerce order exports sample into clean, consistent rows.
  • Anomaly Spotter (llama3.2:3b) — Flag rows/values in this e-commerce order exports sample that look wrong or inconsistent.
Financial Transaction Records Cleaner (Ollama) ollama premium parallel

Messy financial transaction records → schema guess + cleaned rows + anomalies, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Schema Guesser, Cleaner, Anomaly Spotter. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Schema Guesser (gemma2:2b) — Guess a reasonable schema (column names + types) for this financial transaction records sample.
  • Cleaner (qwen2.5:1.5b) — Reformat this financial transaction records sample into clean, consistent rows.
  • Anomaly Spotter (qwen2.5:3b) — Flag rows/values in this financial transaction records sample that look wrong or inconsistent.
Inventory Stock Reports Cleaner (Ollama) ollama premium parallel

Messy inventory stock reports → schema guess + cleaned rows + anomalies, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Schema Guesser, Cleaner, Anomaly Spotter. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Schema Guesser (qwen2.5-coder:3b) — Guess a reasonable schema (column names + types) for this inventory stock reports sample.
  • Cleaner (llama3.2:1b) — Reformat this inventory stock reports sample into clean, consistent rows.
  • Anomaly Spotter (llama3.2:3b) — Flag rows/values in this inventory stock reports sample that look wrong or inconsistent.
Iot Device Logs Cleaner (Ollama) ollama premium parallel

Messy IoT device logs → schema guess + cleaned rows + anomalies, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Schema Guesser, Cleaner, Anomaly Spotter. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Schema Guesser (deepseek-r1:1.5b) — Guess a reasonable schema (column names + types) for this IoT device logs sample.
  • Cleaner (smollm2:1.7b) — Reformat this IoT device logs sample into clean, consistent rows.
  • Anomaly Spotter (qwen2.5-coder:1.5b) — Flag rows/values in this IoT device logs sample that look wrong or inconsistent.
Sensor Telemetry Readings Extraction (Ollama) ollama premium parallel

Messy sensor telemetry readings → structured tokens + human summary + timestamps, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Summarizer, Timestamp Finder. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Extractor (llama3.2:3b) — Pull structured fields out of this sensor telemetry readings sample, as a table.
  • Summarizer (gemma2:2b) — Summarize what's happening in this sensor telemetry readings sample, in plain English.
  • Timestamp Finder (qwen2.5:1.5b) — List every timestamp/date found in this sensor telemetry readings sample.
Server Access Logs Extraction — Lite (Ollama) ollama premium parallel

Messy server access logs → structured tokens + human summary + timestamps, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Summarizer, Timestamp Finder. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Extractor (qwen2.5-coder:1.5b) — Pull structured fields out of this server access logs sample, as a table.
  • Summarizer (qwen2.5-coder:3b) — Summarize what's happening in this server access logs sample, in plain English.
  • Timestamp Finder (llama3.2:1b) — List every timestamp/date found in this server access logs sample.
Server Access Logs Extraction — Pro (Ollama) ollama premium parallel

Messy server access logs → structured tokens + human summary + timestamps, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Summarizer, Timestamp Finder. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Extractor (llama3.2:3b) — Pull structured fields out of this server access logs sample, as a table.
  • Summarizer (gemma2:2b) — Summarize what's happening in this server access logs sample, in plain English.
  • Timestamp Finder (qwen2.5:1.5b) — List every timestamp/date found in this server access logs sample.
Shipment Tracking Logs Digest (Ollama) ollama premium parallel

shipment tracking logs → summary + notable claims + what to verify, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Claim Spotter, Verifier. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Summarizer (llama3.2:1b) — Summarize the key findings visible in this shipment tracking logs sample.
  • Claim Spotter (llama3.2:3b) — List any strong/surprising claims implied by this shipment tracking logs sample.
  • Verifier (gemma2:2b) — List what in this shipment tracking logs sample would need independent verification before acting on it.
Social Media Engagement Exports Extraction (Ollama) ollama premium parallel

Messy social media engagement exports → structured tokens + human summary + timestamps, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Summarizer, Timestamp Finder. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Extractor (qwen2.5:3b) — Pull structured fields out of this social media engagement exports sample, as a table.
  • Summarizer (deepseek-r1:1.5b) — Summarize what's happening in this social media engagement exports sample, in plain English.
  • Timestamp Finder (smollm2:1.7b) — List every timestamp/date found in this social media engagement exports sample.
Survey Response Exports Digest (Ollama) ollama premium parallel

survey response exports → summary + notable claims + what to verify, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Claim Spotter, Verifier. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Summarizer (qwen2.5:1.5b) — Summarize the key findings visible in this survey response exports sample.
  • Claim Spotter (qwen2.5:3b) — List any strong/surprising claims implied by this survey response exports sample.
  • Verifier (deepseek-r1:1.5b) — List what in this survey response exports sample would need independent verification before acting on it.
Website Analytics Exports Extraction (Ollama) ollama premium parallel

Messy website analytics exports → structured tokens + human summary + timestamps, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Summarizer, Timestamp Finder. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Extractor (qwen2.5-coder:1.5b) — Pull structured fields out of this website analytics exports sample, as a table.
  • Summarizer (qwen2.5-coder:3b) — Summarize what's happening in this website analytics exports sample, in plain English.
  • Timestamp Finder (llama3.2:1b) — List every timestamp/date found in this website analytics exports sample.

Image Prompting (18)

Anime/Manga Concepts x3 (Ollama) ollama premium parallel

Idea → 3 distinct anime/manga prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A (deepseek-r1:1.5b) — Write a anime/manga-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B (smollm2:1.7b) — Write a anime/manga-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C (qwen2.5-coder:1.5b) — Write a anime/manga-style image prompt for this idea, direction C (unexpected angle).
Art Nouveau Prompt Studio (Ollama) ollama premium sequential

Idea → detailed art nouveau image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer (qwen2.5-coder:1.5b) — Turn this idea into a detailed art nouveau-style image generation prompt.
  • Negative Prompt Writer (qwen2.5-coder:3b) — Write a negative prompt to pair with the art nouveau prompt above — what to avoid.
Charcoal Sketch Storyboard (Ollama) ollama premium sequential

Concept → scenes → charcoal sketch-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown (llama3.2:1b) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer (llama3.2:3b) — Write a charcoal sketch-style image prompt for each scene above.
Claymation Prompt Studio (Ollama) ollama premium sequential

Idea → detailed claymation image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer (llama3.2:3b) — Turn this idea into a detailed claymation-style image generation prompt.
  • Negative Prompt Writer (gemma2:2b) — Write a negative prompt to pair with the claymation prompt above — what to avoid.
Concept Art Storyboard (Ollama) ollama premium sequential

Concept → scenes → concept art-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown (smollm2:1.7b) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer (qwen2.5-coder:1.5b) — Write a concept art-style image prompt for each scene above.
Cyberpunk Neon Storyboard (Ollama) ollama premium sequential

Concept → scenes → cyberpunk neon-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown (llama3.2:1b) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer (llama3.2:3b) — Write a cyberpunk neon-style image prompt for each scene above.
Film Noir Storyboard (Ollama) ollama premium sequential

Concept → scenes → film noir-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown (smollm2:1.7b) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer (qwen2.5-coder:1.5b) — Write a film noir-style image prompt for each scene above.
Flat Vector Illustration Prompt Studio (Ollama) ollama premium sequential

Idea → detailed flat vector illustration image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer (llama3.2:3b) — Turn this idea into a detailed flat vector illustration-style image generation prompt.
  • Negative Prompt Writer (gemma2:2b) — Write a negative prompt to pair with the flat vector illustration prompt above — what to avoid.
Isometric 3D Render Storyboard (Ollama) ollama premium sequential

Concept → scenes → isometric 3D render-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown (qwen2.5:1.5b) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer (qwen2.5:3b) — Write a isometric 3D render-style image prompt for each scene above.
Low-Poly 3D Concepts x3 (Ollama) ollama premium parallel

Idea → 3 distinct low-poly 3D prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A (qwen2.5-coder:3b) — Write a low-poly 3D-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B (llama3.2:1b) — Write a low-poly 3D-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C (llama3.2:3b) — Write a low-poly 3D-style image prompt for this idea, direction C (unexpected angle).
Minimalist Line Art Prompt Studio (Ollama) ollama premium sequential

Idea → detailed minimalist line art image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer (qwen2.5:3b) — Turn this idea into a detailed minimalist line art-style image generation prompt.
  • Negative Prompt Writer (deepseek-r1:1.5b) — Write a negative prompt to pair with the minimalist line art prompt above — what to avoid.
Oil Painting Concepts x3 (Ollama) ollama premium parallel

Idea → 3 distinct oil painting prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A (gemma2:2b) — Write a oil painting-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B (qwen2.5:1.5b) — Write a oil painting-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C (qwen2.5:3b) — Write a oil painting-style image prompt for this idea, direction C (unexpected angle).
Photorealistic Prompt Studio (Ollama) ollama premium sequential

Idea → detailed photorealistic image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer (qwen2.5-coder:1.5b) — Turn this idea into a detailed photorealistic-style image generation prompt.
  • Negative Prompt Writer (qwen2.5-coder:3b) — Write a negative prompt to pair with the photorealistic prompt above — what to avoid.
Pixel Art Prompt Studio (Ollama) ollama premium sequential

Idea → detailed pixel art image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer (qwen2.5:3b) — Turn this idea into a detailed pixel art-style image generation prompt.
  • Negative Prompt Writer (deepseek-r1:1.5b) — Write a negative prompt to pair with the pixel art prompt above — what to avoid.
Pop Art Concepts x3 (Ollama) ollama premium parallel

Idea → 3 distinct pop art prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A (deepseek-r1:1.5b) — Write a pop art-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B (smollm2:1.7b) — Write a pop art-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C (qwen2.5-coder:1.5b) — Write a pop art-style image prompt for this idea, direction C (unexpected angle).
Steampunk Storyboard (Ollama) ollama premium sequential

Concept → scenes → steampunk-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown (qwen2.5:1.5b) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer (qwen2.5:3b) — Write a steampunk-style image prompt for each scene above.
Vaporwave Concepts x3 (Ollama) ollama premium parallel

Idea → 3 distinct vaporwave prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A (gemma2:2b) — Write a vaporwave-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B (qwen2.5:1.5b) — Write a vaporwave-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C (qwen2.5:3b) — Write a vaporwave-style image prompt for this idea, direction C (unexpected angle).
Watercolor Painting Concepts x3 (Ollama) ollama premium parallel

Idea → 3 distinct watercolor painting prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A (qwen2.5-coder:3b) — Write a watercolor painting-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B (llama3.2:1b) — Write a watercolor painting-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C (llama3.2:3b) — Write a watercolor painting-style image prompt for this idea, direction C (unexpected angle).

Language & Translation (30)

Arabic Grammar & Clarity — Lite (Ollama) ollama premium sequential

Text in Arabic → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer (gemma2:2b) — Fix grammar/spelling errors in this Arabic text. Output corrected text only.
  • Clarity Editor (qwen2.5:1.5b) — Tighten this Arabic text for clarity — cut redundancy, keep meaning.
Arabic Grammar & Clarity — Pro (Ollama) ollama premium sequential

Text in Arabic → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer (qwen2.5:3b) — Fix grammar/spelling errors in this Arabic text. Output corrected text only.
  • Clarity Editor (deepseek-r1:1.5b) — Tighten this Arabic text for clarity — cut redundancy, keep meaning.
Dutch Translator Pro (Ollama) ollama premium sequential

Translate to Dutch → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator (qwen2.5-coder:3b) — Translate the given text into Dutch. Natural, not literal.
  • Back-Translator (llama3.2:1b) — Translate the Dutch translation back into English.
  • Drift Fixer (llama3.2:3b) — Compare original vs back-translation; fix the Dutch version if meaning drifted.
French Localization — Lite (Ollama) ollama premium parallel

UI text → French + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer (qwen2.5-coder:3b) — Translate this UI text into French, concise and natural for a UI label.
  • Tooltip Writer (llama3.2:1b) — Write a short French tooltip/help text version of this UI text.
French Localization — Pro (Ollama) ollama premium parallel

UI text → French + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer (llama3.2:3b) — Translate this UI text into French, concise and natural for a UI label.
  • Tooltip Writer (gemma2:2b) — Write a short French tooltip/help text version of this UI text.
German Tone Rewriter — Lite (Ollama) ollama premium parallel

Text → formal + casual German versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice (gemma2:2b) — Translate/rewrite this text into formal, professional German.
  • Casual Voice (qwen2.5:1.5b) — Translate/rewrite this text into casual, everyday German.
German Tone Rewriter — Pro (Ollama) ollama premium parallel

Text → formal + casual German versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice (llama3.2:1b) — Translate/rewrite this text into formal, professional German.
  • Casual Voice (llama3.2:3b) — Translate/rewrite this text into casual, everyday German.
Greek Localization (Ollama) ollama premium parallel

UI text → Greek + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer (deepseek-r1:1.5b) — Translate this UI text into Greek, concise and natural for a UI label.
  • Tooltip Writer (smollm2:1.7b) — Write a short Greek tooltip/help text version of this UI text.
Hebrew Subtitle Pass — Lite (Ollama) ollama premium sequential

Transcript lines → Hebrew translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator (qwen2.5:1.5b) — Translate these subtitle lines into Hebrew, keeping line breaks intact.
  • Format Checker (qwen2.5:3b) — Verify the Hebrew lines still match the original line count/timing markers.
Hebrew Subtitle Pass — Pro (Ollama) ollama premium sequential

Transcript lines → Hebrew translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator (llama3.2:3b) — Translate these subtitle lines into Hebrew, keeping line breaks intact.
  • Format Checker (gemma2:2b) — Verify the Hebrew lines still match the original line count/timing markers.
Hindi Subtitle Pass (Ollama) ollama premium sequential

Transcript lines → Hindi translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator (gemma2:2b) — Translate these subtitle lines into Hindi, keeping line breaks intact.
  • Format Checker (qwen2.5:1.5b) — Verify the Hindi lines still match the original line count/timing markers.
Italian Localization — Lite (Ollama) ollama premium parallel

UI text → Italian + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer (smollm2:1.7b) — Translate this UI text into Italian, concise and natural for a UI label.
  • Tooltip Writer (qwen2.5-coder:1.5b) — Write a short Italian tooltip/help text version of this UI text.
Italian Localization — Pro (Ollama) ollama premium parallel

UI text → Italian + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer (qwen2.5:3b) — Translate this UI text into Italian, concise and natural for a UI label.
  • Tooltip Writer (deepseek-r1:1.5b) — Write a short Italian tooltip/help text version of this UI text.
Japanese Translator Pro — Lite (Ollama) ollama premium sequential

Translate to Japanese → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator (deepseek-r1:1.5b) — Translate the given text into Japanese. Natural, not literal.
  • Back-Translator (smollm2:1.7b) — Translate the Japanese translation back into English.
  • Drift Fixer (qwen2.5-coder:1.5b) — Compare original vs back-translation; fix the Japanese version if meaning drifted.
Japanese Translator Pro — Pro (Ollama) ollama premium sequential

Translate to Japanese → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator (qwen2.5:1.5b) — Translate the given text into Japanese. Natural, not literal.
  • Back-Translator (qwen2.5:3b) — Translate the Japanese translation back into English.
  • Drift Fixer (deepseek-r1:1.5b) — Compare original vs back-translation; fix the Japanese version if meaning drifted.
Korean Grammar & Clarity — Lite (Ollama) ollama premium sequential

Text in Korean → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer (llama3.2:1b) — Fix grammar/spelling errors in this Korean text. Output corrected text only.
  • Clarity Editor (llama3.2:3b) — Tighten this Korean text for clarity — cut redundancy, keep meaning.
Korean Grammar & Clarity — Pro (Ollama) ollama premium sequential

Text in Korean → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer (qwen2.5-coder:1.5b) — Fix grammar/spelling errors in this Korean text. Output corrected text only.
  • Clarity Editor (qwen2.5-coder:3b) — Tighten this Korean text for clarity — cut redundancy, keep meaning.
Mandarin Chinese Grammar & Clarity (Ollama) ollama premium sequential

Text in Mandarin Chinese → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer (qwen2.5:1.5b) — Fix grammar/spelling errors in this Mandarin Chinese text. Output corrected text only.
  • Clarity Editor (qwen2.5:3b) — Tighten this Mandarin Chinese text for clarity — cut redundancy, keep meaning.
Polish Localization (Ollama) ollama premium parallel

UI text → Polish + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer (llama3.2:1b) — Translate this UI text into Polish, concise and natural for a UI label.
  • Tooltip Writer (llama3.2:3b) — Write a short Polish tooltip/help text version of this UI text.
Portuguese Tone Rewriter — Lite (Ollama) ollama premium parallel

Text → formal + casual Portuguese versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice (deepseek-r1:1.5b) — Translate/rewrite this text into formal, professional Portuguese.
  • Casual Voice (smollm2:1.7b) — Translate/rewrite this text into casual, everyday Portuguese.
Portuguese Tone Rewriter — Pro (Ollama) ollama premium parallel

Text → formal + casual Portuguese versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice (qwen2.5-coder:1.5b) — Translate/rewrite this text into formal, professional Portuguese.
  • Casual Voice (qwen2.5-coder:3b) — Translate/rewrite this text into casual, everyday Portuguese.
Russian Subtitle Pass — Lite (Ollama) ollama premium sequential

Transcript lines → Russian translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator (smollm2:1.7b) — Translate these subtitle lines into Russian, keeping line breaks intact.
  • Format Checker (qwen2.5-coder:1.5b) — Verify the Russian lines still match the original line count/timing markers.
Russian Subtitle Pass — Pro (Ollama) ollama premium sequential

Transcript lines → Russian translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator (qwen2.5-coder:3b) — Translate these subtitle lines into Russian, keeping line breaks intact.
  • Format Checker (llama3.2:1b) — Verify the Russian lines still match the original line count/timing markers.
Spanish Translator Pro — Lite (Ollama) ollama premium sequential

Translate to Spanish → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator (qwen2.5-coder:1.5b) — Translate the given text into Spanish. Natural, not literal.
  • Back-Translator (qwen2.5-coder:3b) — Translate the Spanish translation back into English.
  • Drift Fixer (llama3.2:1b) — Compare original vs back-translation; fix the Spanish version if meaning drifted.
Spanish Translator Pro — Pro (Ollama) ollama premium sequential

Translate to Spanish → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator (llama3.2:1b) — Translate the given text into Spanish. Natural, not literal.
  • Back-Translator (llama3.2:3b) — Translate the Spanish translation back into English.
  • Drift Fixer (gemma2:2b) — Compare original vs back-translation; fix the Spanish version if meaning drifted.
Swedish Translator Pro (Ollama) ollama premium sequential

Translate to Swedish → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator (qwen2.5:3b) — Translate the given text into Swedish. Natural, not literal.
  • Back-Translator (deepseek-r1:1.5b) — Translate the Swedish translation back into English.
  • Drift Fixer (smollm2:1.7b) — Compare original vs back-translation; fix the Swedish version if meaning drifted.
Thai Subtitle Pass (Ollama) ollama premium sequential

Transcript lines → Thai translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator (qwen2.5-coder:1.5b) — Translate these subtitle lines into Thai, keeping line breaks intact.
  • Format Checker (qwen2.5-coder:3b) — Verify the Thai lines still match the original line count/timing markers.
Turkish Tone Rewriter (Ollama) ollama premium parallel

Text → formal + casual Turkish versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice (llama3.2:3b) — Translate/rewrite this text into formal, professional Turkish.
  • Casual Voice (gemma2:2b) — Translate/rewrite this text into casual, everyday Turkish.
Ukrainian Grammar & Clarity (Ollama) ollama premium sequential

Text in Ukrainian → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer (qwen2.5-coder:3b) — Fix grammar/spelling errors in this Ukrainian text. Output corrected text only.
  • Clarity Editor (llama3.2:1b) — Tighten this Ukrainian text for clarity — cut redundancy, keep meaning.
Vietnamese Tone Rewriter (Ollama) ollama premium parallel

Text → formal + casual Vietnamese versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice (smollm2:1.7b) — Translate/rewrite this text into formal, professional Vietnamese.
  • Casual Voice (qwen2.5-coder:1.5b) — Translate/rewrite this text into casual, everyday Vietnamese.

Learning & Study (18)

Bayesian Inference Debate (Ollama) ollama premium judge

3 agents argue about Bayesian inference; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A (qwen2.5:1.5b) — Give the strongest argument/explanation of Bayesian inference, angle A.
  • Advocate B (qwen2.5:3b) — Give the strongest argument/explanation of Bayesian inference, angle B, different framing.
Blockchain Consensus — 3 Levels (Ollama) ollama premium parallel

Explain blockchain consensus at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher (llama3.2:3b) — Explain blockchain consensus like the reader is 10 years old. No jargon.
  • Intermediate Teacher (gemma2:2b) — Explain blockchain consensus for someone with basic background — some technical terms OK.
  • Expert (qwen2.5:1.5b) — Explain blockchain consensus at expert depth, precise terminology, no hand-holding.
Compound Interest Debate (Ollama) ollama premium judge

3 agents argue about compound interest; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A (llama3.2:1b) — Give the strongest argument/explanation of compound interest, angle A.
  • Advocate B (llama3.2:3b) — Give the strongest argument/explanation of compound interest, angle B, different framing.
Dna Transcription Debate (Ollama) ollama premium judge

3 agents argue about DNA transcription; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A (llama3.2:1b) — Give the strongest argument/explanation of DNA transcription, angle A.
  • Advocate B (llama3.2:3b) — Give the strongest argument/explanation of DNA transcription, angle B, different framing.
Game Theory Nash Equilibrium Flashcards (Ollama) ollama premium sequential

Text about game theory Nash equilibrium → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor (qwen2.5-coder:3b) — Extract the key facts about game theory Nash equilibrium from the given text, as bullets.
  • Flashcard Writer (llama3.2:1b) — Turn those facts into Q/A flashcards about game theory Nash equilibrium (JSON array of {q,a}).
Greenhouse Effect Flashcards (Ollama) ollama premium sequential

Text about greenhouse effect → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor (deepseek-r1:1.5b) — Extract the key facts about greenhouse effect from the given text, as bullets.
  • Flashcard Writer (smollm2:1.7b) — Turn those facts into Q/A flashcards about greenhouse effect (JSON array of {q,a}).
Inflation And Monetary Policy — 3 Levels (Ollama) ollama premium parallel

Explain inflation and monetary policy at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher (qwen2.5-coder:1.5b) — Explain inflation and monetary policy like the reader is 10 years old. No jargon.
  • Intermediate Teacher (qwen2.5-coder:3b) — Explain inflation and monetary policy for someone with basic background — some technical terms OK.
  • Expert (llama3.2:1b) — Explain inflation and monetary policy at expert depth, precise terminology, no hand-holding.
Neural Network Backpropagation Flashcards (Ollama) ollama premium sequential

Text about neural network backpropagation → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor (deepseek-r1:1.5b) — Extract the key facts about neural network backpropagation from the given text, as bullets.
  • Flashcard Writer (smollm2:1.7b) — Turn those facts into Q/A flashcards about neural network backpropagation (JSON array of {q,a}).
Photosynthesis — 3 Levels (Ollama) ollama premium parallel

Explain photosynthesis at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher (qwen2.5-coder:1.5b) — Explain photosynthesis like the reader is 10 years old. No jargon.
  • Intermediate Teacher (qwen2.5-coder:3b) — Explain photosynthesis for someone with basic background — some technical terms OK.
  • Expert (llama3.2:1b) — Explain photosynthesis at expert depth, precise terminology, no hand-holding.
Plate Tectonics Flashcards (Ollama) ollama premium sequential

Text about plate tectonics → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor (gemma2:2b) — Extract the key facts about plate tectonics from the given text, as bullets.
  • Flashcard Writer (qwen2.5:1.5b) — Turn those facts into Q/A flashcards about plate tectonics (JSON array of {q,a}).
Quantum Entanglement Flashcards (Ollama) ollama premium sequential

Text about quantum entanglement → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor (gemma2:2b) — Extract the key facts about quantum entanglement from the given text, as bullets.
  • Flashcard Writer (qwen2.5:1.5b) — Turn those facts into Q/A flashcards about quantum entanglement (JSON array of {q,a}).
Recursion Flashcards (Ollama) ollama premium sequential

Text about recursion → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor (qwen2.5-coder:3b) — Extract the key facts about recursion from the given text, as bullets.
  • Flashcard Writer (llama3.2:1b) — Turn those facts into Q/A flashcards about recursion (JSON array of {q,a}).
Supply And Demand Debate (Ollama) ollama premium judge

3 agents argue about supply and demand; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A (qwen2.5:1.5b) — Give the strongest argument/explanation of supply and demand, angle A.
  • Advocate B (qwen2.5:3b) — Give the strongest argument/explanation of supply and demand, angle B, different framing.
Tcp/Ip Handshake Debate (Ollama) ollama premium judge

3 agents argue about TCP/IP handshake; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A (smollm2:1.7b) — Give the strongest argument/explanation of TCP/IP handshake, angle A.
  • Advocate B (qwen2.5-coder:1.5b) — Give the strongest argument/explanation of TCP/IP handshake, angle B, different framing.
The Cap Theorem — 3 Levels (Ollama) ollama premium parallel

Explain the CAP theorem at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher (llama3.2:3b) — Explain the CAP theorem like the reader is 10 years old. No jargon.
  • Intermediate Teacher (gemma2:2b) — Explain the CAP theorem for someone with basic background — some technical terms OK.
  • Expert (qwen2.5:1.5b) — Explain the CAP theorem at expert depth, precise terminology, no hand-holding.
The French Revolution Causes — 3 Levels (Ollama) ollama premium parallel

Explain the French Revolution causes at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher (qwen2.5:3b) — Explain the French Revolution causes like the reader is 10 years old. No jargon.
  • Intermediate Teacher (deepseek-r1:1.5b) — Explain the French Revolution causes for someone with basic background — some technical terms OK.
  • Expert (smollm2:1.7b) — Explain the French Revolution causes at expert depth, precise terminology, no hand-holding.
The Krebs Cycle Debate (Ollama) ollama premium judge

3 agents argue about the Krebs cycle; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A (smollm2:1.7b) — Give the strongest argument/explanation of the Krebs cycle, angle A.
  • Advocate B (qwen2.5-coder:1.5b) — Give the strongest argument/explanation of the Krebs cycle, angle B, different framing.
The Water Cycle — 3 Levels (Ollama) ollama premium parallel

Explain the water cycle at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher (qwen2.5:3b) — Explain the water cycle like the reader is 10 years old. No jargon.
  • Intermediate Teacher (deepseek-r1:1.5b) — Explain the water cycle for someone with basic background — some technical terms OK.
  • Expert (smollm2:1.7b) — Explain the water cycle at expert depth, precise terminology, no hand-holding.

Office & Docs (37)

Board Update Extractor — Lite (Ollama) ollama premium parallel

Messy a board update text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor (qwen2.5:3b) — Extract structured line items from this a board update as a table.
  • Date Finder (deepseek-r1:1.5b) — List every date/deadline mentioned in this a board update.
  • Anomaly Spotter (smollm2:1.7b) — Flag anything in this a board update that looks inconsistent or wrong.
Board Update Extractor — Pro (Ollama) ollama premium parallel

Messy a board update text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor (gemma2:2b) — Extract structured line items from this a board update as a table.
  • Date Finder (qwen2.5:1.5b) — List every date/deadline mentioned in this a board update.
  • Anomaly Spotter (qwen2.5:3b) — Flag anything in this a board update that looks inconsistent or wrong.
Client Proposal Triage — Lite (Ollama) ollama premium parallel

Messy a client proposal text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer (qwen2.5-coder:1.5b) — Summarize this a client proposal in exactly 3 bullets.
  • Action Extractor (qwen2.5-coder:3b) — List only concrete action items found in this a client proposal, as bullets.
  • Tone Reader (llama3.2:1b) — State the tone of this a client proposal in one sentence (e.g. urgent, neutral, frustrated).
Client Proposal Triage — Pro (Ollama) ollama premium parallel

Messy a client proposal text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer (llama3.2:1b) — Summarize this a client proposal in exactly 3 bullets.
  • Action Extractor (llama3.2:3b) — List only concrete action items found in this a client proposal, as bullets.
  • Tone Reader (gemma2:2b) — State the tone of this a client proposal in one sentence (e.g. urgent, neutral, frustrated).
Compliance Checklist Extractor (Ollama) ollama premium parallel

Messy a compliance checklist text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor (qwen2.5-coder:1.5b) — Extract structured line items from this a compliance checklist as a table.
  • Date Finder (qwen2.5-coder:3b) — List every date/deadline mentioned in this a compliance checklist.
  • Anomaly Spotter (llama3.2:1b) — Flag anything in this a compliance checklist that looks inconsistent or wrong.
Customer Complaint Response Rewriter — Lite (Ollama) ollama premium sequential

Rough a customer complaint response → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher (deepseek-r1:1.5b) — Polish this rough a customer complaint response draft for grammar and flow.
  • Keyword Pass (smollm2:1.7b) — Add/verify relevant keywords a reader or search would expect in this a customer complaint response.
Customer Complaint Response Rewriter — Pro (Ollama) ollama premium sequential

Rough a customer complaint response → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher (qwen2.5:1.5b) — Polish this rough a customer complaint response draft for grammar and flow.
  • Keyword Pass (qwen2.5:3b) — Add/verify relevant keywords a reader or search would expect in this a customer complaint response.
Executive Summary Rewriter (Ollama) ollama premium sequential

Rough an executive summary → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher (qwen2.5-coder:3b) — Polish this rough an executive summary draft for grammar and flow.
  • Keyword Pass (llama3.2:1b) — Add/verify relevant keywords a reader or search would expect in this an executive summary.
Grant Application Triage — Lite (Ollama) ollama premium parallel

Messy a grant application text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer (llama3.2:3b) — Summarize this a grant application in exactly 3 bullets.
  • Action Extractor (gemma2:2b) — List only concrete action items found in this a grant application, as bullets.
  • Tone Reader (qwen2.5:1.5b) — State the tone of this a grant application in one sentence (e.g. urgent, neutral, frustrated).
Grant Application Triage — Pro (Ollama) ollama premium parallel

Messy a grant application text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer (qwen2.5-coder:3b) — Summarize this a grant application in exactly 3 bullets.
  • Action Extractor (llama3.2:1b) — List only concrete action items found in this a grant application, as bullets.
  • Tone Reader (llama3.2:3b) — State the tone of this a grant application in one sentence (e.g. urgent, neutral, frustrated).
Internal Memo Extractor — Lite (Ollama) ollama premium parallel

Messy an internal memo text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor (qwen2.5:1.5b) — Extract structured line items from this an internal memo as a table.
  • Date Finder (qwen2.5:3b) — List every date/deadline mentioned in this an internal memo.
  • Anomaly Spotter (deepseek-r1:1.5b) — Flag anything in this an internal memo that looks inconsistent or wrong.
Internal Memo Extractor — Pro (Ollama) ollama premium parallel

Messy an internal memo text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor (llama3.2:3b) — Extract structured line items from this an internal memo as a table.
  • Date Finder (gemma2:2b) — List every date/deadline mentioned in this an internal memo.
  • Anomaly Spotter (qwen2.5:1.5b) — Flag anything in this an internal memo that looks inconsistent or wrong.
Job Posting Triage — Lite (Ollama) ollama premium parallel

Messy a job posting text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer (deepseek-r1:1.5b) — Summarize this a job posting in exactly 3 bullets.
  • Action Extractor (smollm2:1.7b) — List only concrete action items found in this a job posting, as bullets.
  • Tone Reader (qwen2.5-coder:1.5b) — State the tone of this a job posting in one sentence (e.g. urgent, neutral, frustrated).
Job Posting Triage — Pro (Ollama) ollama premium parallel

Messy a job posting text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer (qwen2.5:1.5b) — Summarize this a job posting in exactly 3 bullets.
  • Action Extractor (qwen2.5:3b) — List only concrete action items found in this a job posting, as bullets.
  • Tone Reader (deepseek-r1:1.5b) — State the tone of this a job posting in one sentence (e.g. urgent, neutral, frustrated).
Onboarding Checklist Composer — Lite (Ollama) ollama premium sequential

Intent → draft an onboarding checklist → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter (llama3.2:1b) — Write a first draft of an onboarding checklist given the stated intent.
  • Polisher (llama3.2:3b) — Polish the tone of this an onboarding checklist draft — professional, clear, no filler.
  • Summarizer (gemma2:2b) — Write a one-line subject and a 2-sentence TL;DR for this an onboarding checklist.
Onboarding Checklist Composer — Pro (Ollama) ollama premium sequential

Intent → draft an onboarding checklist → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter (gemma2:2b) — Write a first draft of an onboarding checklist given the stated intent.
  • Polisher (qwen2.5:1.5b) — Polish the tone of this an onboarding checklist draft — professional, clear, no filler.
  • Summarizer (qwen2.5:3b) — Write a one-line subject and a 2-sentence TL;DR for this an onboarding checklist.
Partnership Agreement Summary Rewriter — Lite (Ollama) ollama premium sequential

Rough a partnership agreement summary → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher (llama3.2:1b) — Polish this rough a partnership agreement summary draft for grammar and flow.
  • Keyword Pass (llama3.2:3b) — Add/verify relevant keywords a reader or search would expect in this a partnership agreement summary.
Partnership Agreement Summary Rewriter — Pro (Ollama) ollama premium sequential

Rough a partnership agreement summary → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher (qwen2.5-coder:1.5b) — Polish this rough a partnership agreement summary draft for grammar and flow.
  • Keyword Pass (qwen2.5-coder:3b) — Add/verify relevant keywords a reader or search would expect in this a partnership agreement summary.
Performance Review Composer — Lite (Ollama) ollama premium sequential

Intent → draft a performance review → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter (qwen2.5:3b) — Write a first draft of a performance review given the stated intent.
  • Polisher (deepseek-r1:1.5b) — Polish the tone of this a performance review draft — professional, clear, no filler.
  • Summarizer (smollm2:1.7b) — Write a one-line subject and a 2-sentence TL;DR for this a performance review.
Performance Review Composer — Pro (Ollama) ollama premium sequential

Intent → draft a performance review → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter (smollm2:1.7b) — Write a first draft of a performance review given the stated intent.
  • Polisher (qwen2.5-coder:1.5b) — Polish the tone of this a performance review draft — professional, clear, no filler.
  • Summarizer (qwen2.5-coder:3b) — Write a one-line subject and a 2-sentence TL;DR for this a performance review.
Policy Document QA — Lite (Ollama) ollama premium parallel

Long a policy document → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer (deepseek-r1:1.5b) — Write a 2-sentence TL;DR of this a policy document.
  • Outliner (smollm2:1.7b) — Extract a section-by-section outline of this a policy document.
  • Term Extractor (qwen2.5-coder:1.5b) — List key terms/jargon used in this a policy document, with one-line definitions.
Policy Document QA — Pro (Ollama) ollama premium parallel

Long a policy document → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer (qwen2.5-coder:1.5b) — Write a 2-sentence TL;DR of this a policy document.
  • Outliner (qwen2.5-coder:3b) — Extract a section-by-section outline of this a policy document.
  • Term Extractor (llama3.2:1b) — List key terms/jargon used in this a policy document, with one-line definitions.
Press Release Rewriter — Lite (Ollama) ollama premium sequential

Rough a press release → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher (gemma2:2b) — Polish this rough a press release draft for grammar and flow.
  • Keyword Pass (qwen2.5:1.5b) — Add/verify relevant keywords a reader or search would expect in this a press release.
Press Release Rewriter — Pro (Ollama) ollama premium sequential

Rough a press release → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher (qwen2.5:3b) — Polish this rough a press release draft for grammar and flow.
  • Keyword Pass (deepseek-r1:1.5b) — Add/verify relevant keywords a reader or search would expect in this a press release.
Project Charter Composer — Lite (Ollama) ollama premium sequential

Intent → draft a project charter → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter (deepseek-r1:1.5b) — Write a first draft of a project charter given the stated intent.
  • Polisher (smollm2:1.7b) — Polish the tone of this a project charter draft — professional, clear, no filler.
  • Summarizer (qwen2.5-coder:1.5b) — Write a one-line subject and a 2-sentence TL;DR for this a project charter.
Project Charter Composer — Pro (Ollama) ollama premium sequential

Intent → draft a project charter → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter (qwen2.5-coder:1.5b) — Write a first draft of a project charter given the stated intent.
  • Polisher (qwen2.5-coder:3b) — Polish the tone of this a project charter draft — professional, clear, no filler.
  • Summarizer (llama3.2:1b) — Write a one-line subject and a 2-sentence TL;DR for this a project charter.
Risk Assessment QA (Ollama) ollama premium parallel

Long a risk assessment → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer (smollm2:1.7b) — Write a 2-sentence TL;DR of this a risk assessment.
  • Outliner (qwen2.5-coder:1.5b) — Extract a section-by-section outline of this a risk assessment.
  • Term Extractor (qwen2.5-coder:3b) — List key terms/jargon used in this a risk assessment, with one-line definitions.
Status Report Composer — Lite (Ollama) ollama premium sequential

Intent → draft a status report → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter (llama3.2:3b) — Write a first draft of a status report given the stated intent.
  • Polisher (gemma2:2b) — Polish the tone of this a status report draft — professional, clear, no filler.
  • Summarizer (qwen2.5:1.5b) — Write a one-line subject and a 2-sentence TL;DR for this a status report.
Status Report Composer — Pro (Ollama) ollama premium sequential

Intent → draft a status report → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter (qwen2.5-coder:3b) — Write a first draft of a status report given the stated intent.
  • Polisher (llama3.2:1b) — Polish the tone of this a status report draft — professional, clear, no filler.
  • Summarizer (llama3.2:3b) — Write a one-line subject and a 2-sentence TL;DR for this a status report.
Support Ticket Reply QA — Lite (Ollama) ollama premium parallel

Long a support ticket reply → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer (llama3.2:1b) — Write a 2-sentence TL;DR of this a support ticket reply.
  • Outliner (llama3.2:3b) — Extract a section-by-section outline of this a support ticket reply.
  • Term Extractor (gemma2:2b) — List key terms/jargon used in this a support ticket reply, with one-line definitions.
Support Ticket Reply QA — Pro (Ollama) ollama premium parallel

Long a support ticket reply → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer (gemma2:2b) — Write a 2-sentence TL;DR of this a support ticket reply.
  • Outliner (qwen2.5:1.5b) — Extract a section-by-section outline of this a support ticket reply.
  • Term Extractor (qwen2.5:3b) — List key terms/jargon used in this a support ticket reply, with one-line definitions.
Training Outline Triage — Lite (Ollama) ollama premium parallel

Messy a training outline text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer (qwen2.5:3b) — Summarize this a training outline in exactly 3 bullets.
  • Action Extractor (deepseek-r1:1.5b) — List only concrete action items found in this a training outline, as bullets.
  • Tone Reader (smollm2:1.7b) — State the tone of this a training outline in one sentence (e.g. urgent, neutral, frustrated).
Training Outline Triage — Pro (Ollama) ollama premium parallel

Messy a training outline text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer (smollm2:1.7b) — Summarize this a training outline in exactly 3 bullets.
  • Action Extractor (qwen2.5-coder:1.5b) — List only concrete action items found in this a training outline, as bullets.
  • Tone Reader (qwen2.5-coder:3b) — State the tone of this a training outline in one sentence (e.g. urgent, neutral, frustrated).
User Manual Section Extractor — Lite (Ollama) ollama premium parallel

Messy a user manual section text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor (smollm2:1.7b) — Extract structured line items from this a user manual section as a table.
  • Date Finder (qwen2.5-coder:1.5b) — List every date/deadline mentioned in this a user manual section.
  • Anomaly Spotter (qwen2.5-coder:3b) — Flag anything in this a user manual section that looks inconsistent or wrong.
User Manual Section Extractor — Pro (Ollama) ollama premium parallel

Messy a user manual section text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor (qwen2.5-coder:3b) — Extract structured line items from this a user manual section as a table.
  • Date Finder (llama3.2:1b) — List every date/deadline mentioned in this a user manual section.
  • Anomaly Spotter (llama3.2:3b) — Flag anything in this a user manual section that looks inconsistent or wrong.
Vendor Contract Summary QA — Lite (Ollama) ollama premium parallel

Long a vendor contract summary → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer (qwen2.5:1.5b) — Write a 2-sentence TL;DR of this a vendor contract summary.
  • Outliner (qwen2.5:3b) — Extract a section-by-section outline of this a vendor contract summary.
  • Term Extractor (deepseek-r1:1.5b) — List key terms/jargon used in this a vendor contract summary, with one-line definitions.
Vendor Contract Summary QA — Pro (Ollama) ollama premium parallel

Long a vendor contract summary → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer (llama3.2:3b) — Write a 2-sentence TL;DR of this a vendor contract summary.
  • Outliner (gemma2:2b) — Extract a section-by-section outline of this a vendor contract summary.
  • Term Extractor (qwen2.5:1.5b) — List key terms/jargon used in this a vendor contract summary, with one-line definitions.

LocalAI — Premium (Content tier, Marketplace) (185 combos)

Accessibility (4)

Color Contrast Pass (LocalAI) localai premium sequential

HTML/UI → color contrast issues found + concrete fixes.

Good for: making content easier to read, navigate, or use for people with different needs.

Example: Say you paste in a page of text or a UI flow you want checked. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: A11y Scanner, Fix Suggester. Use it when you want making content easier to read, navigate, or use for people with different needs.

Steps (2):

  • A11y Scanner (gemma-4-e2b-it-qat-mtp) — Scan this HTML/UI text ONLY for color contrast issues. List concrete problems as bullets, cite the element.
  • Fix Suggester (lfm2.5-1.2b-instruct) — For each color contrast issue found, suggest a concrete fix (markup/attribute/CSS change).
Focus Indicators Pass (LocalAI) localai premium sequential

HTML/UI → focus indicators issues found + concrete fixes.

Good for: making content easier to read, navigate, or use for people with different needs.

Example: Say you paste in a page of text or a UI flow you want checked. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: A11y Scanner, Fix Suggester. Use it when you want making content easier to read, navigate, or use for people with different needs.

Steps (2):

  • A11y Scanner (lfm2.5-1.2b-instruct) — Scan this HTML/UI text ONLY for focus indicators issues. List concrete problems as bullets, cite the element.
  • Fix Suggester (qwen_qwen3.5-0.8b) — For each focus indicators issue found, suggest a concrete fix (markup/attribute/CSS change).
Keyboard Navigation Pass (LocalAI) localai premium sequential

HTML/UI → keyboard navigation issues found + concrete fixes.

Good for: making content easier to read, navigate, or use for people with different needs.

Example: Say you paste in a page of text or a UI flow you want checked. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: A11y Scanner, Fix Suggester. Use it when you want making content easier to read, navigate, or use for people with different needs.

Steps (2):

  • A11y Scanner (gemma-3-1b-it) — Scan this HTML/UI text ONLY for keyboard navigation issues. List concrete problems as bullets, cite the element.
  • Fix Suggester (gemma-3-4b-it) — For each keyboard navigation issue found, suggest a concrete fix (markup/attribute/CSS change).
Screen-Reader Labeling Pass (LocalAI) localai premium sequential

HTML/UI → screen-reader labeling issues found + concrete fixes.

Good for: making content easier to read, navigate, or use for people with different needs.

Example: Say you paste in a page of text or a UI flow you want checked. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: A11y Scanner, Fix Suggester. Use it when you want making content easier to read, navigate, or use for people with different needs.

Steps (2):

  • A11y Scanner (gemma-3-4b-it) — Scan this HTML/UI text ONLY for screen-reader labeling issues. List concrete problems as bullets, cite the element.
  • Fix Suggester (gemma-4-e2b-it-qat-mtp) — For each screen-reader labeling issue found, suggest a concrete fix (markup/attribute/CSS change).

Coding (52)

Bash Test Generator — Lite (LocalAI) localai premium parallel

Generate Bash unit tests: happy path, edge cases, and failure modes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Happy Path, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Happy Path (gemma-3-1b-it) — Write Bash unit tests for the normal/expected inputs only.
  • Edge Cases (gemma-3-4b-it) — Write Bash unit tests for boundary/edge-case inputs only.
  • Failure Modes (gemma-4-e2b-it-qat-mtp) — Write Bash unit tests for invalid input / error conditions only.
Bash Test Generator — Pro (LocalAI) localai premium parallel

Generate Bash unit tests: happy path, edge cases, and failure modes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Happy Path, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Happy Path (gemma-4-e2b-it-qat-mtp) — Write Bash unit tests for the normal/expected inputs only.
  • Edge Cases (lfm2.5-1.2b-instruct) — Write Bash unit tests for boundary/edge-case inputs only.
  • Failure Modes (qwen_qwen3.5-0.8b) — Write Bash unit tests for invalid input / error conditions only.
C# Duel — Lite (LocalAI) localai premium judge

Two C# coders solve the same task differently; a judge picks the cleaner one.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Coder A, Coder B. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Coder A (gemma-3-1b-it) — Solve the given task in C#, straightforward/imperative style. Code only.
  • Coder B (gemma-3-4b-it) — Solve the given task in C#, a more functional/idiomatic style. Code only.
C# Duel — Pro (LocalAI) localai premium judge

Two C# coders solve the same task differently; a judge picks the cleaner one.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Coder A, Coder B. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Coder A (qwen_qwen3.5-0.8b) — Solve the given task in C#, straightforward/imperative style. Code only.
  • Coder B (qwen_qwen3.5-2b) — Solve the given task in C#, a more functional/idiomatic style. Code only.
C# Duel — Standard (LocalAI) localai premium judge

Two C# coders solve the same task differently; a judge picks the cleaner one.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Coder A, Coder B. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Coder A (gemma-4-e2b-it-qat-mtp) — Solve the given task in C#, straightforward/imperative style. Code only.
  • Coder B (lfm2.5-1.2b-instruct) — Solve the given task in C#, a more functional/idiomatic style. Code only.
C++ Refactor Pass — Lite (LocalAI) localai premium sequential

Refactor C++ code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer (qwen_qwen3.5-2b) — Rewrite the given C++ code for clarity and idiom. Output only the revised code.
  • Verifier (gemma-3-1b-it) — Sanity-check the refactored C++ code against the original — same behavior? List any risk in 3 bullets max.
C++ Refactor Pass — Pro (LocalAI) localai premium sequential

Refactor C++ code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer (lfm2.5-1.2b-instruct) — Rewrite the given C++ code for clarity and idiom. Output only the revised code.
  • Verifier (qwen_qwen3.5-0.8b) — Sanity-check the refactored C++ code against the original — same behavior? List any risk in 3 bullets max.
C++ Refactor Pass — Standard (LocalAI) localai premium sequential

Refactor C++ code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer (gemma-3-4b-it) — Rewrite the given C++ code for clarity and idiom. Output only the revised code.
  • Verifier (gemma-4-e2b-it-qat-mtp) — Sanity-check the refactored C++ code against the original — same behavior? List any risk in 3 bullets max.
Dart Dockerize — Lite (LocalAI) localai premium sequential

App description (Dart) → Dockerfile → run notes.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Dockerfile Author, Notes Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Dockerfile Author (gemma-3-1b-it) — Write a production-sane Dockerfile for this Dart app description.
  • Notes Writer (gemma-3-4b-it) — Write 3-5 short run/build notes for the Dockerfile above.
Dart Dockerize — Pro (LocalAI) localai premium sequential

App description (Dart) → Dockerfile → run notes.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Dockerfile Author, Notes Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Dockerfile Author (gemma-4-e2b-it-qat-mtp) — Write a production-sane Dockerfile for this Dart app description.
  • Notes Writer (lfm2.5-1.2b-instruct) — Write 3-5 short run/build notes for the Dockerfile above.
Elixir Bug Triage — Lite (LocalAI) localai premium sequential

Error/log in Elixir → root cause → fix → a test to prevent regression.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Diagnoser, Fixer, Test Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Diagnoser (gemma-4-e2b-it-qat-mtp) — Given a Elixir error/log, state the most likely root cause in 2-3 sentences.
  • Fixer (lfm2.5-1.2b-instruct) — Propose a concrete Elixir code fix for the diagnosed cause. Code only, minimal diff.
  • Test Writer (qwen_qwen3.5-0.8b) — Write one Elixir regression test that would have caught this bug.
Elixir Bug Triage — Pro (LocalAI) localai premium sequential

Error/log in Elixir → root cause → fix → a test to prevent regression.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Diagnoser, Fixer, Test Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Diagnoser (qwen_qwen3.5-0.8b) — Given a Elixir error/log, state the most likely root cause in 2-3 sentences.
  • Fixer (qwen_qwen3.5-2b) — Propose a concrete Elixir code fix for the diagnosed cause. Code only, minimal diff.
  • Test Writer (gemma-3-1b-it) — Write one Elixir regression test that would have caught this bug.
Go Test Generator — Lite (LocalAI) localai premium parallel

Generate Go unit tests: happy path, edge cases, and failure modes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Happy Path, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Happy Path (gemma-4-e2b-it-qat-mtp) — Write Go unit tests for the normal/expected inputs only.
  • Edge Cases (lfm2.5-1.2b-instruct) — Write Go unit tests for boundary/edge-case inputs only.
  • Failure Modes (qwen_qwen3.5-0.8b) — Write Go unit tests for invalid input / error conditions only.
Go Test Generator — Pro (LocalAI) localai premium parallel

Generate Go unit tests: happy path, edge cases, and failure modes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Happy Path, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Happy Path (gemma-3-1b-it) — Write Go unit tests for the normal/expected inputs only.
  • Edge Cases (gemma-3-4b-it) — Write Go unit tests for boundary/edge-case inputs only.
  • Failure Modes (gemma-4-e2b-it-qat-mtp) — Write Go unit tests for invalid input / error conditions only.
Go Test Generator — Standard (LocalAI) localai premium parallel

Generate Go unit tests: happy path, edge cases, and failure modes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Happy Path, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Happy Path (qwen_qwen3.5-0.8b) — Write Go unit tests for the normal/expected inputs only.
  • Edge Cases (qwen_qwen3.5-2b) — Write Go unit tests for boundary/edge-case inputs only.
  • Failure Modes (gemma-3-1b-it) — Write Go unit tests for invalid input / error conditions only.
Java Bug Triage — Lite (LocalAI) localai premium sequential

Error/log in Java → root cause → fix → a test to prevent regression.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Diagnoser, Fixer, Test Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Diagnoser (qwen_qwen3.5-0.8b) — Given a Java error/log, state the most likely root cause in 2-3 sentences.
  • Fixer (qwen_qwen3.5-2b) — Propose a concrete Java code fix for the diagnosed cause. Code only, minimal diff.
  • Test Writer (gemma-3-1b-it) — Write one Java regression test that would have caught this bug.
Java Bug Triage — Pro (LocalAI) localai premium sequential

Error/log in Java → root cause → fix → a test to prevent regression.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Diagnoser, Fixer, Test Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Diagnoser (gemma-4-e2b-it-qat-mtp) — Given a Java error/log, state the most likely root cause in 2-3 sentences.
  • Fixer (lfm2.5-1.2b-instruct) — Propose a concrete Java code fix for the diagnosed cause. Code only, minimal diff.
  • Test Writer (qwen_qwen3.5-0.8b) — Write one Java regression test that would have caught this bug.
Java Bug Triage — Standard (LocalAI) localai premium sequential

Error/log in Java → root cause → fix → a test to prevent regression.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Diagnoser, Fixer, Test Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Diagnoser (gemma-3-1b-it) — Given a Java error/log, state the most likely root cause in 2-3 sentences.
  • Fixer (gemma-3-4b-it) — Propose a concrete Java code fix for the diagnosed cause. Code only, minimal diff.
  • Test Writer (gemma-4-e2b-it-qat-mtp) — Write one Java regression test that would have caught this bug.
JavaScript Refactor Pass — Lite (LocalAI) localai premium sequential

Refactor JavaScript code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer (gemma-3-4b-it) — Rewrite the given JavaScript code for clarity and idiom. Output only the revised code.
  • Verifier (gemma-4-e2b-it-qat-mtp) — Sanity-check the refactored JavaScript code against the original — same behavior? List any risk in 3 bullets max.
JavaScript Refactor Pass — Pro (LocalAI) localai premium sequential

Refactor JavaScript code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer (qwen_qwen3.5-2b) — Rewrite the given JavaScript code for clarity and idiom. Output only the revised code.
  • Verifier (gemma-3-1b-it) — Sanity-check the refactored JavaScript code against the original — same behavior? List any risk in 3 bullets max.
JavaScript Refactor Pass — Standard (LocalAI) localai premium sequential

Refactor JavaScript code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer (lfm2.5-1.2b-instruct) — Rewrite the given JavaScript code for clarity and idiom. Output only the revised code.
  • Verifier (qwen_qwen3.5-0.8b) — Sanity-check the refactored JavaScript code against the original — same behavior? List any risk in 3 bullets max.
Kotlin Explainer — Lite (LocalAI) localai premium parallel

Kotlin code → plain-English explanation + complexity + risk notes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Explainer, Complexity, Risk Spotter. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Explainer (lfm2.5-1.2b-instruct) — Explain what this Kotlin code does in plain English, no jargon.
  • Complexity (qwen_qwen3.5-0.8b) — State the time/space complexity of this Kotlin code in one line, with reasoning.
  • Risk Spotter (qwen_qwen3.5-2b) — List any risk (security, correctness, maintainability) in this Kotlin code. Bullets.
Kotlin Explainer — Pro (LocalAI) localai premium parallel

Kotlin code → plain-English explanation + complexity + risk notes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Explainer, Complexity, Risk Spotter. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Explainer (gemma-3-4b-it) — Explain what this Kotlin code does in plain English, no jargon.
  • Complexity (gemma-4-e2b-it-qat-mtp) — State the time/space complexity of this Kotlin code in one line, with reasoning.
  • Risk Spotter (lfm2.5-1.2b-instruct) — List any risk (security, correctness, maintainability) in this Kotlin code. Bullets.
Kotlin Explainer — Standard (LocalAI) localai premium parallel

Kotlin code → plain-English explanation + complexity + risk notes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Explainer, Complexity, Risk Spotter. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Explainer (qwen_qwen3.5-2b) — Explain what this Kotlin code does in plain English, no jargon.
  • Complexity (gemma-3-1b-it) — State the time/space complexity of this Kotlin code in one line, with reasoning.
  • Risk Spotter (gemma-3-4b-it) — List any risk (security, correctness, maintainability) in this Kotlin code. Bullets.
Lua Commit Writer — Lite (LocalAI) localai premium sequential

Lua diff/notes → summary → Conventional Commit message.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Summarizer, Commit Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Summarizer (qwen_qwen3.5-2b) — Summarize what this Lua diff/change actually does, in plain English.
  • Commit Writer (gemma-3-1b-it) — Write a Conventional Commits message (type, scope, subject, body) for this change.
Lua Commit Writer — Pro (LocalAI) localai premium sequential

Lua diff/notes → summary → Conventional Commit message.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Summarizer, Commit Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Summarizer (gemma-3-4b-it) — Summarize what this Lua diff/change actually does, in plain English.
  • Commit Writer (gemma-4-e2b-it-qat-mtp) — Write a Conventional Commits message (type, scope, subject, body) for this change.
PHP API Designer — Lite (LocalAI) localai premium sequential

Idea → REST endpoints in PHP conventions → example payloads.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: API Designer, Example Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • API Designer (qwen_qwen3.5-2b) — Given a feature idea, propose REST endpoints following PHP-ecosystem conventions.
  • Example Writer (gemma-3-1b-it) — Write example request/response JSON payloads for the proposed endpoints.
PHP API Designer — Pro (LocalAI) localai premium sequential

Idea → REST endpoints in PHP conventions → example payloads.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: API Designer, Example Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • API Designer (lfm2.5-1.2b-instruct) — Given a feature idea, propose REST endpoints following PHP-ecosystem conventions.
  • Example Writer (qwen_qwen3.5-0.8b) — Write example request/response JSON payloads for the proposed endpoints.
PHP API Designer — Standard (LocalAI) localai premium sequential

Idea → REST endpoints in PHP conventions → example payloads.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: API Designer, Example Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • API Designer (gemma-3-4b-it) — Given a feature idea, propose REST endpoints following PHP-ecosystem conventions.
  • Example Writer (gemma-4-e2b-it-qat-mtp) — Write example request/response JSON payloads for the proposed endpoints.
Perl Duel — Lite (LocalAI) localai premium judge

Two Perl coders solve the same task differently; a judge picks the cleaner one.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Coder A, Coder B. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Coder A (qwen_qwen3.5-0.8b) — Solve the given task in Perl, straightforward/imperative style. Code only.
  • Coder B (qwen_qwen3.5-2b) — Solve the given task in Perl, a more functional/idiomatic style. Code only.
Perl Duel — Pro (LocalAI) localai premium judge

Two Perl coders solve the same task differently; a judge picks the cleaner one.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Coder A, Coder B. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Coder A (gemma-3-1b-it) — Solve the given task in Perl, straightforward/imperative style. Code only.
  • Coder B (gemma-3-4b-it) — Solve the given task in Perl, a more functional/idiomatic style. Code only.
Python Code Reviewer — Lite (LocalAI) localai premium parallel

Three specialists audit Python code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter (gemma-3-1b-it) — List ONLY Python syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker (gemma-3-4b-it) — Point out non-idiomatic Python — what a senior Python dev would flag in review. Bullets only.
  • Performance (gemma-4-e2b-it-qat-mtp) — Report ONLY performance concerns for this Python code — hot loops, allocations, complexity. Bullets.
Python Code Reviewer — Pro (LocalAI) localai premium parallel

Three specialists audit Python code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter (qwen_qwen3.5-0.8b) — List ONLY Python syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker (qwen_qwen3.5-2b) — Point out non-idiomatic Python — what a senior Python dev would flag in review. Bullets only.
  • Performance (gemma-3-1b-it) — Report ONLY performance concerns for this Python code — hot loops, allocations, complexity. Bullets.
Python Code Reviewer — Standard (LocalAI) localai premium parallel

Three specialists audit Python code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter (gemma-4-e2b-it-qat-mtp) — List ONLY Python syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker (lfm2.5-1.2b-instruct) — Point out non-idiomatic Python — what a senior Python dev would flag in review. Bullets only.
  • Performance (qwen_qwen3.5-0.8b) — Report ONLY performance concerns for this Python code — hot loops, allocations, complexity. Bullets.
R Explainer — Lite (LocalAI) localai premium parallel

R code → plain-English explanation + complexity + risk notes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Explainer, Complexity, Risk Spotter. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Explainer (gemma-3-4b-it) — Explain what this R code does in plain English, no jargon.
  • Complexity (gemma-4-e2b-it-qat-mtp) — State the time/space complexity of this R code in one line, with reasoning.
  • Risk Spotter (lfm2.5-1.2b-instruct) — List any risk (security, correctness, maintainability) in this R code. Bullets.
R Explainer — Pro (LocalAI) localai premium parallel

R code → plain-English explanation + complexity + risk notes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Explainer, Complexity, Risk Spotter. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Explainer (lfm2.5-1.2b-instruct) — Explain what this R code does in plain English, no jargon.
  • Complexity (qwen_qwen3.5-0.8b) — State the time/space complexity of this R code in one line, with reasoning.
  • Risk Spotter (qwen_qwen3.5-2b) — List any risk (security, correctness, maintainability) in this R code. Bullets.
Ruby Dockerize — Lite (LocalAI) localai premium sequential

App description (Ruby) → Dockerfile → run notes.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Dockerfile Author, Notes Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Dockerfile Author (gemma-4-e2b-it-qat-mtp) — Write a production-sane Dockerfile for this Ruby app description.
  • Notes Writer (lfm2.5-1.2b-instruct) — Write 3-5 short run/build notes for the Dockerfile above.
Ruby Dockerize — Pro (LocalAI) localai premium sequential

App description (Ruby) → Dockerfile → run notes.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Dockerfile Author, Notes Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Dockerfile Author (gemma-3-1b-it) — Write a production-sane Dockerfile for this Ruby app description.
  • Notes Writer (gemma-3-4b-it) — Write 3-5 short run/build notes for the Dockerfile above.
Ruby Dockerize — Standard (LocalAI) localai premium sequential

App description (Ruby) → Dockerfile → run notes.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Dockerfile Author, Notes Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Dockerfile Author (qwen_qwen3.5-0.8b) — Write a production-sane Dockerfile for this Ruby app description.
  • Notes Writer (qwen_qwen3.5-2b) — Write 3-5 short run/build notes for the Dockerfile above.
Rust → Docs — Lite (LocalAI) localai premium sequential

Turn Rust code into a short README, then tighten it.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Doc Writer, Editor. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Doc Writer (lfm2.5-1.2b-instruct) — Write a concise Markdown README for this Rust code: what it does, how to use it.
  • Editor (qwen_qwen3.5-0.8b) — Tighten the README — cut fluff, keep only what a new user actually needs.
Rust → Docs — Pro (LocalAI) localai premium sequential

Turn Rust code into a short README, then tighten it.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Doc Writer, Editor. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Doc Writer (gemma-3-4b-it) — Write a concise Markdown README for this Rust code: what it does, how to use it.
  • Editor (gemma-4-e2b-it-qat-mtp) — Tighten the README — cut fluff, keep only what a new user actually needs.
Rust → Docs — Standard (LocalAI) localai premium sequential

Turn Rust code into a short README, then tighten it.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Doc Writer, Editor. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Doc Writer (qwen_qwen3.5-2b) — Write a concise Markdown README for this Rust code: what it does, how to use it.
  • Editor (gemma-3-1b-it) — Tighten the README — cut fluff, keep only what a new user actually needs.
SQL → Docs — Lite (LocalAI) localai premium sequential

Turn SQL code into a short README, then tighten it.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Doc Writer, Editor. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Doc Writer (gemma-3-4b-it) — Write a concise Markdown README for this SQL code: what it does, how to use it.
  • Editor (gemma-4-e2b-it-qat-mtp) — Tighten the README — cut fluff, keep only what a new user actually needs.
SQL → Docs — Pro (LocalAI) localai premium sequential

Turn SQL code into a short README, then tighten it.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Doc Writer, Editor. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Doc Writer (lfm2.5-1.2b-instruct) — Write a concise Markdown README for this SQL code: what it does, how to use it.
  • Editor (qwen_qwen3.5-0.8b) — Tighten the README — cut fluff, keep only what a new user actually needs.
Scala API Designer — Lite (LocalAI) localai premium sequential

Idea → REST endpoints in Scala conventions → example payloads.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: API Designer, Example Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • API Designer (lfm2.5-1.2b-instruct) — Given a feature idea, propose REST endpoints following Scala-ecosystem conventions.
  • Example Writer (qwen_qwen3.5-0.8b) — Write example request/response JSON payloads for the proposed endpoints.
Scala API Designer — Pro (LocalAI) localai premium sequential

Idea → REST endpoints in Scala conventions → example payloads.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: API Designer, Example Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • API Designer (qwen_qwen3.5-2b) — Given a feature idea, propose REST endpoints following Scala-ecosystem conventions.
  • Example Writer (gemma-3-1b-it) — Write example request/response JSON payloads for the proposed endpoints.
Swift Code Reviewer — Lite (LocalAI) localai premium parallel

Three specialists audit Swift code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter (qwen_qwen3.5-0.8b) — List ONLY Swift syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker (qwen_qwen3.5-2b) — Point out non-idiomatic Swift — what a senior Swift dev would flag in review. Bullets only.
  • Performance (gemma-3-1b-it) — Report ONLY performance concerns for this Swift code — hot loops, allocations, complexity. Bullets.
Swift Code Reviewer — Pro (LocalAI) localai premium parallel

Three specialists audit Swift code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter (gemma-4-e2b-it-qat-mtp) — List ONLY Swift syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker (lfm2.5-1.2b-instruct) — Point out non-idiomatic Swift — what a senior Swift dev would flag in review. Bullets only.
  • Performance (qwen_qwen3.5-0.8b) — Report ONLY performance concerns for this Swift code — hot loops, allocations, complexity. Bullets.
Swift Code Reviewer — Standard (LocalAI) localai premium parallel

Three specialists audit Swift code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter (gemma-3-1b-it) — List ONLY Swift syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker (gemma-3-4b-it) — Point out non-idiomatic Swift — what a senior Swift dev would flag in review. Bullets only.
  • Performance (gemma-4-e2b-it-qat-mtp) — Report ONLY performance concerns for this Swift code — hot loops, allocations, complexity. Bullets.
TypeScript Commit Writer — Lite (LocalAI) localai premium sequential

TypeScript diff/notes → summary → Conventional Commit message.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Summarizer, Commit Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Summarizer (gemma-3-4b-it) — Summarize what this TypeScript diff/change actually does, in plain English.
  • Commit Writer (gemma-4-e2b-it-qat-mtp) — Write a Conventional Commits message (type, scope, subject, body) for this change.
TypeScript Commit Writer — Pro (LocalAI) localai premium sequential

TypeScript diff/notes → summary → Conventional Commit message.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Summarizer, Commit Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Summarizer (qwen_qwen3.5-2b) — Summarize what this TypeScript diff/change actually does, in plain English.
  • Commit Writer (gemma-3-1b-it) — Write a Conventional Commits message (type, scope, subject, body) for this change.
TypeScript Commit Writer — Standard (LocalAI) localai premium sequential

TypeScript diff/notes → summary → Conventional Commit message.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Summarizer, Commit Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Summarizer (lfm2.5-1.2b-instruct) — Summarize what this TypeScript diff/change actually does, in plain English.
  • Commit Writer (qwen_qwen3.5-0.8b) — Write a Conventional Commits message (type, scope, subject, body) for this change.

Creative Writing (11)

Cozy Mystery Story Continuation (LocalAI) localai premium sequential

Premise → cozy mystery outline → next chapter → cliffhanger.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Outliner, Writer, Hook Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • Outliner (lfm2.5-1.2b-instruct) — Outline the next 3 beats of this cozy mystery story premise.
  • Writer (qwen_qwen3.5-0.8b) — Write the next chapter/scene in cozy mystery style, following the outline.
  • Hook Writer (qwen_qwen3.5-2b) — Write a one-paragraph cliffhanger ending for this cozy mystery chapter.
Cyberpunk Heist Story Continuation (LocalAI) localai premium sequential

Premise → cyberpunk heist outline → next chapter → cliffhanger.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Outliner, Writer, Hook Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • Outliner (gemma-3-4b-it) — Outline the next 3 beats of this cyberpunk heist story premise.
  • Writer (gemma-4-e2b-it-qat-mtp) — Write the next chapter/scene in cyberpunk heist style, following the outline.
  • Hook Writer (lfm2.5-1.2b-instruct) — Write a one-paragraph cliffhanger ending for this cyberpunk heist chapter.
Fairy-Tale Retelling Worldbuilder (LocalAI) localai premium parallel

One prompt → fairy-tale retelling setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect (gemma-4-e2b-it-qat-mtp) — Describe a fairy-tale retelling setting for this prompt — geography, mood, era.
  • Faction Writer (lfm2.5-1.2b-instruct) — Invent 2-3 factions/groups that fit this fairy-tale retelling setting.
  • NPC Writer (qwen_qwen3.5-0.8b) — Invent 2 memorable NPCs that fit this fairy-tale retelling setting.
Gothic Horror Worldbuilder (LocalAI) localai premium parallel

One prompt → gothic horror setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect (gemma-3-1b-it) — Describe a gothic horror setting for this prompt — geography, mood, era.
  • Faction Writer (gemma-3-4b-it) — Invent 2-3 factions/groups that fit this gothic horror setting.
  • NPC Writer (gemma-4-e2b-it-qat-mtp) — Invent 2 memorable NPCs that fit this gothic horror setting.
Hard Sci-Fi Worldbuilder (LocalAI) localai premium parallel

One prompt → hard sci-fi setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect (gemma-3-1b-it) — Describe a hard sci-fi setting for this prompt — geography, mood, era.
  • Faction Writer (gemma-3-4b-it) — Invent 2-3 factions/groups that fit this hard sci-fi setting.
  • NPC Writer (gemma-4-e2b-it-qat-mtp) — Invent 2 memorable NPCs that fit this hard sci-fi setting.
High Fantasy Story Continuation (LocalAI) localai premium sequential

Premise → high fantasy outline → next chapter → cliffhanger.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Outliner, Writer, Hook Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • Outliner (gemma-3-4b-it) — Outline the next 3 beats of this high fantasy story premise.
  • Writer (gemma-4-e2b-it-qat-mtp) — Write the next chapter/scene in high fantasy style, following the outline.
  • Hook Writer (lfm2.5-1.2b-instruct) — Write a one-paragraph cliffhanger ending for this high fantasy chapter.
Historical Fiction Story Continuation (LocalAI) localai premium sequential

Premise → historical fiction outline → next chapter → cliffhanger.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Outliner, Writer, Hook Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • Outliner (lfm2.5-1.2b-instruct) — Outline the next 3 beats of this historical fiction story premise.
  • Writer (qwen_qwen3.5-0.8b) — Write the next chapter/scene in historical fiction style, following the outline.
  • Hook Writer (qwen_qwen3.5-2b) — Write a one-paragraph cliffhanger ending for this historical fiction chapter.
Noir Detective Worldbuilder (LocalAI) localai premium parallel

One prompt → noir detective setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect (gemma-4-e2b-it-qat-mtp) — Describe a noir detective setting for this prompt — geography, mood, era.
  • Faction Writer (lfm2.5-1.2b-instruct) — Invent 2-3 factions/groups that fit this noir detective setting.
  • NPC Writer (qwen_qwen3.5-0.8b) — Invent 2 memorable NPCs that fit this noir detective setting.
Post-Apocalyptic Survival Worldbuilder (LocalAI) localai premium parallel

One prompt → post-apocalyptic survival setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect (qwen_qwen3.5-0.8b) — Describe a post-apocalyptic survival setting for this prompt — geography, mood, era.
  • Faction Writer (qwen_qwen3.5-2b) — Invent 2-3 factions/groups that fit this post-apocalyptic survival setting.
  • NPC Writer (gemma-3-1b-it) — Invent 2 memorable NPCs that fit this post-apocalyptic survival setting.
Romantic Comedy Worldbuilder (LocalAI) localai premium parallel

One prompt → romantic comedy setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect (qwen_qwen3.5-0.8b) — Describe a romantic comedy setting for this prompt — geography, mood, era.
  • Faction Writer (qwen_qwen3.5-2b) — Invent 2-3 factions/groups that fit this romantic comedy setting.
  • NPC Writer (gemma-3-1b-it) — Invent 2 memorable NPCs that fit this romantic comedy setting.
Space Opera Story Continuation (LocalAI) localai premium sequential

Premise → space opera outline → next chapter → cliffhanger.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Outliner, Writer, Hook Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • Outliner (qwen_qwen3.5-2b) — Outline the next 3 beats of this space opera story premise.
  • Writer (gemma-3-1b-it) — Write the next chapter/scene in space opera style, following the outline.
  • Hook Writer (gemma-3-4b-it) — Write a one-paragraph cliffhanger ending for this space opera chapter.

Data & Research (15)

Clinical Trial Data Notes Digest (LocalAI) localai premium parallel

clinical trial data notes → summary + notable claims + what to verify, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Claim Spotter, Verifier. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Summarizer (gemma-4-e2b-it-qat-mtp) — Summarize the key findings visible in this clinical trial data notes sample.
  • Claim Spotter (lfm2.5-1.2b-instruct) — List any strong/surprising claims implied by this clinical trial data notes sample.
  • Verifier (qwen_qwen3.5-0.8b) — List what in this clinical trial data notes sample would need independent verification before acting on it.
Customer Support Transcripts Digest — Lite (LocalAI) localai premium parallel

customer support transcripts → summary + notable claims + what to verify, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Claim Spotter, Verifier. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Summarizer (gemma-4-e2b-it-qat-mtp) — Summarize the key findings visible in this customer support transcripts sample.
  • Claim Spotter (lfm2.5-1.2b-instruct) — List any strong/surprising claims implied by this customer support transcripts sample.
  • Verifier (qwen_qwen3.5-0.8b) — List what in this customer support transcripts sample would need independent verification before acting on it.
Customer Support Transcripts Digest — Pro (LocalAI) localai premium parallel

customer support transcripts → summary + notable claims + what to verify, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Claim Spotter, Verifier. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Summarizer (gemma-4-e2b-it-qat-mtp) — Summarize the key findings visible in this customer support transcripts sample.
  • Claim Spotter (lfm2.5-1.2b-instruct) — List any strong/surprising claims implied by this customer support transcripts sample.
  • Verifier (qwen_qwen3.5-0.8b) — List what in this customer support transcripts sample would need independent verification before acting on it.
E-Commerce Order Exports Cleaner — Lite (LocalAI) localai premium parallel

Messy e-commerce order exports → schema guess + cleaned rows + anomalies, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Schema Guesser, Cleaner, Anomaly Spotter. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Schema Guesser (gemma-3-4b-it) — Guess a reasonable schema (column names + types) for this e-commerce order exports sample.
  • Cleaner (gemma-4-e2b-it-qat-mtp) — Reformat this e-commerce order exports sample into clean, consistent rows.
  • Anomaly Spotter (lfm2.5-1.2b-instruct) — Flag rows/values in this e-commerce order exports sample that look wrong or inconsistent.
E-Commerce Order Exports Cleaner — Pro (LocalAI) localai premium parallel

Messy e-commerce order exports → schema guess + cleaned rows + anomalies, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Schema Guesser, Cleaner, Anomaly Spotter. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Schema Guesser (gemma-3-4b-it) — Guess a reasonable schema (column names + types) for this e-commerce order exports sample.
  • Cleaner (gemma-4-e2b-it-qat-mtp) — Reformat this e-commerce order exports sample into clean, consistent rows.
  • Anomaly Spotter (lfm2.5-1.2b-instruct) — Flag rows/values in this e-commerce order exports sample that look wrong or inconsistent.
Financial Transaction Records Cleaner (LocalAI) localai premium parallel

Messy financial transaction records → schema guess + cleaned rows + anomalies, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Schema Guesser, Cleaner, Anomaly Spotter. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Schema Guesser (qwen_qwen3.5-0.8b) — Guess a reasonable schema (column names + types) for this financial transaction records sample.
  • Cleaner (qwen_qwen3.5-2b) — Reformat this financial transaction records sample into clean, consistent rows.
  • Anomaly Spotter (gemma-3-1b-it) — Flag rows/values in this financial transaction records sample that look wrong or inconsistent.
Inventory Stock Reports Cleaner (LocalAI) localai premium parallel

Messy inventory stock reports → schema guess + cleaned rows + anomalies, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Schema Guesser, Cleaner, Anomaly Spotter. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Schema Guesser (qwen_qwen3.5-0.8b) — Guess a reasonable schema (column names + types) for this inventory stock reports sample.
  • Cleaner (qwen_qwen3.5-2b) — Reformat this inventory stock reports sample into clean, consistent rows.
  • Anomaly Spotter (gemma-3-1b-it) — Flag rows/values in this inventory stock reports sample that look wrong or inconsistent.
Iot Device Logs Cleaner (LocalAI) localai premium parallel

Messy IoT device logs → schema guess + cleaned rows + anomalies, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Schema Guesser, Cleaner, Anomaly Spotter. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Schema Guesser (gemma-3-4b-it) — Guess a reasonable schema (column names + types) for this IoT device logs sample.
  • Cleaner (gemma-4-e2b-it-qat-mtp) — Reformat this IoT device logs sample into clean, consistent rows.
  • Anomaly Spotter (lfm2.5-1.2b-instruct) — Flag rows/values in this IoT device logs sample that look wrong or inconsistent.
Sensor Telemetry Readings Extraction (LocalAI) localai premium parallel

Messy sensor telemetry readings → structured tokens + human summary + timestamps, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Summarizer, Timestamp Finder. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Extractor (lfm2.5-1.2b-instruct) — Pull structured fields out of this sensor telemetry readings sample, as a table.
  • Summarizer (qwen_qwen3.5-0.8b) — Summarize what's happening in this sensor telemetry readings sample, in plain English.
  • Timestamp Finder (qwen_qwen3.5-2b) — List every timestamp/date found in this sensor telemetry readings sample.
Server Access Logs Extraction — Lite (LocalAI) localai premium parallel

Messy server access logs → structured tokens + human summary + timestamps, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Summarizer, Timestamp Finder. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Extractor (gemma-3-1b-it) — Pull structured fields out of this server access logs sample, as a table.
  • Summarizer (gemma-3-4b-it) — Summarize what's happening in this server access logs sample, in plain English.
  • Timestamp Finder (gemma-4-e2b-it-qat-mtp) — List every timestamp/date found in this server access logs sample.
Server Access Logs Extraction — Pro (LocalAI) localai premium parallel

Messy server access logs → structured tokens + human summary + timestamps, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Summarizer, Timestamp Finder. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Extractor (gemma-3-1b-it) — Pull structured fields out of this server access logs sample, as a table.
  • Summarizer (gemma-3-4b-it) — Summarize what's happening in this server access logs sample, in plain English.
  • Timestamp Finder (gemma-4-e2b-it-qat-mtp) — List every timestamp/date found in this server access logs sample.
Shipment Tracking Logs Digest (LocalAI) localai premium parallel

shipment tracking logs → summary + notable claims + what to verify, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Claim Spotter, Verifier. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Summarizer (qwen_qwen3.5-2b) — Summarize the key findings visible in this shipment tracking logs sample.
  • Claim Spotter (gemma-3-1b-it) — List any strong/surprising claims implied by this shipment tracking logs sample.
  • Verifier (gemma-3-4b-it) — List what in this shipment tracking logs sample would need independent verification before acting on it.
Social Media Engagement Exports Extraction (LocalAI) localai premium parallel

Messy social media engagement exports → structured tokens + human summary + timestamps, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Summarizer, Timestamp Finder. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Extractor (gemma-3-1b-it) — Pull structured fields out of this social media engagement exports sample, as a table.
  • Summarizer (gemma-3-4b-it) — Summarize what's happening in this social media engagement exports sample, in plain English.
  • Timestamp Finder (gemma-4-e2b-it-qat-mtp) — List every timestamp/date found in this social media engagement exports sample.
Survey Response Exports Digest (LocalAI) localai premium parallel

survey response exports → summary + notable claims + what to verify, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Claim Spotter, Verifier. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Summarizer (qwen_qwen3.5-2b) — Summarize the key findings visible in this survey response exports sample.
  • Claim Spotter (gemma-3-1b-it) — List any strong/surprising claims implied by this survey response exports sample.
  • Verifier (gemma-3-4b-it) — List what in this survey response exports sample would need independent verification before acting on it.
Website Analytics Exports Extraction (LocalAI) localai premium parallel

Messy website analytics exports → structured tokens + human summary + timestamps, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Summarizer, Timestamp Finder. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Extractor (lfm2.5-1.2b-instruct) — Pull structured fields out of this website analytics exports sample, as a table.
  • Summarizer (qwen_qwen3.5-0.8b) — Summarize what's happening in this website analytics exports sample, in plain English.
  • Timestamp Finder (qwen_qwen3.5-2b) — List every timestamp/date found in this website analytics exports sample.

Image Prompting (18)

Anime/Manga Concepts x3 (LocalAI) localai premium parallel

Idea → 3 distinct anime/manga prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A (gemma-3-4b-it) — Write a anime/manga-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B (gemma-4-e2b-it-qat-mtp) — Write a anime/manga-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C (lfm2.5-1.2b-instruct) — Write a anime/manga-style image prompt for this idea, direction C (unexpected angle).
Art Nouveau Prompt Studio (LocalAI) localai premium sequential

Idea → detailed art nouveau image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer (lfm2.5-1.2b-instruct) — Turn this idea into a detailed art nouveau-style image generation prompt.
  • Negative Prompt Writer (qwen_qwen3.5-0.8b) — Write a negative prompt to pair with the art nouveau prompt above — what to avoid.
Charcoal Sketch Storyboard (LocalAI) localai premium sequential

Concept → scenes → charcoal sketch-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown (qwen_qwen3.5-2b) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer (gemma-3-1b-it) — Write a charcoal sketch-style image prompt for each scene above.
Claymation Prompt Studio (LocalAI) localai premium sequential

Idea → detailed claymation image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer (gemma-3-1b-it) — Turn this idea into a detailed claymation-style image generation prompt.
  • Negative Prompt Writer (gemma-3-4b-it) — Write a negative prompt to pair with the claymation prompt above — what to avoid.
Concept Art Storyboard (LocalAI) localai premium sequential

Concept → scenes → concept art-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown (qwen_qwen3.5-2b) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer (gemma-3-1b-it) — Write a concept art-style image prompt for each scene above.
Cyberpunk Neon Storyboard (LocalAI) localai premium sequential

Concept → scenes → cyberpunk neon-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown (gemma-4-e2b-it-qat-mtp) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer (lfm2.5-1.2b-instruct) — Write a cyberpunk neon-style image prompt for each scene above.
Film Noir Storyboard (LocalAI) localai premium sequential

Concept → scenes → film noir-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown (gemma-4-e2b-it-qat-mtp) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer (lfm2.5-1.2b-instruct) — Write a film noir-style image prompt for each scene above.
Flat Vector Illustration Prompt Studio (LocalAI) localai premium sequential

Idea → detailed flat vector illustration image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer (lfm2.5-1.2b-instruct) — Turn this idea into a detailed flat vector illustration-style image generation prompt.
  • Negative Prompt Writer (qwen_qwen3.5-0.8b) — Write a negative prompt to pair with the flat vector illustration prompt above — what to avoid.
Isometric 3D Render Storyboard (LocalAI) localai premium sequential

Concept → scenes → isometric 3D render-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown (qwen_qwen3.5-2b) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer (gemma-3-1b-it) — Write a isometric 3D render-style image prompt for each scene above.
Low-Poly 3D Concepts x3 (LocalAI) localai premium parallel

Idea → 3 distinct low-poly 3D prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A (qwen_qwen3.5-0.8b) — Write a low-poly 3D-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B (qwen_qwen3.5-2b) — Write a low-poly 3D-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C (gemma-3-1b-it) — Write a low-poly 3D-style image prompt for this idea, direction C (unexpected angle).
Minimalist Line Art Prompt Studio (LocalAI) localai premium sequential

Idea → detailed minimalist line art image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer (lfm2.5-1.2b-instruct) — Turn this idea into a detailed minimalist line art-style image generation prompt.
  • Negative Prompt Writer (qwen_qwen3.5-0.8b) — Write a negative prompt to pair with the minimalist line art prompt above — what to avoid.
Oil Painting Concepts x3 (LocalAI) localai premium parallel

Idea → 3 distinct oil painting prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A (qwen_qwen3.5-0.8b) — Write a oil painting-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B (qwen_qwen3.5-2b) — Write a oil painting-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C (gemma-3-1b-it) — Write a oil painting-style image prompt for this idea, direction C (unexpected angle).
Photorealistic Prompt Studio (LocalAI) localai premium sequential

Idea → detailed photorealistic image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer (gemma-3-1b-it) — Turn this idea into a detailed photorealistic-style image generation prompt.
  • Negative Prompt Writer (gemma-3-4b-it) — Write a negative prompt to pair with the photorealistic prompt above — what to avoid.
Pixel Art Prompt Studio (LocalAI) localai premium sequential

Idea → detailed pixel art image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer (gemma-3-1b-it) — Turn this idea into a detailed pixel art-style image generation prompt.
  • Negative Prompt Writer (gemma-3-4b-it) — Write a negative prompt to pair with the pixel art prompt above — what to avoid.
Pop Art Concepts x3 (LocalAI) localai premium parallel

Idea → 3 distinct pop art prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A (qwen_qwen3.5-0.8b) — Write a pop art-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B (qwen_qwen3.5-2b) — Write a pop art-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C (gemma-3-1b-it) — Write a pop art-style image prompt for this idea, direction C (unexpected angle).
Steampunk Storyboard (LocalAI) localai premium sequential

Concept → scenes → steampunk-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown (gemma-4-e2b-it-qat-mtp) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer (lfm2.5-1.2b-instruct) — Write a steampunk-style image prompt for each scene above.
Vaporwave Concepts x3 (LocalAI) localai premium parallel

Idea → 3 distinct vaporwave prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A (gemma-3-4b-it) — Write a vaporwave-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B (gemma-4-e2b-it-qat-mtp) — Write a vaporwave-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C (lfm2.5-1.2b-instruct) — Write a vaporwave-style image prompt for this idea, direction C (unexpected angle).
Watercolor Painting Concepts x3 (LocalAI) localai premium parallel

Idea → 3 distinct watercolor painting prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A (gemma-3-4b-it) — Write a watercolor painting-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B (gemma-4-e2b-it-qat-mtp) — Write a watercolor painting-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C (lfm2.5-1.2b-instruct) — Write a watercolor painting-style image prompt for this idea, direction C (unexpected angle).

Language & Translation (30)

Arabic Grammar & Clarity — Lite (LocalAI) localai premium sequential

Text in Arabic → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer (qwen_qwen3.5-0.8b) — Fix grammar/spelling errors in this Arabic text. Output corrected text only.
  • Clarity Editor (qwen_qwen3.5-2b) — Tighten this Arabic text for clarity — cut redundancy, keep meaning.
Arabic Grammar & Clarity — Pro (LocalAI) localai premium sequential

Text in Arabic → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer (gemma-3-1b-it) — Fix grammar/spelling errors in this Arabic text. Output corrected text only.
  • Clarity Editor (gemma-3-4b-it) — Tighten this Arabic text for clarity — cut redundancy, keep meaning.
Dutch Translator Pro (LocalAI) localai premium sequential

Translate to Dutch → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator (qwen_qwen3.5-0.8b) — Translate the given text into Dutch. Natural, not literal.
  • Back-Translator (qwen_qwen3.5-2b) — Translate the Dutch translation back into English.
  • Drift Fixer (gemma-3-1b-it) — Compare original vs back-translation; fix the Dutch version if meaning drifted.
French Localization — Lite (LocalAI) localai premium parallel

UI text → French + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer (gemma-3-4b-it) — Translate this UI text into French, concise and natural for a UI label.
  • Tooltip Writer (gemma-4-e2b-it-qat-mtp) — Write a short French tooltip/help text version of this UI text.
French Localization — Pro (LocalAI) localai premium parallel

UI text → French + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer (lfm2.5-1.2b-instruct) — Translate this UI text into French, concise and natural for a UI label.
  • Tooltip Writer (qwen_qwen3.5-0.8b) — Write a short French tooltip/help text version of this UI text.
German Tone Rewriter — Lite (LocalAI) localai premium parallel

Text → formal + casual German versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice (gemma-4-e2b-it-qat-mtp) — Translate/rewrite this text into formal, professional German.
  • Casual Voice (lfm2.5-1.2b-instruct) — Translate/rewrite this text into casual, everyday German.
German Tone Rewriter — Pro (LocalAI) localai premium parallel

Text → formal + casual German versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice (qwen_qwen3.5-0.8b) — Translate/rewrite this text into formal, professional German.
  • Casual Voice (qwen_qwen3.5-2b) — Translate/rewrite this text into casual, everyday German.
Greek Localization (LocalAI) localai premium parallel

UI text → Greek + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer (qwen_qwen3.5-0.8b) — Translate this UI text into Greek, concise and natural for a UI label.
  • Tooltip Writer (qwen_qwen3.5-2b) — Write a short Greek tooltip/help text version of this UI text.
Hebrew Subtitle Pass — Lite (LocalAI) localai premium sequential

Transcript lines → Hebrew translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator (lfm2.5-1.2b-instruct) — Translate these subtitle lines into Hebrew, keeping line breaks intact.
  • Format Checker (qwen_qwen3.5-0.8b) — Verify the Hebrew lines still match the original line count/timing markers.
Hebrew Subtitle Pass — Pro (LocalAI) localai premium sequential

Transcript lines → Hebrew translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator (qwen_qwen3.5-2b) — Translate these subtitle lines into Hebrew, keeping line breaks intact.
  • Format Checker (gemma-3-1b-it) — Verify the Hebrew lines still match the original line count/timing markers.
Hindi Subtitle Pass (LocalAI) localai premium sequential

Transcript lines → Hindi translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator (gemma-3-4b-it) — Translate these subtitle lines into Hindi, keeping line breaks intact.
  • Format Checker (gemma-4-e2b-it-qat-mtp) — Verify the Hindi lines still match the original line count/timing markers.
Italian Localization — Lite (LocalAI) localai premium parallel

UI text → Italian + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer (gemma-3-1b-it) — Translate this UI text into Italian, concise and natural for a UI label.
  • Tooltip Writer (gemma-3-4b-it) — Write a short Italian tooltip/help text version of this UI text.
Italian Localization — Pro (LocalAI) localai premium parallel

UI text → Italian + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer (gemma-4-e2b-it-qat-mtp) — Translate this UI text into Italian, concise and natural for a UI label.
  • Tooltip Writer (lfm2.5-1.2b-instruct) — Write a short Italian tooltip/help text version of this UI text.
Japanese Translator Pro — Lite (LocalAI) localai premium sequential

Translate to Japanese → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator (qwen_qwen3.5-2b) — Translate the given text into Japanese. Natural, not literal.
  • Back-Translator (gemma-3-1b-it) — Translate the Japanese translation back into English.
  • Drift Fixer (gemma-3-4b-it) — Compare original vs back-translation; fix the Japanese version if meaning drifted.
Japanese Translator Pro — Pro (LocalAI) localai premium sequential

Translate to Japanese → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator (gemma-3-4b-it) — Translate the given text into Japanese. Natural, not literal.
  • Back-Translator (gemma-4-e2b-it-qat-mtp) — Translate the Japanese translation back into English.
  • Drift Fixer (lfm2.5-1.2b-instruct) — Compare original vs back-translation; fix the Japanese version if meaning drifted.
Korean Grammar & Clarity — Lite (LocalAI) localai premium sequential

Text in Korean → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer (lfm2.5-1.2b-instruct) — Fix grammar/spelling errors in this Korean text. Output corrected text only.
  • Clarity Editor (qwen_qwen3.5-0.8b) — Tighten this Korean text for clarity — cut redundancy, keep meaning.
Korean Grammar & Clarity — Pro (LocalAI) localai premium sequential

Text in Korean → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer (qwen_qwen3.5-2b) — Fix grammar/spelling errors in this Korean text. Output corrected text only.
  • Clarity Editor (gemma-3-1b-it) — Tighten this Korean text for clarity — cut redundancy, keep meaning.
Mandarin Chinese Grammar & Clarity (LocalAI) localai premium sequential

Text in Mandarin Chinese → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer (gemma-4-e2b-it-qat-mtp) — Fix grammar/spelling errors in this Mandarin Chinese text. Output corrected text only.
  • Clarity Editor (lfm2.5-1.2b-instruct) — Tighten this Mandarin Chinese text for clarity — cut redundancy, keep meaning.
Polish Localization (LocalAI) localai premium parallel

UI text → Polish + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer (qwen_qwen3.5-2b) — Translate this UI text into Polish, concise and natural for a UI label.
  • Tooltip Writer (gemma-3-1b-it) — Write a short Polish tooltip/help text version of this UI text.
Portuguese Tone Rewriter — Lite (LocalAI) localai premium parallel

Text → formal + casual Portuguese versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice (gemma-3-4b-it) — Translate/rewrite this text into formal, professional Portuguese.
  • Casual Voice (gemma-4-e2b-it-qat-mtp) — Translate/rewrite this text into casual, everyday Portuguese.
Portuguese Tone Rewriter — Pro (LocalAI) localai premium parallel

Text → formal + casual Portuguese versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice (lfm2.5-1.2b-instruct) — Translate/rewrite this text into formal, professional Portuguese.
  • Casual Voice (qwen_qwen3.5-0.8b) — Translate/rewrite this text into casual, everyday Portuguese.
Russian Subtitle Pass — Lite (LocalAI) localai premium sequential

Transcript lines → Russian translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator (gemma-4-e2b-it-qat-mtp) — Translate these subtitle lines into Russian, keeping line breaks intact.
  • Format Checker (lfm2.5-1.2b-instruct) — Verify the Russian lines still match the original line count/timing markers.
Russian Subtitle Pass — Pro (LocalAI) localai premium sequential

Transcript lines → Russian translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator (qwen_qwen3.5-0.8b) — Translate these subtitle lines into Russian, keeping line breaks intact.
  • Format Checker (qwen_qwen3.5-2b) — Verify the Russian lines still match the original line count/timing markers.
Spanish Translator Pro — Lite (LocalAI) localai premium sequential

Translate to Spanish → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator (gemma-3-1b-it) — Translate the given text into Spanish. Natural, not literal.
  • Back-Translator (gemma-3-4b-it) — Translate the Spanish translation back into English.
  • Drift Fixer (gemma-4-e2b-it-qat-mtp) — Compare original vs back-translation; fix the Spanish version if meaning drifted.
Spanish Translator Pro — Pro (LocalAI) localai premium sequential

Translate to Spanish → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator (gemma-4-e2b-it-qat-mtp) — Translate the given text into Spanish. Natural, not literal.
  • Back-Translator (lfm2.5-1.2b-instruct) — Translate the Spanish translation back into English.
  • Drift Fixer (qwen_qwen3.5-0.8b) — Compare original vs back-translation; fix the Spanish version if meaning drifted.
Swedish Translator Pro (LocalAI) localai premium sequential

Translate to Swedish → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator (lfm2.5-1.2b-instruct) — Translate the given text into Swedish. Natural, not literal.
  • Back-Translator (qwen_qwen3.5-0.8b) — Translate the Swedish translation back into English.
  • Drift Fixer (qwen_qwen3.5-2b) — Compare original vs back-translation; fix the Swedish version if meaning drifted.
Thai Subtitle Pass (LocalAI) localai premium sequential

Transcript lines → Thai translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator (gemma-3-1b-it) — Translate these subtitle lines into Thai, keeping line breaks intact.
  • Format Checker (gemma-3-4b-it) — Verify the Thai lines still match the original line count/timing markers.
Turkish Tone Rewriter (LocalAI) localai premium parallel

Text → formal + casual Turkish versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice (gemma-3-1b-it) — Translate/rewrite this text into formal, professional Turkish.
  • Casual Voice (gemma-3-4b-it) — Translate/rewrite this text into casual, everyday Turkish.
Ukrainian Grammar & Clarity (LocalAI) localai premium sequential

Text in Ukrainian → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer (gemma-3-4b-it) — Fix grammar/spelling errors in this Ukrainian text. Output corrected text only.
  • Clarity Editor (gemma-4-e2b-it-qat-mtp) — Tighten this Ukrainian text for clarity — cut redundancy, keep meaning.
Vietnamese Tone Rewriter (LocalAI) localai premium parallel

Text → formal + casual Vietnamese versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice (qwen_qwen3.5-2b) — Translate/rewrite this text into formal, professional Vietnamese.
  • Casual Voice (gemma-3-1b-it) — Translate/rewrite this text into casual, everyday Vietnamese.

Learning & Study (18)

Bayesian Inference Debate (LocalAI) localai premium judge

3 agents argue about Bayesian inference; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A (gemma-4-e2b-it-qat-mtp) — Give the strongest argument/explanation of Bayesian inference, angle A.
  • Advocate B (lfm2.5-1.2b-instruct) — Give the strongest argument/explanation of Bayesian inference, angle B, different framing.
Blockchain Consensus — 3 Levels (LocalAI) localai premium parallel

Explain blockchain consensus at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher (lfm2.5-1.2b-instruct) — Explain blockchain consensus like the reader is 10 years old. No jargon.
  • Intermediate Teacher (qwen_qwen3.5-0.8b) — Explain blockchain consensus for someone with basic background — some technical terms OK.
  • Expert (qwen_qwen3.5-2b) — Explain blockchain consensus at expert depth, precise terminology, no hand-holding.
Compound Interest Debate (LocalAI) localai premium judge

3 agents argue about compound interest; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A (gemma-4-e2b-it-qat-mtp) — Give the strongest argument/explanation of compound interest, angle A.
  • Advocate B (lfm2.5-1.2b-instruct) — Give the strongest argument/explanation of compound interest, angle B, different framing.
Dna Transcription Debate (LocalAI) localai premium judge

3 agents argue about DNA transcription; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A (qwen_qwen3.5-2b) — Give the strongest argument/explanation of DNA transcription, angle A.
  • Advocate B (gemma-3-1b-it) — Give the strongest argument/explanation of DNA transcription, angle B, different framing.
Game Theory Nash Equilibrium Flashcards (LocalAI) localai premium sequential

Text about game theory Nash equilibrium → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor (qwen_qwen3.5-0.8b) — Extract the key facts about game theory Nash equilibrium from the given text, as bullets.
  • Flashcard Writer (qwen_qwen3.5-2b) — Turn those facts into Q/A flashcards about game theory Nash equilibrium (JSON array of {q,a}).
Greenhouse Effect Flashcards (LocalAI) localai premium sequential

Text about greenhouse effect → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor (qwen_qwen3.5-0.8b) — Extract the key facts about greenhouse effect from the given text, as bullets.
  • Flashcard Writer (qwen_qwen3.5-2b) — Turn those facts into Q/A flashcards about greenhouse effect (JSON array of {q,a}).
Inflation And Monetary Policy — 3 Levels (LocalAI) localai premium parallel

Explain inflation and monetary policy at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher (lfm2.5-1.2b-instruct) — Explain inflation and monetary policy like the reader is 10 years old. No jargon.
  • Intermediate Teacher (qwen_qwen3.5-0.8b) — Explain inflation and monetary policy for someone with basic background — some technical terms OK.
  • Expert (qwen_qwen3.5-2b) — Explain inflation and monetary policy at expert depth, precise terminology, no hand-holding.
Neural Network Backpropagation Flashcards (LocalAI) localai premium sequential

Text about neural network backpropagation → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor (gemma-3-4b-it) — Extract the key facts about neural network backpropagation from the given text, as bullets.
  • Flashcard Writer (gemma-4-e2b-it-qat-mtp) — Turn those facts into Q/A flashcards about neural network backpropagation (JSON array of {q,a}).
Photosynthesis — 3 Levels (LocalAI) localai premium parallel

Explain photosynthesis at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher (gemma-3-1b-it) — Explain photosynthesis like the reader is 10 years old. No jargon.
  • Intermediate Teacher (gemma-3-4b-it) — Explain photosynthesis for someone with basic background — some technical terms OK.
  • Expert (gemma-4-e2b-it-qat-mtp) — Explain photosynthesis at expert depth, precise terminology, no hand-holding.
Plate Tectonics Flashcards (LocalAI) localai premium sequential

Text about plate tectonics → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor (gemma-3-4b-it) — Extract the key facts about plate tectonics from the given text, as bullets.
  • Flashcard Writer (gemma-4-e2b-it-qat-mtp) — Turn those facts into Q/A flashcards about plate tectonics (JSON array of {q,a}).
Quantum Entanglement Flashcards (LocalAI) localai premium sequential

Text about quantum entanglement → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor (qwen_qwen3.5-0.8b) — Extract the key facts about quantum entanglement from the given text, as bullets.
  • Flashcard Writer (qwen_qwen3.5-2b) — Turn those facts into Q/A flashcards about quantum entanglement (JSON array of {q,a}).
Recursion Flashcards (LocalAI) localai premium sequential

Text about recursion → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor (gemma-3-4b-it) — Extract the key facts about recursion from the given text, as bullets.
  • Flashcard Writer (gemma-4-e2b-it-qat-mtp) — Turn those facts into Q/A flashcards about recursion (JSON array of {q,a}).
Supply And Demand Debate (LocalAI) localai premium judge

3 agents argue about supply and demand; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A (qwen_qwen3.5-2b) — Give the strongest argument/explanation of supply and demand, angle A.
  • Advocate B (gemma-3-1b-it) — Give the strongest argument/explanation of supply and demand, angle B, different framing.
Tcp/Ip Handshake Debate (LocalAI) localai premium judge

3 agents argue about TCP/IP handshake; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A (qwen_qwen3.5-2b) — Give the strongest argument/explanation of TCP/IP handshake, angle A.
  • Advocate B (gemma-3-1b-it) — Give the strongest argument/explanation of TCP/IP handshake, angle B, different framing.
The Cap Theorem — 3 Levels (LocalAI) localai premium parallel

Explain the CAP theorem at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher (gemma-3-1b-it) — Explain the CAP theorem like the reader is 10 years old. No jargon.
  • Intermediate Teacher (gemma-3-4b-it) — Explain the CAP theorem for someone with basic background — some technical terms OK.
  • Expert (gemma-4-e2b-it-qat-mtp) — Explain the CAP theorem at expert depth, precise terminology, no hand-holding.
The French Revolution Causes — 3 Levels (LocalAI) localai premium parallel

Explain the French Revolution causes at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher (lfm2.5-1.2b-instruct) — Explain the French Revolution causes like the reader is 10 years old. No jargon.
  • Intermediate Teacher (qwen_qwen3.5-0.8b) — Explain the French Revolution causes for someone with basic background — some technical terms OK.
  • Expert (qwen_qwen3.5-2b) — Explain the French Revolution causes at expert depth, precise terminology, no hand-holding.
The Krebs Cycle Debate (LocalAI) localai premium judge

3 agents argue about the Krebs cycle; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A (gemma-4-e2b-it-qat-mtp) — Give the strongest argument/explanation of the Krebs cycle, angle A.
  • Advocate B (lfm2.5-1.2b-instruct) — Give the strongest argument/explanation of the Krebs cycle, angle B, different framing.
The Water Cycle — 3 Levels (LocalAI) localai premium parallel

Explain the water cycle at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher (gemma-3-1b-it) — Explain the water cycle like the reader is 10 years old. No jargon.
  • Intermediate Teacher (gemma-3-4b-it) — Explain the water cycle for someone with basic background — some technical terms OK.
  • Expert (gemma-4-e2b-it-qat-mtp) — Explain the water cycle at expert depth, precise terminology, no hand-holding.

Office & Docs (37)

Board Update Extractor — Lite (LocalAI) localai premium parallel

Messy a board update text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor (gemma-3-4b-it) — Extract structured line items from this a board update as a table.
  • Date Finder (gemma-4-e2b-it-qat-mtp) — List every date/deadline mentioned in this a board update.
  • Anomaly Spotter (lfm2.5-1.2b-instruct) — Flag anything in this a board update that looks inconsistent or wrong.
Board Update Extractor — Pro (LocalAI) localai premium parallel

Messy a board update text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor (lfm2.5-1.2b-instruct) — Extract structured line items from this a board update as a table.
  • Date Finder (qwen_qwen3.5-0.8b) — List every date/deadline mentioned in this a board update.
  • Anomaly Spotter (qwen_qwen3.5-2b) — Flag anything in this a board update that looks inconsistent or wrong.
Client Proposal Triage — Lite (LocalAI) localai premium parallel

Messy a client proposal text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer (gemma-3-1b-it) — Summarize this a client proposal in exactly 3 bullets.
  • Action Extractor (gemma-3-4b-it) — List only concrete action items found in this a client proposal, as bullets.
  • Tone Reader (gemma-4-e2b-it-qat-mtp) — State the tone of this a client proposal in one sentence (e.g. urgent, neutral, frustrated).
Client Proposal Triage — Pro (LocalAI) localai premium parallel

Messy a client proposal text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer (gemma-4-e2b-it-qat-mtp) — Summarize this a client proposal in exactly 3 bullets.
  • Action Extractor (lfm2.5-1.2b-instruct) — List only concrete action items found in this a client proposal, as bullets.
  • Tone Reader (qwen_qwen3.5-0.8b) — State the tone of this a client proposal in one sentence (e.g. urgent, neutral, frustrated).
Compliance Checklist Extractor (LocalAI) localai premium parallel

Messy a compliance checklist text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor (gemma-3-1b-it) — Extract structured line items from this a compliance checklist as a table.
  • Date Finder (gemma-3-4b-it) — List every date/deadline mentioned in this a compliance checklist.
  • Anomaly Spotter (gemma-4-e2b-it-qat-mtp) — Flag anything in this a compliance checklist that looks inconsistent or wrong.
Customer Complaint Response Rewriter — Lite (LocalAI) localai premium sequential

Rough a customer complaint response → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher (gemma-4-e2b-it-qat-mtp) — Polish this rough a customer complaint response draft for grammar and flow.
  • Keyword Pass (lfm2.5-1.2b-instruct) — Add/verify relevant keywords a reader or search would expect in this a customer complaint response.
Customer Complaint Response Rewriter — Pro (LocalAI) localai premium sequential

Rough a customer complaint response → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher (qwen_qwen3.5-0.8b) — Polish this rough a customer complaint response draft for grammar and flow.
  • Keyword Pass (qwen_qwen3.5-2b) — Add/verify relevant keywords a reader or search would expect in this a customer complaint response.
Executive Summary Rewriter (LocalAI) localai premium sequential

Rough an executive summary → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher (gemma-3-4b-it) — Polish this rough an executive summary draft for grammar and flow.
  • Keyword Pass (gemma-4-e2b-it-qat-mtp) — Add/verify relevant keywords a reader or search would expect in this an executive summary.
Grant Application Triage — Lite (LocalAI) localai premium parallel

Messy a grant application text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer (qwen_qwen3.5-0.8b) — Summarize this a grant application in exactly 3 bullets.
  • Action Extractor (qwen_qwen3.5-2b) — List only concrete action items found in this a grant application, as bullets.
  • Tone Reader (gemma-3-1b-it) — State the tone of this a grant application in one sentence (e.g. urgent, neutral, frustrated).
Grant Application Triage — Pro (LocalAI) localai premium parallel

Messy a grant application text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer (gemma-3-1b-it) — Summarize this a grant application in exactly 3 bullets.
  • Action Extractor (gemma-3-4b-it) — List only concrete action items found in this a grant application, as bullets.
  • Tone Reader (gemma-4-e2b-it-qat-mtp) — State the tone of this a grant application in one sentence (e.g. urgent, neutral, frustrated).
Internal Memo Extractor — Lite (LocalAI) localai premium parallel

Messy an internal memo text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor (lfm2.5-1.2b-instruct) — Extract structured line items from this an internal memo as a table.
  • Date Finder (qwen_qwen3.5-0.8b) — List every date/deadline mentioned in this an internal memo.
  • Anomaly Spotter (qwen_qwen3.5-2b) — Flag anything in this an internal memo that looks inconsistent or wrong.
Internal Memo Extractor — Pro (LocalAI) localai premium parallel

Messy an internal memo text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor (qwen_qwen3.5-2b) — Extract structured line items from this an internal memo as a table.
  • Date Finder (gemma-3-1b-it) — List every date/deadline mentioned in this an internal memo.
  • Anomaly Spotter (gemma-3-4b-it) — Flag anything in this an internal memo that looks inconsistent or wrong.
Job Posting Triage — Lite (LocalAI) localai premium parallel

Messy a job posting text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer (qwen_qwen3.5-2b) — Summarize this a job posting in exactly 3 bullets.
  • Action Extractor (gemma-3-1b-it) — List only concrete action items found in this a job posting, as bullets.
  • Tone Reader (gemma-3-4b-it) — State the tone of this a job posting in one sentence (e.g. urgent, neutral, frustrated).
Job Posting Triage — Pro (LocalAI) localai premium parallel

Messy a job posting text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer (gemma-3-4b-it) — Summarize this a job posting in exactly 3 bullets.
  • Action Extractor (gemma-4-e2b-it-qat-mtp) — List only concrete action items found in this a job posting, as bullets.
  • Tone Reader (lfm2.5-1.2b-instruct) — State the tone of this a job posting in one sentence (e.g. urgent, neutral, frustrated).
Onboarding Checklist Composer — Lite (LocalAI) localai premium sequential

Intent → draft an onboarding checklist → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter (qwen_qwen3.5-2b) — Write a first draft of an onboarding checklist given the stated intent.
  • Polisher (gemma-3-1b-it) — Polish the tone of this an onboarding checklist draft — professional, clear, no filler.
  • Summarizer (gemma-3-4b-it) — Write a one-line subject and a 2-sentence TL;DR for this an onboarding checklist.
Onboarding Checklist Composer — Pro (LocalAI) localai premium sequential

Intent → draft an onboarding checklist → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter (gemma-3-4b-it) — Write a first draft of an onboarding checklist given the stated intent.
  • Polisher (gemma-4-e2b-it-qat-mtp) — Polish the tone of this an onboarding checklist draft — professional, clear, no filler.
  • Summarizer (lfm2.5-1.2b-instruct) — Write a one-line subject and a 2-sentence TL;DR for this an onboarding checklist.
Partnership Agreement Summary Rewriter — Lite (LocalAI) localai premium sequential

Rough a partnership agreement summary → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher (lfm2.5-1.2b-instruct) — Polish this rough a partnership agreement summary draft for grammar and flow.
  • Keyword Pass (qwen_qwen3.5-0.8b) — Add/verify relevant keywords a reader or search would expect in this a partnership agreement summary.
Partnership Agreement Summary Rewriter — Pro (LocalAI) localai premium sequential

Rough a partnership agreement summary → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher (qwen_qwen3.5-2b) — Polish this rough a partnership agreement summary draft for grammar and flow.
  • Keyword Pass (gemma-3-1b-it) — Add/verify relevant keywords a reader or search would expect in this a partnership agreement summary.
Performance Review Composer — Lite (LocalAI) localai premium sequential

Intent → draft a performance review → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter (gemma-3-1b-it) — Write a first draft of a performance review given the stated intent.
  • Polisher (gemma-3-4b-it) — Polish the tone of this a performance review draft — professional, clear, no filler.
  • Summarizer (gemma-4-e2b-it-qat-mtp) — Write a one-line subject and a 2-sentence TL;DR for this a performance review.
Performance Review Composer — Pro (LocalAI) localai premium sequential

Intent → draft a performance review → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter (gemma-4-e2b-it-qat-mtp) — Write a first draft of a performance review given the stated intent.
  • Polisher (lfm2.5-1.2b-instruct) — Polish the tone of this a performance review draft — professional, clear, no filler.
  • Summarizer (qwen_qwen3.5-0.8b) — Write a one-line subject and a 2-sentence TL;DR for this a performance review.
Policy Document QA — Lite (LocalAI) localai premium parallel

Long a policy document → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer (gemma-3-4b-it) — Write a 2-sentence TL;DR of this a policy document.
  • Outliner (gemma-4-e2b-it-qat-mtp) — Extract a section-by-section outline of this a policy document.
  • Term Extractor (lfm2.5-1.2b-instruct) — List key terms/jargon used in this a policy document, with one-line definitions.
Policy Document QA — Pro (LocalAI) localai premium parallel

Long a policy document → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer (lfm2.5-1.2b-instruct) — Write a 2-sentence TL;DR of this a policy document.
  • Outliner (qwen_qwen3.5-0.8b) — Extract a section-by-section outline of this a policy document.
  • Term Extractor (qwen_qwen3.5-2b) — List key terms/jargon used in this a policy document, with one-line definitions.
Press Release Rewriter — Lite (LocalAI) localai premium sequential

Rough a press release → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher (qwen_qwen3.5-0.8b) — Polish this rough a press release draft for grammar and flow.
  • Keyword Pass (qwen_qwen3.5-2b) — Add/verify relevant keywords a reader or search would expect in this a press release.
Press Release Rewriter — Pro (LocalAI) localai premium sequential

Rough a press release → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher (gemma-3-1b-it) — Polish this rough a press release draft for grammar and flow.
  • Keyword Pass (gemma-3-4b-it) — Add/verify relevant keywords a reader or search would expect in this a press release.
Project Charter Composer — Lite (LocalAI) localai premium sequential

Intent → draft a project charter → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter (qwen_qwen3.5-0.8b) — Write a first draft of a project charter given the stated intent.
  • Polisher (qwen_qwen3.5-2b) — Polish the tone of this a project charter draft — professional, clear, no filler.
  • Summarizer (gemma-3-1b-it) — Write a one-line subject and a 2-sentence TL;DR for this a project charter.
Project Charter Composer — Pro (LocalAI) localai premium sequential

Intent → draft a project charter → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter (gemma-3-1b-it) — Write a first draft of a project charter given the stated intent.
  • Polisher (gemma-3-4b-it) — Polish the tone of this a project charter draft — professional, clear, no filler.
  • Summarizer (gemma-4-e2b-it-qat-mtp) — Write a one-line subject and a 2-sentence TL;DR for this a project charter.
Risk Assessment QA (LocalAI) localai premium parallel

Long a risk assessment → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer (qwen_qwen3.5-2b) — Write a 2-sentence TL;DR of this a risk assessment.
  • Outliner (gemma-3-1b-it) — Extract a section-by-section outline of this a risk assessment.
  • Term Extractor (gemma-3-4b-it) — List key terms/jargon used in this a risk assessment, with one-line definitions.
Status Report Composer — Lite (LocalAI) localai premium sequential

Intent → draft a status report → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter (gemma-3-4b-it) — Write a first draft of a status report given the stated intent.
  • Polisher (gemma-4-e2b-it-qat-mtp) — Polish the tone of this a status report draft — professional, clear, no filler.
  • Summarizer (lfm2.5-1.2b-instruct) — Write a one-line subject and a 2-sentence TL;DR for this a status report.
Status Report Composer — Pro (LocalAI) localai premium sequential

Intent → draft a status report → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter (lfm2.5-1.2b-instruct) — Write a first draft of a status report given the stated intent.
  • Polisher (qwen_qwen3.5-0.8b) — Polish the tone of this a status report draft — professional, clear, no filler.
  • Summarizer (qwen_qwen3.5-2b) — Write a one-line subject and a 2-sentence TL;DR for this a status report.
Support Ticket Reply QA — Lite (LocalAI) localai premium parallel

Long a support ticket reply → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer (gemma-4-e2b-it-qat-mtp) — Write a 2-sentence TL;DR of this a support ticket reply.
  • Outliner (lfm2.5-1.2b-instruct) — Extract a section-by-section outline of this a support ticket reply.
  • Term Extractor (qwen_qwen3.5-0.8b) — List key terms/jargon used in this a support ticket reply, with one-line definitions.
Support Ticket Reply QA — Pro (LocalAI) localai premium parallel

Long a support ticket reply → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer (qwen_qwen3.5-0.8b) — Write a 2-sentence TL;DR of this a support ticket reply.
  • Outliner (qwen_qwen3.5-2b) — Extract a section-by-section outline of this a support ticket reply.
  • Term Extractor (gemma-3-1b-it) — List key terms/jargon used in this a support ticket reply, with one-line definitions.
Training Outline Triage — Lite (LocalAI) localai premium parallel

Messy a training outline text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer (lfm2.5-1.2b-instruct) — Summarize this a training outline in exactly 3 bullets.
  • Action Extractor (qwen_qwen3.5-0.8b) — List only concrete action items found in this a training outline, as bullets.
  • Tone Reader (qwen_qwen3.5-2b) — State the tone of this a training outline in one sentence (e.g. urgent, neutral, frustrated).
Training Outline Triage — Pro (LocalAI) localai premium parallel

Messy a training outline text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer (qwen_qwen3.5-2b) — Summarize this a training outline in exactly 3 bullets.
  • Action Extractor (gemma-3-1b-it) — List only concrete action items found in this a training outline, as bullets.
  • Tone Reader (gemma-3-4b-it) — State the tone of this a training outline in one sentence (e.g. urgent, neutral, frustrated).
User Manual Section Extractor — Lite (LocalAI) localai premium parallel

Messy a user manual section text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor (gemma-4-e2b-it-qat-mtp) — Extract structured line items from this a user manual section as a table.
  • Date Finder (lfm2.5-1.2b-instruct) — List every date/deadline mentioned in this a user manual section.
  • Anomaly Spotter (qwen_qwen3.5-0.8b) — Flag anything in this a user manual section that looks inconsistent or wrong.
User Manual Section Extractor — Pro (LocalAI) localai premium parallel

Messy a user manual section text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor (qwen_qwen3.5-0.8b) — Extract structured line items from this a user manual section as a table.
  • Date Finder (qwen_qwen3.5-2b) — List every date/deadline mentioned in this a user manual section.
  • Anomaly Spotter (gemma-3-1b-it) — Flag anything in this a user manual section that looks inconsistent or wrong.
Vendor Contract Summary QA — Lite (LocalAI) localai premium parallel

Long a vendor contract summary → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer (gemma-3-1b-it) — Write a 2-sentence TL;DR of this a vendor contract summary.
  • Outliner (gemma-3-4b-it) — Extract a section-by-section outline of this a vendor contract summary.
  • Term Extractor (gemma-4-e2b-it-qat-mtp) — List key terms/jargon used in this a vendor contract summary, with one-line definitions.
Vendor Contract Summary QA — Pro (LocalAI) localai premium parallel

Long a vendor contract summary → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer (gemma-4-e2b-it-qat-mtp) — Write a 2-sentence TL;DR of this a vendor contract summary.
  • Outliner (lfm2.5-1.2b-instruct) — Extract a section-by-section outline of this a vendor contract summary.
  • Term Extractor (qwen_qwen3.5-0.8b) — List key terms/jargon used in this a vendor contract summary, with one-line definitions.

Dual — Premium (Content tier, Marketplace) (185 combos)

Accessibility (4)

Color Contrast Pass (Dual) dual premium sequential

HTML/UI → color contrast issues found + concrete fixes.

Good for: making content easier to read, navigate, or use for people with different needs.

Example: Say you paste in a page of text or a UI flow you want checked. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: A11y Scanner, Fix Suggester. Use it when you want making content easier to read, navigate, or use for people with different needs.

Steps (2):

  • A11y Scanner O (llama3.2:1b) — Scan this HTML/UI text ONLY for color contrast issues. List concrete problems as bullets, cite the element.
  • Fix Suggester L (gemma-4-e2b-it-qat-mtp) — For each color contrast issue found, suggest a concrete fix (markup/attribute/CSS change).
Focus Indicators Pass (Dual) dual premium sequential

HTML/UI → focus indicators issues found + concrete fixes.

Good for: making content easier to read, navigate, or use for people with different needs.

Example: Say you paste in a page of text or a UI flow you want checked. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: A11y Scanner, Fix Suggester. Use it when you want making content easier to read, navigate, or use for people with different needs.

Steps (2):

  • A11y Scanner O (llama3.2:3b) — Scan this HTML/UI text ONLY for focus indicators issues. List concrete problems as bullets, cite the element.
  • Fix Suggester L (lfm2.5-1.2b-instruct) — For each focus indicators issue found, suggest a concrete fix (markup/attribute/CSS change).
Keyboard Navigation Pass (Dual) dual premium sequential

HTML/UI → keyboard navigation issues found + concrete fixes.

Good for: making content easier to read, navigate, or use for people with different needs.

Example: Say you paste in a page of text or a UI flow you want checked. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: A11y Scanner, Fix Suggester. Use it when you want making content easier to read, navigate, or use for people with different needs.

Steps (2):

  • A11y Scanner O (qwen2.5-coder:1.5b) — Scan this HTML/UI text ONLY for keyboard navigation issues. List concrete problems as bullets, cite the element.
  • Fix Suggester L (gemma-3-1b-it) — For each keyboard navigation issue found, suggest a concrete fix (markup/attribute/CSS change).
Screen-Reader Labeling Pass (Dual) dual premium sequential

HTML/UI → screen-reader labeling issues found + concrete fixes.

Good for: making content easier to read, navigate, or use for people with different needs.

Example: Say you paste in a page of text or a UI flow you want checked. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: A11y Scanner, Fix Suggester. Use it when you want making content easier to read, navigate, or use for people with different needs.

Steps (2):

  • A11y Scanner O (qwen2.5-coder:3b) — Scan this HTML/UI text ONLY for screen-reader labeling issues. List concrete problems as bullets, cite the element.
  • Fix Suggester L (gemma-3-4b-it) — For each screen-reader labeling issue found, suggest a concrete fix (markup/attribute/CSS change).

Coding (52)

Bash Test Generator — Lite (Dual) dual premium parallel

Generate Bash unit tests: happy path, edge cases, and failure modes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Happy Path, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Happy Path O (qwen2.5:1.5b) — Write Bash unit tests for the normal/expected inputs only.
  • Edge Cases L (lfm2.5-1.2b-instruct) — Write Bash unit tests for boundary/edge-case inputs only.
  • Failure Modes O (deepseek-r1:1.5b) — Write Bash unit tests for invalid input / error conditions only.
Bash Test Generator — Pro (Dual) dual premium parallel

Generate Bash unit tests: happy path, edge cases, and failure modes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Happy Path, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Happy Path O (llama3.2:3b) — Write Bash unit tests for the normal/expected inputs only.
  • Edge Cases L (gemma-3-4b-it) — Write Bash unit tests for boundary/edge-case inputs only.
  • Failure Modes O (qwen2.5:1.5b) — Write Bash unit tests for invalid input / error conditions only.
C# Duel — Lite (Dual) dual premium judge

Two C# coders solve the same task differently; a judge picks the cleaner one.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Coder A, Coder B. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Coder A O (smollm2:1.7b) — Solve the given task in C#, straightforward/imperative style. Code only.
  • Coder B L (lfm2.5-1.2b-instruct) — Solve the given task in C#, a more functional/idiomatic style. Code only.
C# Duel — Pro (Dual) dual premium judge

Two C# coders solve the same task differently; a judge picks the cleaner one.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Coder A, Coder B. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Coder A O (qwen2.5-coder:3b) — Solve the given task in C#, straightforward/imperative style. Code only.
  • Coder B L (qwen_qwen3.5-2b) — Solve the given task in C#, a more functional/idiomatic style. Code only.
C# Duel — Standard (Dual) dual premium judge

Two C# coders solve the same task differently; a judge picks the cleaner one.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Coder A, Coder B. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Coder A O (qwen2.5:3b) — Solve the given task in C#, straightforward/imperative style. Code only.
  • Coder B L (gemma-3-4b-it) — Solve the given task in C#, a more functional/idiomatic style. Code only.
C++ Refactor Pass — Lite (Dual) dual premium sequential

Refactor C++ code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer O (llama3.2:1b) — Rewrite the given C++ code for clarity and idiom. Output only the revised code.
  • Verifier L (gemma-3-1b-it) — Sanity-check the refactored C++ code against the original — same behavior? List any risk in 3 bullets max.
C++ Refactor Pass — Pro (Dual) dual premium sequential

Refactor C++ code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer O (qwen2.5:3b) — Rewrite the given C++ code for clarity and idiom. Output only the revised code.
  • Verifier L (qwen_qwen3.5-0.8b) — Sanity-check the refactored C++ code against the original — same behavior? List any risk in 3 bullets max.
C++ Refactor Pass — Standard (Dual) dual premium sequential

Refactor C++ code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer O (gemma2:2b) — Rewrite the given C++ code for clarity and idiom. Output only the revised code.
  • Verifier L (gemma-4-e2b-it-qat-mtp) — Sanity-check the refactored C++ code against the original — same behavior? List any risk in 3 bullets max.
Dart Dockerize — Lite (Dual) dual premium sequential

App description (Dart) → Dockerfile → run notes.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Dockerfile Author, Notes Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Dockerfile Author O (llama3.2:1b) — Write a production-sane Dockerfile for this Dart app description.
  • Notes Writer L (lfm2.5-1.2b-instruct) — Write 3-5 short run/build notes for the Dockerfile above.
Dart Dockerize — Pro (Dual) dual premium sequential

App description (Dart) → Dockerfile → run notes.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Dockerfile Author, Notes Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Dockerfile Author O (qwen2.5-coder:1.5b) — Write a production-sane Dockerfile for this Dart app description.
  • Notes Writer L (gemma-3-4b-it) — Write 3-5 short run/build notes for the Dockerfile above.
Elixir Bug Triage — Lite (Dual) dual premium sequential

Error/log in Elixir → root cause → fix → a test to prevent regression.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Diagnoser, Fixer, Test Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Diagnoser O (qwen2.5:1.5b) — Given a Elixir error/log, state the most likely root cause in 2-3 sentences.
  • Fixer L (lfm2.5-1.2b-instruct) — Propose a concrete Elixir code fix for the diagnosed cause. Code only, minimal diff.
  • Test Writer O (deepseek-r1:1.5b) — Write one Elixir regression test that would have caught this bug.
Elixir Bug Triage — Pro (Dual) dual premium sequential

Error/log in Elixir → root cause → fix → a test to prevent regression.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Diagnoser, Fixer, Test Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Diagnoser O (deepseek-r1:1.5b) — Given a Elixir error/log, state the most likely root cause in 2-3 sentences.
  • Fixer L (qwen_qwen3.5-2b) — Propose a concrete Elixir code fix for the diagnosed cause. Code only, minimal diff.
  • Test Writer O (qwen2.5-coder:1.5b) — Write one Elixir regression test that would have caught this bug.
Go Test Generator — Lite (Dual) dual premium parallel

Generate Go unit tests: happy path, edge cases, and failure modes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Happy Path, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Happy Path O (llama3.2:1b) — Write Go unit tests for the normal/expected inputs only.
  • Edge Cases L (lfm2.5-1.2b-instruct) — Write Go unit tests for boundary/edge-case inputs only.
  • Failure Modes O (gemma2:2b) — Write Go unit tests for invalid input / error conditions only.
Go Test Generator — Pro (Dual) dual premium parallel

Generate Go unit tests: happy path, edge cases, and failure modes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Happy Path, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Happy Path O (gemma2:2b) — Write Go unit tests for the normal/expected inputs only.
  • Edge Cases L (qwen_qwen3.5-2b) — Write Go unit tests for boundary/edge-case inputs only.
  • Failure Modes O (qwen2.5:3b) — Write Go unit tests for invalid input / error conditions only.
Go Test Generator — Standard (Dual) dual premium parallel

Generate Go unit tests: happy path, edge cases, and failure modes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Happy Path, Edge Cases, Failure Modes. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Happy Path O (qwen2.5:3b) — Write Go unit tests for the normal/expected inputs only.
  • Edge Cases L (gemma-3-4b-it) — Write Go unit tests for boundary/edge-case inputs only.
  • Failure Modes O (smollm2:1.7b) — Write Go unit tests for invalid input / error conditions only.
Java Bug Triage — Lite (Dual) dual premium sequential

Error/log in Java → root cause → fix → a test to prevent regression.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Diagnoser, Fixer, Test Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Diagnoser O (qwen2.5:3b) — Given a Java error/log, state the most likely root cause in 2-3 sentences.
  • Fixer L (gemma-3-4b-it) — Propose a concrete Java code fix for the diagnosed cause. Code only, minimal diff.
  • Test Writer O (smollm2:1.7b) — Write one Java regression test that would have caught this bug.
Java Bug Triage — Pro (Dual) dual premium sequential

Error/log in Java → root cause → fix → a test to prevent regression.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Diagnoser, Fixer, Test Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Diagnoser O (gemma2:2b) — Given a Java error/log, state the most likely root cause in 2-3 sentences.
  • Fixer L (qwen_qwen3.5-2b) — Propose a concrete Java code fix for the diagnosed cause. Code only, minimal diff.
  • Test Writer O (qwen2.5:3b) — Write one Java regression test that would have caught this bug.
Java Bug Triage — Standard (Dual) dual premium sequential

Error/log in Java → root cause → fix → a test to prevent regression.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Diagnoser, Fixer, Test Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Diagnoser O (smollm2:1.7b) — Given a Java error/log, state the most likely root cause in 2-3 sentences.
  • Fixer L (lfm2.5-1.2b-instruct) — Propose a concrete Java code fix for the diagnosed cause. Code only, minimal diff.
  • Test Writer O (qwen2.5-coder:3b) — Write one Java regression test that would have caught this bug.
JavaScript Refactor Pass — Lite (Dual) dual premium sequential

Refactor JavaScript code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer O (qwen2.5:1.5b) — Rewrite the given JavaScript code for clarity and idiom. Output only the revised code.
  • Verifier L (gemma-3-1b-it) — Sanity-check the refactored JavaScript code against the original — same behavior? List any risk in 3 bullets max.
JavaScript Refactor Pass — Pro (Dual) dual premium sequential

Refactor JavaScript code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer O (llama3.2:3b) — Rewrite the given JavaScript code for clarity and idiom. Output only the revised code.
  • Verifier L (qwen_qwen3.5-0.8b) — Sanity-check the refactored JavaScript code against the original — same behavior? List any risk in 3 bullets max.
JavaScript Refactor Pass — Standard (Dual) dual premium sequential

Refactor JavaScript code for clarity, then verify nothing broke.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Refactorer, Verifier. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Refactorer O (qwen2.5-coder:3b) — Rewrite the given JavaScript code for clarity and idiom. Output only the revised code.
  • Verifier L (gemma-4-e2b-it-qat-mtp) — Sanity-check the refactored JavaScript code against the original — same behavior? List any risk in 3 bullets max.
Kotlin Explainer — Lite (Dual) dual premium parallel

Kotlin code → plain-English explanation + complexity + risk notes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Explainer, Complexity, Risk Spotter. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Explainer O (qwen2.5-coder:1.5b) — Explain what this Kotlin code does in plain English, no jargon.
  • Complexity L (qwen_qwen3.5-0.8b) — State the time/space complexity of this Kotlin code in one line, with reasoning.
  • Risk Spotter O (llama3.2:1b) — List any risk (security, correctness, maintainability) in this Kotlin code. Bullets.
Kotlin Explainer — Pro (Dual) dual premium parallel

Kotlin code → plain-English explanation + complexity + risk notes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Explainer, Complexity, Risk Spotter. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Explainer O (gemma2:2b) — Explain what this Kotlin code does in plain English, no jargon.
  • Complexity L (gemma-4-e2b-it-qat-mtp) — State the time/space complexity of this Kotlin code in one line, with reasoning.
  • Risk Spotter O (qwen2.5:3b) — List any risk (security, correctness, maintainability) in this Kotlin code. Bullets.
Kotlin Explainer — Standard (Dual) dual premium parallel

Kotlin code → plain-English explanation + complexity + risk notes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Explainer, Complexity, Risk Spotter. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Explainer O (llama3.2:1b) — Explain what this Kotlin code does in plain English, no jargon.
  • Complexity L (gemma-3-1b-it) — State the time/space complexity of this Kotlin code in one line, with reasoning.
  • Risk Spotter O (gemma2:2b) — List any risk (security, correctness, maintainability) in this Kotlin code. Bullets.
Lua Commit Writer — Lite (Dual) dual premium sequential

Lua diff/notes → summary → Conventional Commit message.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Summarizer, Commit Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Summarizer O (smollm2:1.7b) — Summarize what this Lua diff/change actually does, in plain English.
  • Commit Writer L (gemma-3-1b-it) — Write a Conventional Commits message (type, scope, subject, body) for this change.
Lua Commit Writer — Pro (Dual) dual premium sequential

Lua diff/notes → summary → Conventional Commit message.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Summarizer, Commit Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Summarizer O (qwen2.5-coder:3b) — Summarize what this Lua diff/change actually does, in plain English.
  • Commit Writer L (gemma-4-e2b-it-qat-mtp) — Write a Conventional Commits message (type, scope, subject, body) for this change.
PHP API Designer — Lite (Dual) dual premium sequential

Idea → REST endpoints in PHP conventions → example payloads.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: API Designer, Example Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • API Designer O (qwen2.5:1.5b) — Given a feature idea, propose REST endpoints following PHP-ecosystem conventions.
  • Example Writer L (gemma-3-1b-it) — Write example request/response JSON payloads for the proposed endpoints.
PHP API Designer — Pro (Dual) dual premium sequential

Idea → REST endpoints in PHP conventions → example payloads.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: API Designer, Example Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • API Designer O (qwen2.5-coder:1.5b) — Given a feature idea, propose REST endpoints following PHP-ecosystem conventions.
  • Example Writer L (qwen_qwen3.5-0.8b) — Write example request/response JSON payloads for the proposed endpoints.
PHP API Designer — Standard (Dual) dual premium sequential

Idea → REST endpoints in PHP conventions → example payloads.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: API Designer, Example Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • API Designer O (deepseek-r1:1.5b) — Given a feature idea, propose REST endpoints following PHP-ecosystem conventions.
  • Example Writer L (gemma-4-e2b-it-qat-mtp) — Write example request/response JSON payloads for the proposed endpoints.
Perl Duel — Lite (Dual) dual premium judge

Two Perl coders solve the same task differently; a judge picks the cleaner one.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Coder A, Coder B. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Coder A O (deepseek-r1:1.5b) — Solve the given task in Perl, straightforward/imperative style. Code only.
  • Coder B L (qwen_qwen3.5-2b) — Solve the given task in Perl, a more functional/idiomatic style. Code only.
Perl Duel — Pro (Dual) dual premium judge

Two Perl coders solve the same task differently; a judge picks the cleaner one.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Coder A, Coder B. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Coder A O (qwen2.5-coder:1.5b) — Solve the given task in Perl, straightforward/imperative style. Code only.
  • Coder B L (gemma-3-4b-it) — Solve the given task in Perl, a more functional/idiomatic style. Code only.
Python Code Reviewer — Lite (Dual) dual premium parallel

Three specialists audit Python code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter O (qwen2.5-coder:1.5b) — List ONLY Python syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker L (gemma-3-4b-it) — Point out non-idiomatic Python — what a senior Python dev would flag in review. Bullets only.
  • Performance O (llama3.2:1b) — Report ONLY performance concerns for this Python code — hot loops, allocations, complexity. Bullets.
Python Code Reviewer — Pro (Dual) dual premium parallel

Three specialists audit Python code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter O (gemma2:2b) — List ONLY Python syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker L (qwen_qwen3.5-2b) — Point out non-idiomatic Python — what a senior Python dev would flag in review. Bullets only.
  • Performance O (qwen2.5:3b) — Report ONLY performance concerns for this Python code — hot loops, allocations, complexity. Bullets.
Python Code Reviewer — Standard (Dual) dual premium parallel

Three specialists audit Python code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter O (llama3.2:1b) — List ONLY Python syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker L (lfm2.5-1.2b-instruct) — Point out non-idiomatic Python — what a senior Python dev would flag in review. Bullets only.
  • Performance O (gemma2:2b) — Report ONLY performance concerns for this Python code — hot loops, allocations, complexity. Bullets.
R Explainer — Lite (Dual) dual premium parallel

R code → plain-English explanation + complexity + risk notes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Explainer, Complexity, Risk Spotter. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Explainer O (llama3.2:3b) — Explain what this R code does in plain English, no jargon.
  • Complexity L (qwen_qwen3.5-0.8b) — State the time/space complexity of this R code in one line, with reasoning.
  • Risk Spotter O (qwen2.5:1.5b) — List any risk (security, correctness, maintainability) in this R code. Bullets.
R Explainer — Pro (Dual) dual premium parallel

R code → plain-English explanation + complexity + risk notes, in parallel.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Explainer, Complexity, Risk Spotter. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Explainer O (qwen2.5-coder:3b) — Explain what this R code does in plain English, no jargon.
  • Complexity L (gemma-4-e2b-it-qat-mtp) — State the time/space complexity of this R code in one line, with reasoning.
  • Risk Spotter O (llama3.2:3b) — List any risk (security, correctness, maintainability) in this R code. Bullets.
Ruby Dockerize — Lite (Dual) dual premium sequential

App description (Ruby) → Dockerfile → run notes.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Dockerfile Author, Notes Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Dockerfile Author O (smollm2:1.7b) — Write a production-sane Dockerfile for this Ruby app description.
  • Notes Writer L (lfm2.5-1.2b-instruct) — Write 3-5 short run/build notes for the Dockerfile above.
Ruby Dockerize — Pro (Dual) dual premium sequential

App description (Ruby) → Dockerfile → run notes.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Dockerfile Author, Notes Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Dockerfile Author O (llama3.2:3b) — Write a production-sane Dockerfile for this Ruby app description.
  • Notes Writer L (gemma-3-4b-it) — Write 3-5 short run/build notes for the Dockerfile above.
Ruby Dockerize — Standard (Dual) dual premium sequential

App description (Ruby) → Dockerfile → run notes.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Dockerfile Author, Notes Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Dockerfile Author O (qwen2.5-coder:3b) — Write a production-sane Dockerfile for this Ruby app description.
  • Notes Writer L (qwen_qwen3.5-2b) — Write 3-5 short run/build notes for the Dockerfile above.
Rust → Docs — Lite (Dual) dual premium sequential

Turn Rust code into a short README, then tighten it.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Doc Writer, Editor. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Doc Writer O (qwen2.5:1.5b) — Write a concise Markdown README for this Rust code: what it does, how to use it.
  • Editor L (gemma-3-1b-it) — Tighten the README — cut fluff, keep only what a new user actually needs.
Rust → Docs — Pro (Dual) dual premium sequential

Turn Rust code into a short README, then tighten it.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Doc Writer, Editor. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Doc Writer O (llama3.2:3b) — Write a concise Markdown README for this Rust code: what it does, how to use it.
  • Editor L (qwen_qwen3.5-0.8b) — Tighten the README — cut fluff, keep only what a new user actually needs.
Rust → Docs — Standard (Dual) dual premium sequential

Turn Rust code into a short README, then tighten it.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Doc Writer, Editor. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Doc Writer O (deepseek-r1:1.5b) — Write a concise Markdown README for this Rust code: what it does, how to use it.
  • Editor L (gemma-4-e2b-it-qat-mtp) — Tighten the README — cut fluff, keep only what a new user actually needs.
SQL → Docs — Lite (Dual) dual premium sequential

Turn SQL code into a short README, then tighten it.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Doc Writer, Editor. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Doc Writer O (gemma2:2b) — Write a concise Markdown README for this SQL code: what it does, how to use it.
  • Editor L (gemma-4-e2b-it-qat-mtp) — Tighten the README — cut fluff, keep only what a new user actually needs.
SQL → Docs — Pro (Dual) dual premium sequential

Turn SQL code into a short README, then tighten it.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Doc Writer, Editor. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Doc Writer O (qwen2.5:3b) — Write a concise Markdown README for this SQL code: what it does, how to use it.
  • Editor L (qwen_qwen3.5-0.8b) — Tighten the README — cut fluff, keep only what a new user actually needs.
Scala API Designer — Lite (Dual) dual premium sequential

Idea → REST endpoints in Scala conventions → example payloads.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: API Designer, Example Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • API Designer O (smollm2:1.7b) — Given a feature idea, propose REST endpoints following Scala-ecosystem conventions.
  • Example Writer L (gemma-3-1b-it) — Write example request/response JSON payloads for the proposed endpoints.
Scala API Designer — Pro (Dual) dual premium sequential

Idea → REST endpoints in Scala conventions → example payloads.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: API Designer, Example Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • API Designer O (qwen2.5:3b) — Given a feature idea, propose REST endpoints following Scala-ecosystem conventions.
  • Example Writer L (qwen_qwen3.5-0.8b) — Write example request/response JSON payloads for the proposed endpoints.
Swift Code Reviewer — Lite (Dual) dual premium parallel

Three specialists audit Swift code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter O (qwen2.5:1.5b) — List ONLY Swift syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker L (lfm2.5-1.2b-instruct) — Point out non-idiomatic Swift — what a senior Swift dev would flag in review. Bullets only.
  • Performance O (deepseek-r1:1.5b) — Report ONLY performance concerns for this Swift code — hot loops, allocations, complexity. Bullets.
Swift Code Reviewer — Pro (Dual) dual premium parallel

Three specialists audit Swift code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter O (qwen2.5-coder:3b) — List ONLY Swift syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker L (qwen_qwen3.5-2b) — Point out non-idiomatic Swift — what a senior Swift dev would flag in review. Bullets only.
  • Performance O (llama3.2:3b) — Report ONLY performance concerns for this Swift code — hot loops, allocations, complexity. Bullets.
Swift Code Reviewer — Standard (Dual) dual premium parallel

Three specialists audit Swift code: bugs, style/idioms, and performance.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Bug Hunter, Idiom Checker, Performance. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (3):

  • Bug Hunter O (llama3.2:3b) — List ONLY Swift syntax errors, logic flaws, likely bugs as short bullets. No praise, no rewrite.
  • Idiom Checker L (gemma-3-4b-it) — Point out non-idiomatic Swift — what a senior Swift dev would flag in review. Bullets only.
  • Performance O (qwen2.5:1.5b) — Report ONLY performance concerns for this Swift code — hot loops, allocations, complexity. Bullets.
TypeScript Commit Writer — Lite (Dual) dual premium sequential

TypeScript diff/notes → summary → Conventional Commit message.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Summarizer, Commit Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Summarizer O (llama3.2:1b) — Summarize what this TypeScript diff/change actually does, in plain English.
  • Commit Writer L (gemma-3-1b-it) — Write a Conventional Commits message (type, scope, subject, body) for this change.
TypeScript Commit Writer — Pro (Dual) dual premium sequential

TypeScript diff/notes → summary → Conventional Commit message.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Summarizer, Commit Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Summarizer O (qwen2.5-coder:1.5b) — Summarize what this TypeScript diff/change actually does, in plain English.
  • Commit Writer L (qwen_qwen3.5-0.8b) — Write a Conventional Commits message (type, scope, subject, body) for this change.
TypeScript Commit Writer — Standard (Dual) dual premium sequential

TypeScript diff/notes → summary → Conventional Commit message.

Good for: reviewing, debugging, or documenting code without sending it to a cloud API.

Example: Say you paste in a function or file you're working on. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Summarizer, Commit Writer. Use it when you want reviewing, debugging, or documenting code without sending it to a cloud API.

Steps (2):

  • Summarizer O (deepseek-r1:1.5b) — Summarize what this TypeScript diff/change actually does, in plain English.
  • Commit Writer L (gemma-4-e2b-it-qat-mtp) — Write a Conventional Commits message (type, scope, subject, body) for this change.

Creative Writing (11)

Cozy Mystery Story Continuation (Dual) dual premium sequential

Premise → cozy mystery outline → next chapter → cliffhanger.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Outliner, Writer, Hook Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • Outliner O (llama3.2:3b) — Outline the next 3 beats of this cozy mystery story premise.
  • Writer L (qwen_qwen3.5-0.8b) — Write the next chapter/scene in cozy mystery style, following the outline.
  • Hook Writer O (qwen2.5:1.5b) — Write a one-paragraph cliffhanger ending for this cozy mystery chapter.
Cyberpunk Heist Story Continuation (Dual) dual premium sequential

Premise → cyberpunk heist outline → next chapter → cliffhanger.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Outliner, Writer, Hook Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • Outliner O (deepseek-r1:1.5b) — Outline the next 3 beats of this cyberpunk heist story premise.
  • Writer L (gemma-4-e2b-it-qat-mtp) — Write the next chapter/scene in cyberpunk heist style, following the outline.
  • Hook Writer O (qwen2.5-coder:1.5b) — Write a one-paragraph cliffhanger ending for this cyberpunk heist chapter.
Fairy-Tale Retelling Worldbuilder (Dual) dual premium parallel

One prompt → fairy-tale retelling setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect O (smollm2:1.7b) — Describe a fairy-tale retelling setting for this prompt — geography, mood, era.
  • Faction Writer L (lfm2.5-1.2b-instruct) — Invent 2-3 factions/groups that fit this fairy-tale retelling setting.
  • NPC Writer O (qwen2.5-coder:3b) — Invent 2 memorable NPCs that fit this fairy-tale retelling setting.
Gothic Horror Worldbuilder (Dual) dual premium parallel

One prompt → gothic horror setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect O (qwen2.5:3b) — Describe a gothic horror setting for this prompt — geography, mood, era.
  • Faction Writer L (gemma-3-4b-it) — Invent 2-3 factions/groups that fit this gothic horror setting.
  • NPC Writer O (smollm2:1.7b) — Invent 2 memorable NPCs that fit this gothic horror setting.
Hard Sci-Fi Worldbuilder (Dual) dual premium parallel

One prompt → hard sci-fi setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect O (qwen2.5-coder:1.5b) — Describe a hard sci-fi setting for this prompt — geography, mood, era.
  • Faction Writer L (gemma-3-4b-it) — Invent 2-3 factions/groups that fit this hard sci-fi setting.
  • NPC Writer O (llama3.2:1b) — Invent 2 memorable NPCs that fit this hard sci-fi setting.
High Fantasy Story Continuation (Dual) dual premium sequential

Premise → high fantasy outline → next chapter → cliffhanger.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Outliner, Writer, Hook Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • Outliner O (qwen2.5-coder:3b) — Outline the next 3 beats of this high fantasy story premise.
  • Writer L (gemma-4-e2b-it-qat-mtp) — Write the next chapter/scene in high fantasy style, following the outline.
  • Hook Writer O (llama3.2:3b) — Write a one-paragraph cliffhanger ending for this high fantasy chapter.
Historical Fiction Story Continuation (Dual) dual premium sequential

Premise → historical fiction outline → next chapter → cliffhanger.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Outliner, Writer, Hook Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • Outliner O (qwen2.5-coder:1.5b) — Outline the next 3 beats of this historical fiction story premise.
  • Writer L (qwen_qwen3.5-0.8b) — Write the next chapter/scene in historical fiction style, following the outline.
  • Hook Writer O (llama3.2:1b) — Write a one-paragraph cliffhanger ending for this historical fiction chapter.
Noir Detective Worldbuilder (Dual) dual premium parallel

One prompt → noir detective setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect O (llama3.2:1b) — Describe a noir detective setting for this prompt — geography, mood, era.
  • Faction Writer L (lfm2.5-1.2b-instruct) — Invent 2-3 factions/groups that fit this noir detective setting.
  • NPC Writer O (gemma2:2b) — Invent 2 memorable NPCs that fit this noir detective setting.
Post-Apocalyptic Survival Worldbuilder (Dual) dual premium parallel

One prompt → post-apocalyptic survival setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect O (gemma2:2b) — Describe a post-apocalyptic survival setting for this prompt — geography, mood, era.
  • Faction Writer L (qwen_qwen3.5-2b) — Invent 2-3 factions/groups that fit this post-apocalyptic survival setting.
  • NPC Writer O (qwen2.5:3b) — Invent 2 memorable NPCs that fit this post-apocalyptic survival setting.
Romantic Comedy Worldbuilder (Dual) dual premium parallel

One prompt → romantic comedy setting + factions + tech/magic + NPCs, in parallel.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: World Architect, Faction Writer, NPC Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • World Architect O (qwen2.5-coder:3b) — Describe a romantic comedy setting for this prompt — geography, mood, era.
  • Faction Writer L (qwen_qwen3.5-2b) — Invent 2-3 factions/groups that fit this romantic comedy setting.
  • NPC Writer O (llama3.2:3b) — Invent 2 memorable NPCs that fit this romantic comedy setting.
Space Opera Story Continuation (Dual) dual premium sequential

Premise → space opera outline → next chapter → cliffhanger.

Good for: fiction writing — worldbuilding, plotting, or continuing a story.

Example: Say you paste in a story idea, character, or scene you're building. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Outliner, Writer, Hook Writer. Use it when you want fiction writing — worldbuilding, plotting, or continuing a story.

Steps (3):

  • Outliner O (qwen2.5:1.5b) — Outline the next 3 beats of this space opera story premise.
  • Writer L (gemma-3-1b-it) — Write the next chapter/scene in space opera style, following the outline.
  • Hook Writer O (deepseek-r1:1.5b) — Write a one-paragraph cliffhanger ending for this space opera chapter.

Data & Research (15)

Clinical Trial Data Notes Digest (Dual) dual premium parallel

clinical trial data notes → summary + notable claims + what to verify, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Claim Spotter, Verifier. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Summarizer O (smollm2:1.7b) — Summarize the key findings visible in this clinical trial data notes sample.
  • Claim Spotter L (lfm2.5-1.2b-instruct) — List any strong/surprising claims implied by this clinical trial data notes sample.
  • Verifier O (qwen2.5-coder:3b) — List what in this clinical trial data notes sample would need independent verification before acting on it.
Customer Support Transcripts Digest — Lite (Dual) dual premium parallel

customer support transcripts → summary + notable claims + what to verify, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Claim Spotter, Verifier. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Summarizer O (llama3.2:1b) — Summarize the key findings visible in this customer support transcripts sample.
  • Claim Spotter L (lfm2.5-1.2b-instruct) — List any strong/surprising claims implied by this customer support transcripts sample.
  • Verifier O (gemma2:2b) — List what in this customer support transcripts sample would need independent verification before acting on it.
Customer Support Transcripts Digest — Pro (Dual) dual premium parallel

customer support transcripts → summary + notable claims + what to verify, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Claim Spotter, Verifier. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Summarizer O (qwen2.5:1.5b) — Summarize the key findings visible in this customer support transcripts sample.
  • Claim Spotter L (lfm2.5-1.2b-instruct) — List any strong/surprising claims implied by this customer support transcripts sample.
  • Verifier O (deepseek-r1:1.5b) — List what in this customer support transcripts sample would need independent verification before acting on it.
E-Commerce Order Exports Cleaner — Lite (Dual) dual premium parallel

Messy e-commerce order exports → schema guess + cleaned rows + anomalies, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Schema Guesser, Cleaner, Anomaly Spotter. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Schema Guesser O (gemma2:2b) — Guess a reasonable schema (column names + types) for this e-commerce order exports sample.
  • Cleaner L (gemma-4-e2b-it-qat-mtp) — Reformat this e-commerce order exports sample into clean, consistent rows.
  • Anomaly Spotter O (qwen2.5:3b) — Flag rows/values in this e-commerce order exports sample that look wrong or inconsistent.
E-Commerce Order Exports Cleaner — Pro (Dual) dual premium parallel

Messy e-commerce order exports → schema guess + cleaned rows + anomalies, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Schema Guesser, Cleaner, Anomaly Spotter. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Schema Guesser O (qwen2.5-coder:3b) — Guess a reasonable schema (column names + types) for this e-commerce order exports sample.
  • Cleaner L (gemma-4-e2b-it-qat-mtp) — Reformat this e-commerce order exports sample into clean, consistent rows.
  • Anomaly Spotter O (llama3.2:3b) — Flag rows/values in this e-commerce order exports sample that look wrong or inconsistent.
Financial Transaction Records Cleaner (Dual) dual premium parallel

Messy financial transaction records → schema guess + cleaned rows + anomalies, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Schema Guesser, Cleaner, Anomaly Spotter. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Schema Guesser O (gemma2:2b) — Guess a reasonable schema (column names + types) for this financial transaction records sample.
  • Cleaner L (qwen_qwen3.5-2b) — Reformat this financial transaction records sample into clean, consistent rows.
  • Anomaly Spotter O (qwen2.5:3b) — Flag rows/values in this financial transaction records sample that look wrong or inconsistent.
Inventory Stock Reports Cleaner (Dual) dual premium parallel

Messy inventory stock reports → schema guess + cleaned rows + anomalies, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Schema Guesser, Cleaner, Anomaly Spotter. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Schema Guesser O (qwen2.5-coder:3b) — Guess a reasonable schema (column names + types) for this inventory stock reports sample.
  • Cleaner L (qwen_qwen3.5-2b) — Reformat this inventory stock reports sample into clean, consistent rows.
  • Anomaly Spotter O (llama3.2:3b) — Flag rows/values in this inventory stock reports sample that look wrong or inconsistent.
Iot Device Logs Cleaner (Dual) dual premium parallel

Messy IoT device logs → schema guess + cleaned rows + anomalies, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Schema Guesser, Cleaner, Anomaly Spotter. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Schema Guesser O (deepseek-r1:1.5b) — Guess a reasonable schema (column names + types) for this IoT device logs sample.
  • Cleaner L (gemma-4-e2b-it-qat-mtp) — Reformat this IoT device logs sample into clean, consistent rows.
  • Anomaly Spotter O (qwen2.5-coder:1.5b) — Flag rows/values in this IoT device logs sample that look wrong or inconsistent.
Sensor Telemetry Readings Extraction (Dual) dual premium parallel

Messy sensor telemetry readings → structured tokens + human summary + timestamps, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Summarizer, Timestamp Finder. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Extractor O (llama3.2:3b) — Pull structured fields out of this sensor telemetry readings sample, as a table.
  • Summarizer L (qwen_qwen3.5-0.8b) — Summarize what's happening in this sensor telemetry readings sample, in plain English.
  • Timestamp Finder O (qwen2.5:1.5b) — List every timestamp/date found in this sensor telemetry readings sample.
Server Access Logs Extraction — Lite (Dual) dual premium parallel

Messy server access logs → structured tokens + human summary + timestamps, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Summarizer, Timestamp Finder. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Extractor O (qwen2.5-coder:1.5b) — Pull structured fields out of this server access logs sample, as a table.
  • Summarizer L (gemma-3-4b-it) — Summarize what's happening in this server access logs sample, in plain English.
  • Timestamp Finder O (llama3.2:1b) — List every timestamp/date found in this server access logs sample.
Server Access Logs Extraction — Pro (Dual) dual premium parallel

Messy server access logs → structured tokens + human summary + timestamps, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Summarizer, Timestamp Finder. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Extractor O (llama3.2:3b) — Pull structured fields out of this server access logs sample, as a table.
  • Summarizer L (gemma-3-4b-it) — Summarize what's happening in this server access logs sample, in plain English.
  • Timestamp Finder O (qwen2.5:1.5b) — List every timestamp/date found in this server access logs sample.
Shipment Tracking Logs Digest (Dual) dual premium parallel

shipment tracking logs → summary + notable claims + what to verify, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Claim Spotter, Verifier. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Summarizer O (llama3.2:1b) — Summarize the key findings visible in this shipment tracking logs sample.
  • Claim Spotter L (gemma-3-1b-it) — List any strong/surprising claims implied by this shipment tracking logs sample.
  • Verifier O (gemma2:2b) — List what in this shipment tracking logs sample would need independent verification before acting on it.
Social Media Engagement Exports Extraction (Dual) dual premium parallel

Messy social media engagement exports → structured tokens + human summary + timestamps, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Summarizer, Timestamp Finder. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Extractor O (qwen2.5:3b) — Pull structured fields out of this social media engagement exports sample, as a table.
  • Summarizer L (gemma-3-4b-it) — Summarize what's happening in this social media engagement exports sample, in plain English.
  • Timestamp Finder O (smollm2:1.7b) — List every timestamp/date found in this social media engagement exports sample.
Survey Response Exports Digest (Dual) dual premium parallel

survey response exports → summary + notable claims + what to verify, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Claim Spotter, Verifier. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Summarizer O (qwen2.5:1.5b) — Summarize the key findings visible in this survey response exports sample.
  • Claim Spotter L (gemma-3-1b-it) — List any strong/surprising claims implied by this survey response exports sample.
  • Verifier O (deepseek-r1:1.5b) — List what in this survey response exports sample would need independent verification before acting on it.
Website Analytics Exports Extraction (Dual) dual premium parallel

Messy website analytics exports → structured tokens + human summary + timestamps, in parallel.

Good for: checking claims, cleaning messy data, or digesting long research material.

Example: Say you paste in a claim, a messy CSV snippet, or a stack of research notes. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Summarizer, Timestamp Finder. Use it when you want checking claims, cleaning messy data, or digesting long research material.

Steps (3):

  • Extractor O (qwen2.5-coder:1.5b) — Pull structured fields out of this website analytics exports sample, as a table.
  • Summarizer L (qwen_qwen3.5-0.8b) — Summarize what's happening in this website analytics exports sample, in plain English.
  • Timestamp Finder O (llama3.2:1b) — List every timestamp/date found in this website analytics exports sample.

Image Prompting (18)

Anime/Manga Concepts x3 (Dual) dual premium parallel

Idea → 3 distinct anime/manga prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A O (deepseek-r1:1.5b) — Write a anime/manga-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B L (gemma-4-e2b-it-qat-mtp) — Write a anime/manga-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C O (qwen2.5-coder:1.5b) — Write a anime/manga-style image prompt for this idea, direction C (unexpected angle).
Art Nouveau Prompt Studio (Dual) dual premium sequential

Idea → detailed art nouveau image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer O (qwen2.5-coder:1.5b) — Turn this idea into a detailed art nouveau-style image generation prompt.
  • Negative Prompt Writer L (qwen_qwen3.5-0.8b) — Write a negative prompt to pair with the art nouveau prompt above — what to avoid.
Charcoal Sketch Storyboard (Dual) dual premium sequential

Concept → scenes → charcoal sketch-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown O (llama3.2:1b) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer L (gemma-3-1b-it) — Write a charcoal sketch-style image prompt for each scene above.
Claymation Prompt Studio (Dual) dual premium sequential

Idea → detailed claymation image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer O (llama3.2:3b) — Turn this idea into a detailed claymation-style image generation prompt.
  • Negative Prompt Writer L (gemma-3-4b-it) — Write a negative prompt to pair with the claymation prompt above — what to avoid.
Concept Art Storyboard (Dual) dual premium sequential

Concept → scenes → concept art-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown O (smollm2:1.7b) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer L (gemma-3-1b-it) — Write a concept art-style image prompt for each scene above.
Cyberpunk Neon Storyboard (Dual) dual premium sequential

Concept → scenes → cyberpunk neon-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown O (llama3.2:1b) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer L (lfm2.5-1.2b-instruct) — Write a cyberpunk neon-style image prompt for each scene above.
Film Noir Storyboard (Dual) dual premium sequential

Concept → scenes → film noir-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown O (smollm2:1.7b) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer L (lfm2.5-1.2b-instruct) — Write a film noir-style image prompt for each scene above.
Flat Vector Illustration Prompt Studio (Dual) dual premium sequential

Idea → detailed flat vector illustration image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer O (llama3.2:3b) — Turn this idea into a detailed flat vector illustration-style image generation prompt.
  • Negative Prompt Writer L (qwen_qwen3.5-0.8b) — Write a negative prompt to pair with the flat vector illustration prompt above — what to avoid.
Isometric 3D Render Storyboard (Dual) dual premium sequential

Concept → scenes → isometric 3D render-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown O (qwen2.5:1.5b) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer L (gemma-3-1b-it) — Write a isometric 3D render-style image prompt for each scene above.
Low-Poly 3D Concepts x3 (Dual) dual premium parallel

Idea → 3 distinct low-poly 3D prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A O (qwen2.5-coder:3b) — Write a low-poly 3D-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B L (qwen_qwen3.5-2b) — Write a low-poly 3D-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C O (llama3.2:3b) — Write a low-poly 3D-style image prompt for this idea, direction C (unexpected angle).
Minimalist Line Art Prompt Studio (Dual) dual premium sequential

Idea → detailed minimalist line art image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer O (qwen2.5:3b) — Turn this idea into a detailed minimalist line art-style image generation prompt.
  • Negative Prompt Writer L (qwen_qwen3.5-0.8b) — Write a negative prompt to pair with the minimalist line art prompt above — what to avoid.
Oil Painting Concepts x3 (Dual) dual premium parallel

Idea → 3 distinct oil painting prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A O (gemma2:2b) — Write a oil painting-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B L (qwen_qwen3.5-2b) — Write a oil painting-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C O (qwen2.5:3b) — Write a oil painting-style image prompt for this idea, direction C (unexpected angle).
Photorealistic Prompt Studio (Dual) dual premium sequential

Idea → detailed photorealistic image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer O (qwen2.5-coder:1.5b) — Turn this idea into a detailed photorealistic-style image generation prompt.
  • Negative Prompt Writer L (gemma-3-4b-it) — Write a negative prompt to pair with the photorealistic prompt above — what to avoid.
Pixel Art Prompt Studio (Dual) dual premium sequential

Idea → detailed pixel art image-generation prompt → negative prompt.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Prompt Writer, Negative Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Prompt Writer O (qwen2.5:3b) — Turn this idea into a detailed pixel art-style image generation prompt.
  • Negative Prompt Writer L (gemma-3-4b-it) — Write a negative prompt to pair with the pixel art prompt above — what to avoid.
Pop Art Concepts x3 (Dual) dual premium parallel

Idea → 3 distinct pop art prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A O (deepseek-r1:1.5b) — Write a pop art-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B L (qwen_qwen3.5-2b) — Write a pop art-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C O (qwen2.5-coder:1.5b) — Write a pop art-style image prompt for this idea, direction C (unexpected angle).
Steampunk Storyboard (Dual) dual premium sequential

Concept → scenes → steampunk-style shot prompts.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Scene Breakdown, Prompt Writer. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (2):

  • Scene Breakdown O (qwen2.5:1.5b) — Break this concept into 4-6 numbered scenes.
  • Prompt Writer L (lfm2.5-1.2b-instruct) — Write a steampunk-style image prompt for each scene above.
Vaporwave Concepts x3 (Dual) dual premium parallel

Idea → 3 distinct vaporwave prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A O (gemma2:2b) — Write a vaporwave-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B L (gemma-4-e2b-it-qat-mtp) — Write a vaporwave-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C O (qwen2.5:3b) — Write a vaporwave-style image prompt for this idea, direction C (unexpected angle).
Watercolor Painting Concepts x3 (Dual) dual premium parallel

Idea → 3 distinct watercolor painting prompt directions, in parallel.

Good for: turning a rough idea into a detailed prompt for an image generator.

Example: Say you paste in one line describing what you want to see (e.g. "a lighthouse at sunset"). This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Concept A, Concept B, Concept C. Use it when you want turning a rough idea into a detailed prompt for an image generator.

Steps (3):

  • Concept A O (qwen2.5-coder:3b) — Write a watercolor painting-style image prompt for this idea, direction A (bold/dramatic).
  • Concept B L (gemma-4-e2b-it-qat-mtp) — Write a watercolor painting-style image prompt for this idea, direction B (subtle/minimal).
  • Concept C O (llama3.2:3b) — Write a watercolor painting-style image prompt for this idea, direction C (unexpected angle).

Language & Translation (30)

Arabic Grammar & Clarity — Lite (Dual) dual premium sequential

Text in Arabic → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer O (gemma2:2b) — Fix grammar/spelling errors in this Arabic text. Output corrected text only.
  • Clarity Editor L (qwen_qwen3.5-2b) — Tighten this Arabic text for clarity — cut redundancy, keep meaning.
Arabic Grammar & Clarity — Pro (Dual) dual premium sequential

Text in Arabic → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer O (qwen2.5:3b) — Fix grammar/spelling errors in this Arabic text. Output corrected text only.
  • Clarity Editor L (gemma-3-4b-it) — Tighten this Arabic text for clarity — cut redundancy, keep meaning.
Dutch Translator Pro (Dual) dual premium sequential

Translate to Dutch → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator O (qwen2.5-coder:3b) — Translate the given text into Dutch. Natural, not literal.
  • Back-Translator L (qwen_qwen3.5-2b) — Translate the Dutch translation back into English.
  • Drift Fixer O (llama3.2:3b) — Compare original vs back-translation; fix the Dutch version if meaning drifted.
French Localization — Lite (Dual) dual premium parallel

UI text → French + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer O (qwen2.5-coder:3b) — Translate this UI text into French, concise and natural for a UI label.
  • Tooltip Writer L (gemma-4-e2b-it-qat-mtp) — Write a short French tooltip/help text version of this UI text.
French Localization — Pro (Dual) dual premium parallel

UI text → French + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer O (llama3.2:3b) — Translate this UI text into French, concise and natural for a UI label.
  • Tooltip Writer L (qwen_qwen3.5-0.8b) — Write a short French tooltip/help text version of this UI text.
German Tone Rewriter — Lite (Dual) dual premium parallel

Text → formal + casual German versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice O (llama3.2:1b) — Translate/rewrite this text into formal, professional German.
  • Casual Voice L (lfm2.5-1.2b-instruct) — Translate/rewrite this text into casual, everyday German.
German Tone Rewriter — Pro (Dual) dual premium parallel

Text → formal + casual German versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice O (gemma2:2b) — Translate/rewrite this text into formal, professional German.
  • Casual Voice L (qwen_qwen3.5-2b) — Translate/rewrite this text into casual, everyday German.
Greek Localization (Dual) dual premium parallel

UI text → Greek + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer O (deepseek-r1:1.5b) — Translate this UI text into Greek, concise and natural for a UI label.
  • Tooltip Writer L (qwen_qwen3.5-2b) — Write a short Greek tooltip/help text version of this UI text.
Hebrew Subtitle Pass — Lite (Dual) dual premium sequential

Transcript lines → Hebrew translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator O (qwen2.5:1.5b) — Translate these subtitle lines into Hebrew, keeping line breaks intact.
  • Format Checker L (gemma-3-1b-it) — Verify the Hebrew lines still match the original line count/timing markers.
Hebrew Subtitle Pass — Pro (Dual) dual premium sequential

Transcript lines → Hebrew translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator O (llama3.2:3b) — Translate these subtitle lines into Hebrew, keeping line breaks intact.
  • Format Checker L (qwen_qwen3.5-0.8b) — Verify the Hebrew lines still match the original line count/timing markers.
Hindi Subtitle Pass (Dual) dual premium sequential

Transcript lines → Hindi translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator O (gemma2:2b) — Translate these subtitle lines into Hindi, keeping line breaks intact.
  • Format Checker L (gemma-4-e2b-it-qat-mtp) — Verify the Hindi lines still match the original line count/timing markers.
Italian Localization — Lite (Dual) dual premium parallel

UI text → Italian + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer O (smollm2:1.7b) — Translate this UI text into Italian, concise and natural for a UI label.
  • Tooltip Writer L (lfm2.5-1.2b-instruct) — Write a short Italian tooltip/help text version of this UI text.
Italian Localization — Pro (Dual) dual premium parallel

UI text → Italian + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer O (qwen2.5:3b) — Translate this UI text into Italian, concise and natural for a UI label.
  • Tooltip Writer L (gemma-3-4b-it) — Write a short Italian tooltip/help text version of this UI text.
Japanese Translator Pro — Lite (Dual) dual premium sequential

Translate to Japanese → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator O (qwen2.5:1.5b) — Translate the given text into Japanese. Natural, not literal.
  • Back-Translator L (gemma-3-1b-it) — Translate the Japanese translation back into English.
  • Drift Fixer O (deepseek-r1:1.5b) — Compare original vs back-translation; fix the Japanese version if meaning drifted.
Japanese Translator Pro — Pro (Dual) dual premium sequential

Translate to Japanese → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator O (deepseek-r1:1.5b) — Translate the given text into Japanese. Natural, not literal.
  • Back-Translator L (gemma-4-e2b-it-qat-mtp) — Translate the Japanese translation back into English.
  • Drift Fixer O (qwen2.5-coder:1.5b) — Compare original vs back-translation; fix the Japanese version if meaning drifted.
Korean Grammar & Clarity — Lite (Dual) dual premium sequential

Text in Korean → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer O (llama3.2:1b) — Fix grammar/spelling errors in this Korean text. Output corrected text only.
  • Clarity Editor L (gemma-3-1b-it) — Tighten this Korean text for clarity — cut redundancy, keep meaning.
Korean Grammar & Clarity — Pro (Dual) dual premium sequential

Text in Korean → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer O (qwen2.5-coder:1.5b) — Fix grammar/spelling errors in this Korean text. Output corrected text only.
  • Clarity Editor L (qwen_qwen3.5-0.8b) — Tighten this Korean text for clarity — cut redundancy, keep meaning.
Mandarin Chinese Grammar & Clarity (Dual) dual premium sequential

Text in Mandarin Chinese → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer O (qwen2.5:1.5b) — Fix grammar/spelling errors in this Mandarin Chinese text. Output corrected text only.
  • Clarity Editor L (lfm2.5-1.2b-instruct) — Tighten this Mandarin Chinese text for clarity — cut redundancy, keep meaning.
Polish Localization (Dual) dual premium parallel

UI text → Polish + tooltip variants, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Localizer, Tooltip Writer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Localizer O (llama3.2:1b) — Translate this UI text into Polish, concise and natural for a UI label.
  • Tooltip Writer L (gemma-3-1b-it) — Write a short Polish tooltip/help text version of this UI text.
Portuguese Tone Rewriter — Lite (Dual) dual premium parallel

Text → formal + casual Portuguese versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice O (deepseek-r1:1.5b) — Translate/rewrite this text into formal, professional Portuguese.
  • Casual Voice L (gemma-4-e2b-it-qat-mtp) — Translate/rewrite this text into casual, everyday Portuguese.
Portuguese Tone Rewriter — Pro (Dual) dual premium parallel

Text → formal + casual Portuguese versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice O (qwen2.5-coder:1.5b) — Translate/rewrite this text into formal, professional Portuguese.
  • Casual Voice L (qwen_qwen3.5-0.8b) — Translate/rewrite this text into casual, everyday Portuguese.
Russian Subtitle Pass — Lite (Dual) dual premium sequential

Transcript lines → Russian translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator O (smollm2:1.7b) — Translate these subtitle lines into Russian, keeping line breaks intact.
  • Format Checker L (lfm2.5-1.2b-instruct) — Verify the Russian lines still match the original line count/timing markers.
Russian Subtitle Pass — Pro (Dual) dual premium sequential

Transcript lines → Russian translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator O (qwen2.5-coder:3b) — Translate these subtitle lines into Russian, keeping line breaks intact.
  • Format Checker L (qwen_qwen3.5-2b) — Verify the Russian lines still match the original line count/timing markers.
Spanish Translator Pro — Lite (Dual) dual premium sequential

Translate to Spanish → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator O (qwen2.5-coder:1.5b) — Translate the given text into Spanish. Natural, not literal.
  • Back-Translator L (gemma-3-4b-it) — Translate the Spanish translation back into English.
  • Drift Fixer O (llama3.2:1b) — Compare original vs back-translation; fix the Spanish version if meaning drifted.
Spanish Translator Pro — Pro (Dual) dual premium sequential

Translate to Spanish → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator O (llama3.2:1b) — Translate the given text into Spanish. Natural, not literal.
  • Back-Translator L (lfm2.5-1.2b-instruct) — Translate the Spanish translation back into English.
  • Drift Fixer O (gemma2:2b) — Compare original vs back-translation; fix the Spanish version if meaning drifted.
Swedish Translator Pro (Dual) dual premium sequential

Translate to Swedish → back-translate to verify → fix drift.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Back-Translator, Drift Fixer. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (3):

  • Translator O (qwen2.5:3b) — Translate the given text into Swedish. Natural, not literal.
  • Back-Translator L (qwen_qwen3.5-0.8b) — Translate the Swedish translation back into English.
  • Drift Fixer O (smollm2:1.7b) — Compare original vs back-translation; fix the Swedish version if meaning drifted.
Thai Subtitle Pass (Dual) dual premium sequential

Transcript lines → Thai translation → keep timing/format.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Translator, Format Checker. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Translator O (qwen2.5-coder:1.5b) — Translate these subtitle lines into Thai, keeping line breaks intact.
  • Format Checker L (gemma-3-4b-it) — Verify the Thai lines still match the original line count/timing markers.
Turkish Tone Rewriter (Dual) dual premium parallel

Text → formal + casual Turkish versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice O (llama3.2:3b) — Translate/rewrite this text into formal, professional Turkish.
  • Casual Voice L (gemma-3-4b-it) — Translate/rewrite this text into casual, everyday Turkish.
Ukrainian Grammar & Clarity (Dual) dual premium sequential

Text in Ukrainian → grammar fix → clarity tighten.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Grammar Fixer, Clarity Editor. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Grammar Fixer O (qwen2.5-coder:3b) — Fix grammar/spelling errors in this Ukrainian text. Output corrected text only.
  • Clarity Editor L (gemma-4-e2b-it-qat-mtp) — Tighten this Ukrainian text for clarity — cut redundancy, keep meaning.
Vietnamese Tone Rewriter (Dual) dual premium parallel

Text → formal + casual Vietnamese versions, in parallel.

Good for: translating or adapting text between languages, tones, or reading levels.

Example: Say you paste in a sentence or paragraph you want translated or rewritten. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Formal Voice, Casual Voice. Use it when you want translating or adapting text between languages, tones, or reading levels.

Steps (2):

  • Formal Voice O (smollm2:1.7b) — Translate/rewrite this text into formal, professional Vietnamese.
  • Casual Voice L (gemma-3-1b-it) — Translate/rewrite this text into casual, everyday Vietnamese.

Learning & Study (18)

Bayesian Inference Debate (Dual) dual premium judge

3 agents argue about Bayesian inference; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A O (qwen2.5:1.5b) — Give the strongest argument/explanation of Bayesian inference, angle A.
  • Advocate B L (lfm2.5-1.2b-instruct) — Give the strongest argument/explanation of Bayesian inference, angle B, different framing.
Blockchain Consensus — 3 Levels (Dual) dual premium parallel

Explain blockchain consensus at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher O (llama3.2:3b) — Explain blockchain consensus like the reader is 10 years old. No jargon.
  • Intermediate Teacher L (qwen_qwen3.5-0.8b) — Explain blockchain consensus for someone with basic background — some technical terms OK.
  • Expert O (qwen2.5:1.5b) — Explain blockchain consensus at expert depth, precise terminology, no hand-holding.
Compound Interest Debate (Dual) dual premium judge

3 agents argue about compound interest; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A O (llama3.2:1b) — Give the strongest argument/explanation of compound interest, angle A.
  • Advocate B L (lfm2.5-1.2b-instruct) — Give the strongest argument/explanation of compound interest, angle B, different framing.
Dna Transcription Debate (Dual) dual premium judge

3 agents argue about DNA transcription; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A O (llama3.2:1b) — Give the strongest argument/explanation of DNA transcription, angle A.
  • Advocate B L (gemma-3-1b-it) — Give the strongest argument/explanation of DNA transcription, angle B, different framing.
Game Theory Nash Equilibrium Flashcards (Dual) dual premium sequential

Text about game theory Nash equilibrium → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor O (qwen2.5-coder:3b) — Extract the key facts about game theory Nash equilibrium from the given text, as bullets.
  • Flashcard Writer L (qwen_qwen3.5-2b) — Turn those facts into Q/A flashcards about game theory Nash equilibrium (JSON array of {q,a}).
Greenhouse Effect Flashcards (Dual) dual premium sequential

Text about greenhouse effect → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor O (deepseek-r1:1.5b) — Extract the key facts about greenhouse effect from the given text, as bullets.
  • Flashcard Writer L (qwen_qwen3.5-2b) — Turn those facts into Q/A flashcards about greenhouse effect (JSON array of {q,a}).
Inflation And Monetary Policy — 3 Levels (Dual) dual premium parallel

Explain inflation and monetary policy at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher O (qwen2.5-coder:1.5b) — Explain inflation and monetary policy like the reader is 10 years old. No jargon.
  • Intermediate Teacher L (qwen_qwen3.5-0.8b) — Explain inflation and monetary policy for someone with basic background — some technical terms OK.
  • Expert O (llama3.2:1b) — Explain inflation and monetary policy at expert depth, precise terminology, no hand-holding.
Neural Network Backpropagation Flashcards (Dual) dual premium sequential

Text about neural network backpropagation → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor O (deepseek-r1:1.5b) — Extract the key facts about neural network backpropagation from the given text, as bullets.
  • Flashcard Writer L (gemma-4-e2b-it-qat-mtp) — Turn those facts into Q/A flashcards about neural network backpropagation (JSON array of {q,a}).
Photosynthesis — 3 Levels (Dual) dual premium parallel

Explain photosynthesis at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher O (qwen2.5-coder:1.5b) — Explain photosynthesis like the reader is 10 years old. No jargon.
  • Intermediate Teacher L (gemma-3-4b-it) — Explain photosynthesis for someone with basic background — some technical terms OK.
  • Expert O (llama3.2:1b) — Explain photosynthesis at expert depth, precise terminology, no hand-holding.
Plate Tectonics Flashcards (Dual) dual premium sequential

Text about plate tectonics → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor O (gemma2:2b) — Extract the key facts about plate tectonics from the given text, as bullets.
  • Flashcard Writer L (gemma-4-e2b-it-qat-mtp) — Turn those facts into Q/A flashcards about plate tectonics (JSON array of {q,a}).
Quantum Entanglement Flashcards (Dual) dual premium sequential

Text about quantum entanglement → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor O (gemma2:2b) — Extract the key facts about quantum entanglement from the given text, as bullets.
  • Flashcard Writer L (qwen_qwen3.5-2b) — Turn those facts into Q/A flashcards about quantum entanglement (JSON array of {q,a}).
Recursion Flashcards (Dual) dual premium sequential

Text about recursion → key facts → Q/A flashcards.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Fact Extractor, Flashcard Writer. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Fact Extractor O (qwen2.5-coder:3b) — Extract the key facts about recursion from the given text, as bullets.
  • Flashcard Writer L (gemma-4-e2b-it-qat-mtp) — Turn those facts into Q/A flashcards about recursion (JSON array of {q,a}).
Supply And Demand Debate (Dual) dual premium judge

3 agents argue about supply and demand; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A O (qwen2.5:1.5b) — Give the strongest argument/explanation of supply and demand, angle A.
  • Advocate B L (gemma-3-1b-it) — Give the strongest argument/explanation of supply and demand, angle B, different framing.
Tcp/Ip Handshake Debate (Dual) dual premium judge

3 agents argue about TCP/IP handshake; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A O (smollm2:1.7b) — Give the strongest argument/explanation of TCP/IP handshake, angle A.
  • Advocate B L (gemma-3-1b-it) — Give the strongest argument/explanation of TCP/IP handshake, angle B, different framing.
The Cap Theorem — 3 Levels (Dual) dual premium parallel

Explain the CAP theorem at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher O (llama3.2:3b) — Explain the CAP theorem like the reader is 10 years old. No jargon.
  • Intermediate Teacher L (gemma-3-4b-it) — Explain the CAP theorem for someone with basic background — some technical terms OK.
  • Expert O (qwen2.5:1.5b) — Explain the CAP theorem at expert depth, precise terminology, no hand-holding.
The French Revolution Causes — 3 Levels (Dual) dual premium parallel

Explain the French Revolution causes at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher O (qwen2.5:3b) — Explain the French Revolution causes like the reader is 10 years old. No jargon.
  • Intermediate Teacher L (qwen_qwen3.5-0.8b) — Explain the French Revolution causes for someone with basic background — some technical terms OK.
  • Expert O (smollm2:1.7b) — Explain the French Revolution causes at expert depth, precise terminology, no hand-holding.
The Krebs Cycle Debate (Dual) dual premium judge

3 agents argue about the Krebs cycle; a judge synthesizes the strongest take.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs several steps in parallel, then a final judge step reads all of them and picks or merges the best answer. The specialists involved are: Advocate A, Advocate B. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (2):

  • Advocate A O (smollm2:1.7b) — Give the strongest argument/explanation of the Krebs cycle, angle A.
  • Advocate B L (lfm2.5-1.2b-instruct) — Give the strongest argument/explanation of the Krebs cycle, angle B, different framing.
The Water Cycle — 3 Levels (Dual) dual premium parallel

Explain the water cycle at ELI5 + intermediate + expert level, in parallel.

Good for: studying a topic at your own pace — explanations, quizzes, or practice material.

Example: Say you paste in a topic or question you want to understand better. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: ELI5 Teacher, Intermediate Teacher, Expert. Use it when you want studying a topic at your own pace — explanations, quizzes, or practice material.

Steps (3):

  • ELI5 Teacher O (qwen2.5:3b) — Explain the water cycle like the reader is 10 years old. No jargon.
  • Intermediate Teacher L (gemma-3-4b-it) — Explain the water cycle for someone with basic background — some technical terms OK.
  • Expert O (smollm2:1.7b) — Explain the water cycle at expert depth, precise terminology, no hand-holding.

Office & Docs (37)

Board Update Extractor — Lite (Dual) dual premium parallel

Messy a board update text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor O (qwen2.5:3b) — Extract structured line items from this a board update as a table.
  • Date Finder L (qwen_qwen3.5-0.8b) — List every date/deadline mentioned in this a board update.
  • Anomaly Spotter O (smollm2:1.7b) — Flag anything in this a board update that looks inconsistent or wrong.
Board Update Extractor — Pro (Dual) dual premium parallel

Messy a board update text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor O (gemma2:2b) — Extract structured line items from this a board update as a table.
  • Date Finder L (gemma-4-e2b-it-qat-mtp) — List every date/deadline mentioned in this a board update.
  • Anomaly Spotter O (qwen2.5:3b) — Flag anything in this a board update that looks inconsistent or wrong.
Client Proposal Triage — Lite (Dual) dual premium parallel

Messy a client proposal text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer O (qwen2.5-coder:1.5b) — Summarize this a client proposal in exactly 3 bullets.
  • Action Extractor L (gemma-3-4b-it) — List only concrete action items found in this a client proposal, as bullets.
  • Tone Reader O (llama3.2:1b) — State the tone of this a client proposal in one sentence (e.g. urgent, neutral, frustrated).
Client Proposal Triage — Pro (Dual) dual premium parallel

Messy a client proposal text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer O (llama3.2:1b) — Summarize this a client proposal in exactly 3 bullets.
  • Action Extractor L (lfm2.5-1.2b-instruct) — List only concrete action items found in this a client proposal, as bullets.
  • Tone Reader O (gemma2:2b) — State the tone of this a client proposal in one sentence (e.g. urgent, neutral, frustrated).
Compliance Checklist Extractor (Dual) dual premium parallel

Messy a compliance checklist text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor O (qwen2.5-coder:1.5b) — Extract structured line items from this a compliance checklist as a table.
  • Date Finder L (gemma-3-4b-it) — List every date/deadline mentioned in this a compliance checklist.
  • Anomaly Spotter O (llama3.2:1b) — Flag anything in this a compliance checklist that looks inconsistent or wrong.
Customer Complaint Response Rewriter — Lite (Dual) dual premium sequential

Rough a customer complaint response → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher O (qwen2.5:1.5b) — Polish this rough a customer complaint response draft for grammar and flow.
  • Keyword Pass L (lfm2.5-1.2b-instruct) — Add/verify relevant keywords a reader or search would expect in this a customer complaint response.
Customer Complaint Response Rewriter — Pro (Dual) dual premium sequential

Rough a customer complaint response → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher O (deepseek-r1:1.5b) — Polish this rough a customer complaint response draft for grammar and flow.
  • Keyword Pass L (qwen_qwen3.5-2b) — Add/verify relevant keywords a reader or search would expect in this a customer complaint response.
Executive Summary Rewriter (Dual) dual premium sequential

Rough an executive summary → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher O (qwen2.5-coder:3b) — Polish this rough an executive summary draft for grammar and flow.
  • Keyword Pass L (gemma-4-e2b-it-qat-mtp) — Add/verify relevant keywords a reader or search would expect in this an executive summary.
Grant Application Triage — Lite (Dual) dual premium parallel

Messy a grant application text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer O (llama3.2:3b) — Summarize this a grant application in exactly 3 bullets.
  • Action Extractor L (gemma-3-4b-it) — List only concrete action items found in this a grant application, as bullets.
  • Tone Reader O (qwen2.5:1.5b) — State the tone of this a grant application in one sentence (e.g. urgent, neutral, frustrated).
Grant Application Triage — Pro (Dual) dual premium parallel

Messy a grant application text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer O (qwen2.5-coder:3b) — Summarize this a grant application in exactly 3 bullets.
  • Action Extractor L (qwen_qwen3.5-2b) — List only concrete action items found in this a grant application, as bullets.
  • Tone Reader O (llama3.2:3b) — State the tone of this a grant application in one sentence (e.g. urgent, neutral, frustrated).
Internal Memo Extractor — Lite (Dual) dual premium parallel

Messy an internal memo text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor O (qwen2.5:1.5b) — Extract structured line items from this an internal memo as a table.
  • Date Finder L (gemma-3-1b-it) — List every date/deadline mentioned in this an internal memo.
  • Anomaly Spotter O (deepseek-r1:1.5b) — Flag anything in this an internal memo that looks inconsistent or wrong.
Internal Memo Extractor — Pro (Dual) dual premium parallel

Messy an internal memo text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor O (llama3.2:3b) — Extract structured line items from this an internal memo as a table.
  • Date Finder L (qwen_qwen3.5-0.8b) — List every date/deadline mentioned in this an internal memo.
  • Anomaly Spotter O (qwen2.5:1.5b) — Flag anything in this an internal memo that looks inconsistent or wrong.
Job Posting Triage — Lite (Dual) dual premium parallel

Messy a job posting text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer O (qwen2.5:1.5b) — Summarize this a job posting in exactly 3 bullets.
  • Action Extractor L (gemma-3-1b-it) — List only concrete action items found in this a job posting, as bullets.
  • Tone Reader O (deepseek-r1:1.5b) — State the tone of this a job posting in one sentence (e.g. urgent, neutral, frustrated).
Job Posting Triage — Pro (Dual) dual premium parallel

Messy a job posting text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer O (deepseek-r1:1.5b) — Summarize this a job posting in exactly 3 bullets.
  • Action Extractor L (gemma-4-e2b-it-qat-mtp) — List only concrete action items found in this a job posting, as bullets.
  • Tone Reader O (qwen2.5-coder:1.5b) — State the tone of this a job posting in one sentence (e.g. urgent, neutral, frustrated).
Onboarding Checklist Composer — Lite (Dual) dual premium sequential

Intent → draft an onboarding checklist → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter O (llama3.2:1b) — Write a first draft of an onboarding checklist given the stated intent.
  • Polisher L (gemma-3-1b-it) — Polish the tone of this an onboarding checklist draft — professional, clear, no filler.
  • Summarizer O (gemma2:2b) — Write a one-line subject and a 2-sentence TL;DR for this an onboarding checklist.
Onboarding Checklist Composer — Pro (Dual) dual premium sequential

Intent → draft an onboarding checklist → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter O (gemma2:2b) — Write a first draft of an onboarding checklist given the stated intent.
  • Polisher L (gemma-4-e2b-it-qat-mtp) — Polish the tone of this an onboarding checklist draft — professional, clear, no filler.
  • Summarizer O (qwen2.5:3b) — Write a one-line subject and a 2-sentence TL;DR for this an onboarding checklist.
Partnership Agreement Summary Rewriter — Lite (Dual) dual premium sequential

Rough a partnership agreement summary → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher O (llama3.2:1b) — Polish this rough a partnership agreement summary draft for grammar and flow.
  • Keyword Pass L (gemma-3-1b-it) — Add/verify relevant keywords a reader or search would expect in this a partnership agreement summary.
Partnership Agreement Summary Rewriter — Pro (Dual) dual premium sequential

Rough a partnership agreement summary → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher O (qwen2.5-coder:1.5b) — Polish this rough a partnership agreement summary draft for grammar and flow.
  • Keyword Pass L (qwen_qwen3.5-0.8b) — Add/verify relevant keywords a reader or search would expect in this a partnership agreement summary.
Performance Review Composer — Lite (Dual) dual premium sequential

Intent → draft a performance review → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter O (qwen2.5:3b) — Write a first draft of a performance review given the stated intent.
  • Polisher L (gemma-3-4b-it) — Polish the tone of this a performance review draft — professional, clear, no filler.
  • Summarizer O (smollm2:1.7b) — Write a one-line subject and a 2-sentence TL;DR for this a performance review.
Performance Review Composer — Pro (Dual) dual premium sequential

Intent → draft a performance review → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter O (smollm2:1.7b) — Write a first draft of a performance review given the stated intent.
  • Polisher L (lfm2.5-1.2b-instruct) — Polish the tone of this a performance review draft — professional, clear, no filler.
  • Summarizer O (qwen2.5-coder:3b) — Write a one-line subject and a 2-sentence TL;DR for this a performance review.
Policy Document QA — Lite (Dual) dual premium parallel

Long a policy document → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer O (qwen2.5-coder:1.5b) — Write a 2-sentence TL;DR of this a policy document.
  • Outliner L (qwen_qwen3.5-0.8b) — Extract a section-by-section outline of this a policy document.
  • Term Extractor O (llama3.2:1b) — List key terms/jargon used in this a policy document, with one-line definitions.
Policy Document QA — Pro (Dual) dual premium parallel

Long a policy document → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer O (deepseek-r1:1.5b) — Write a 2-sentence TL;DR of this a policy document.
  • Outliner L (gemma-4-e2b-it-qat-mtp) — Extract a section-by-section outline of this a policy document.
  • Term Extractor O (qwen2.5-coder:1.5b) — List key terms/jargon used in this a policy document, with one-line definitions.
Press Release Rewriter — Lite (Dual) dual premium sequential

Rough a press release → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher O (gemma2:2b) — Polish this rough a press release draft for grammar and flow.
  • Keyword Pass L (qwen_qwen3.5-2b) — Add/verify relevant keywords a reader or search would expect in this a press release.
Press Release Rewriter — Pro (Dual) dual premium sequential

Rough a press release → polish → keyword pass.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Polisher, Keyword Pass. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (2):

  • Polisher O (qwen2.5:3b) — Polish this rough a press release draft for grammar and flow.
  • Keyword Pass L (gemma-3-4b-it) — Add/verify relevant keywords a reader or search would expect in this a press release.
Project Charter Composer — Lite (Dual) dual premium sequential

Intent → draft a project charter → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter O (qwen2.5-coder:1.5b) — Write a first draft of a project charter given the stated intent.
  • Polisher L (gemma-3-4b-it) — Polish the tone of this a project charter draft — professional, clear, no filler.
  • Summarizer O (llama3.2:1b) — Write a one-line subject and a 2-sentence TL;DR for this a project charter.
Project Charter Composer — Pro (Dual) dual premium sequential

Intent → draft a project charter → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter O (deepseek-r1:1.5b) — Write a first draft of a project charter given the stated intent.
  • Polisher L (qwen_qwen3.5-2b) — Polish the tone of this a project charter draft — professional, clear, no filler.
  • Summarizer O (qwen2.5-coder:1.5b) — Write a one-line subject and a 2-sentence TL;DR for this a project charter.
Risk Assessment QA (Dual) dual premium parallel

Long a risk assessment → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer O (smollm2:1.7b) — Write a 2-sentence TL;DR of this a risk assessment.
  • Outliner L (gemma-3-1b-it) — Extract a section-by-section outline of this a risk assessment.
  • Term Extractor O (qwen2.5-coder:3b) — List key terms/jargon used in this a risk assessment, with one-line definitions.
Status Report Composer — Lite (Dual) dual premium sequential

Intent → draft a status report → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter O (llama3.2:3b) — Write a first draft of a status report given the stated intent.
  • Polisher L (qwen_qwen3.5-0.8b) — Polish the tone of this a status report draft — professional, clear, no filler.
  • Summarizer O (qwen2.5:1.5b) — Write a one-line subject and a 2-sentence TL;DR for this a status report.
Status Report Composer — Pro (Dual) dual premium sequential

Intent → draft a status report → tone polish → subject/TL;DR.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs each step in order, feeding the previous step's output into the next — like an assembly line. The specialists involved are: Drafter, Polisher, Summarizer. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Drafter O (qwen2.5-coder:3b) — Write a first draft of a status report given the stated intent.
  • Polisher L (gemma-4-e2b-it-qat-mtp) — Polish the tone of this a status report draft — professional, clear, no filler.
  • Summarizer O (llama3.2:3b) — Write a one-line subject and a 2-sentence TL;DR for this a status report.
Support Ticket Reply QA — Lite (Dual) dual premium parallel

Long a support ticket reply → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer O (llama3.2:1b) — Write a 2-sentence TL;DR of this a support ticket reply.
  • Outliner L (lfm2.5-1.2b-instruct) — Extract a section-by-section outline of this a support ticket reply.
  • Term Extractor O (gemma2:2b) — List key terms/jargon used in this a support ticket reply, with one-line definitions.
Support Ticket Reply QA — Pro (Dual) dual premium parallel

Long a support ticket reply → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer O (gemma2:2b) — Write a 2-sentence TL;DR of this a support ticket reply.
  • Outliner L (qwen_qwen3.5-2b) — Extract a section-by-section outline of this a support ticket reply.
  • Term Extractor O (qwen2.5:3b) — List key terms/jargon used in this a support ticket reply, with one-line definitions.
Training Outline Triage — Lite (Dual) dual premium parallel

Messy a training outline text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer O (qwen2.5:3b) — Summarize this a training outline in exactly 3 bullets.
  • Action Extractor L (qwen_qwen3.5-0.8b) — List only concrete action items found in this a training outline, as bullets.
  • Tone Reader O (smollm2:1.7b) — State the tone of this a training outline in one sentence (e.g. urgent, neutral, frustrated).
Training Outline Triage — Pro (Dual) dual premium parallel

Messy a training outline text → 3-bullet summary + action items + tone read, in parallel.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Summarizer, Action Extractor, Tone Reader. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Summarizer O (smollm2:1.7b) — Summarize this a training outline in exactly 3 bullets.
  • Action Extractor L (gemma-3-1b-it) — List only concrete action items found in this a training outline, as bullets.
  • Tone Reader O (qwen2.5-coder:3b) — State the tone of this a training outline in one sentence (e.g. urgent, neutral, frustrated).
User Manual Section Extractor — Lite (Dual) dual premium parallel

Messy a user manual section text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor O (smollm2:1.7b) — Extract structured line items from this a user manual section as a table.
  • Date Finder L (lfm2.5-1.2b-instruct) — List every date/deadline mentioned in this a user manual section.
  • Anomaly Spotter O (qwen2.5-coder:3b) — Flag anything in this a user manual section that looks inconsistent or wrong.
User Manual Section Extractor — Pro (Dual) dual premium parallel

Messy a user manual section text → structured line items + totals/dates + anomalies.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: Extractor, Date Finder, Anomaly Spotter. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • Extractor O (qwen2.5-coder:3b) — Extract structured line items from this a user manual section as a table.
  • Date Finder L (qwen_qwen3.5-2b) — List every date/deadline mentioned in this a user manual section.
  • Anomaly Spotter O (llama3.2:3b) — Flag anything in this a user manual section that looks inconsistent or wrong.
Vendor Contract Summary QA — Lite (Dual) dual premium parallel

Long a vendor contract summary → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer O (qwen2.5:1.5b) — Write a 2-sentence TL;DR of this a vendor contract summary.
  • Outliner L (lfm2.5-1.2b-instruct) — Extract a section-by-section outline of this a vendor contract summary.
  • Term Extractor O (deepseek-r1:1.5b) — List key terms/jargon used in this a vendor contract summary, with one-line definitions.
Vendor Contract Summary QA — Pro (Dual) dual premium parallel

Long a vendor contract summary → TL;DR + outline + key terms + open questions.

Good for: turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Example: Say you paste in a paragraph of meeting notes or a rough draft. This combo runs every step at the same time on the same input, then shows you all the answers side by side so you can compare them. The specialists involved are: TL;DR Writer, Outliner, Term Extractor. Use it when you want turning rough notes, meeting audio, or spreadsheets into clean, usable documents.

Steps (3):

  • TL;DR Writer O (llama3.2:3b) — Write a 2-sentence TL;DR of this a vendor contract summary.
  • Outliner L (gemma-3-4b-it) — Extract a section-by-section outline of this a vendor contract summary.
  • Term Extractor O (qwen2.5:1.5b) — List key terms/jargon used in this a vendor contract summary, with one-line definitions.