Documentation Index
Fetch the complete documentation index at: https://docs.blobhub.io/llms.txt
Use this file to discover all available pages before exploring further.
job_type is the discriminator that selects how the worker handles a section. Every section in
~/.blobhub-worker/config.yaml declares one, and the worker dispatches the section to the matching
job-type implementation. For the user-level mental model of sections, sessions, and agents, see
Concepts; this page is the specification of what the discriminator selects.
A section’s job_type determines three things:
- Required blocks — which job-type-specific blocks the section must declare under it (e.g.
session_agent_harnessrequires asessionblock). - Top-level blocks — which additional top-level config blocks apply to the section (e.g.
session_agent_harnessconsults theagentsblock for agent settings). - Runtime behavior — what the worker actually does with the section: what it attaches to, what it polls, and what it posts.
start flow handles process startup, identity checks, config load, and section
dispatch. Once a section is dispatched, the per-job-type implementation owns its lifetime — including
recovery on restart.
Supported job types
job_type | Purpose | Reference |
|---|---|---|
session_agent_harness | Attach to one BlobHub session, watch its thread session objects, and drive a coding agent (Claude Code, Codex) per thread that the user hands off. | Session Agent Harness → Overview |
config.yaml blocks are shared by all job types and documented once under
Configuration.
Adding a new job type
Future job types land as their own navigation group alongside Session Agent Harness, following the same shape (overview, filesystem layout, session objects, workflows, reference). The generic Overview pages and the sharedconfig.yaml reference do not change when a job type is added; only that job
type’s sections shape and its top-level block usage are new.
See also
- Concepts — the user-level mental model of sections, sessions, and agents.
- Configuration — generic
config.yamlblocks shared by all job types. blobhub-worker start

