Skip to main content
This track is meant to be completed in order. It is a course about how to design agents in the QitOS mindmap without guessing where prompt policy, parser choice, tool composition, memory, and traceability belong. Every lesson keeps the same kernel (the core AgentModule + Engine execution loop): task -> state -> prompt/protocol -> decision -> tool execution -> reduce -> trace What changes is the policy layer you build on top of that kernel.

Two authoring paths

The course now explicitly teaches QitOS through two authoring paths:
  • Research-first: handwrite prompt, parser (a component that converts raw model output into a typed Decision), protocol (the output format the model is asked to follow), transport (the adapter that sends requests to and receives responses from a model API), and tool surface.
  • Preset-first: keep the agent implementation stable and switch model families through family presets (reusable configuration bundles for a model family).
The research-first path is still the default mental model for understanding the kernel. The preset-first path is the acceleration layer you adopt once you want stronger reuse or cleaner multi-family comparisons.

What makes this track different

Each lesson is written to be self-contained. Every lesson explicitly covers:
  • the exact agent shape you are building
  • the state fields you introduce and why they matter
  • the system prompt or prompt pair you use
  • the parser or protocol contract that matches that prompt
  • the tool surface or preset toolset you expose
  • the model harness you use to talk to the LLM
  • the memory and history choice for that stage of complexity
  • the qita trace checkpoints you should inspect after the run
If a concept is not introduced yet, that is deliberate. The course is progressive.

The QitOS design worksheet

When you design an agent in QitOS, you are always answering the same questions: That worksheet stays constant across all four lessons.

The progression

How model harnesses fit into the course

The first three lessons start from the same simple mental model on purpose:
  • one transport
  • one parser contract
  • prompt-injected tool schema
  • a visible LLM -> parser -> Decision path
That is the shortest path for learning the kernel. In v0.4, the flagship coding example grows one level deeper:
  • you still get an OpenAICompatibleModel transport (the adapter that sends requests to and receives responses from a model API) underneath
  • but you now resolve it through a family preset and a harness (the wiring layer that connects a transport, parser, and protocol) policy first
This keeps one example portable across Qwen, Kimi, MiniMax, gpt-oss, and Gemma 4. Later in the course you will also learn how to reason about protocol upgrades:
  • stay with ReAct text when you want maximal portability
  • move to JSON or XML when you want stricter output contracts
  • use Terminus protocols when the agent controls a live terminal stream
  • use MiniMaxToolCallParser or another model-specific harness when the model emits native structured tool calls
QitOS supports those variants, but the course starts with the most transferable path.

Lesson 1: ReAct

Start with the smallest agent that still uses real tools, a real prompt, a real parser, and qita.

Lesson 2: PlanAct

Add explicit planning while keeping execution on the same default Engine path.

Lesson 3: Claude Code-style agent

Learn preset toolsets, workflow prompts, history control, and when compaction becomes necessary.

Lesson 4: Code security audit agent

Learn domain specialization, ranked findings, and how to use qita as a review artifact.

Research-first example

See the bare handwritten harness path in one real coding agent.

Preset-first switching

Learn how one coding agent switches across multiple model families.

v0.3 reproducibility workshops

Reproducible benchmark runs

Learn the official qit bench path, normalized result rows, and official-run metadata.

Replay failed runs

Learn how qita board, replay, export, and diff turn traces into review-grade artifacts.

Switch model families

Use the same Claude Code-style example across Qwen, Kimi, MiniMax, gpt-oss, and Gemma 4.

v0.4 framework deep-dives

Critic system

Control agent behavior quality at runtime with continue/stop/retry verdicts and instruction patches.

Hook lifecycle

Observe and extend the Engine execution loop with custom hooks.

@function_tool API

Turn Python functions into QitOS tools with a single decorator.

MCP integration

Bridge MCP servers into QitOS agent tool registries.

Checkpoint and fork

Save, resume, and branch agent runs with checkpointing.

Before you begin

  • You have already run Quickstart or First Agent.
  • You understand the AgentModule + Engine split from Agent module and Engine.
  • You can provide an OpenAI-compatible model endpoint, either directly or through a QitOS family preset.

What you should know after lesson 4

You should be able to:
  • design a system prompt as a protocol contract rather than as vague instructions
  • choose a parser that matches the prompt instead of treating parsing as cleanup
  • decide when to hand-build a registry and when to switch to a preset toolset
  • choose between state-only memory, HistoryPolicy, CompactHistory, and explicit memory adapters
  • understand when a model-specific harness is worth the extra coupling
  • use qita to debug prompt failures, parser failures, bad tool choices, and context collapse

Build your first agent

Review the base AgentModule contract before or alongside the course.

Agent patterns

See the broader map of ReAct, PlanAct, Tree-of-Thought, and Reflexion.

Kit reference

Look up parsers, planners, toolsets, memory, and history helpers used by the lessons.

Observability

Learn how qita board, replay, and export turn traces into research artifacts.