Reference

Agents runtime names

Decode the public, internal, and legacy agent identifiers that may appear in raw logs or older pipeline data.

What this means

Most Bilbis screens show public agent labels - Work Planner, Implementation Agent, Review Agent, and so on. The same agents have older identifiers that still surface in raw telemetry, exports, diagnostics, and pre-rebrand pipeline rows. The customer-facing UI maps every form to the public label automatically, so this page is only useful when you're reading raw values.

Three identifier generations exist:

  • Public label - what end users see in the timeline, header, and clarification badges.
  • Internal role - the role name agents stored on rows post-Kairos→Bilbis rebrand.
  • Legacy codename - the original Greek-mythology codename pre-rebrand.

Identifier decoder

Public labelInternal roleLegacy codenameWhat the role does
Work PlannerTech LeadZeusOwns the overall plan and higher-level decisions. Also runs the Planner pass that decomposes a task into file-level steps.
Work PlannerTech LeadArtemisLegacy escalation handler mapped to Tech Lead, then to Work Planner.
Repo RouterProject LeadHermesReads the task, routes the work, and decides how to split it.
Implementation AgentSenior EngineerHephaestusWrites code and addresses review feedback.
Review AgentCode ReviewerAthenaReviews the diff and extracts reusable feedback.
Test RunnerQA EngineerArgusRuns tests and checks quality.
PR PublisherRelease ManagerOlympusHandles push, merge, and final delivery steps.
Runtime WorkerDevOps EngineerTitanHandles infrastructure-flavored work and build configuration.

Backend now ships a displayAgent field on timeline rows that already contains the public label. Bilbis uses it directly when present; otherwise it falls back to mapping the internal role or legacy codename locally.

Clarification slugs

Clarification records use snake_case role slugs internally. The public clarification badge maps them to the same public labels.

Runtime slugPublic label
tech_leadWork Planner
project_leadRepo Router
senior_engineerImplementation Agent
code_reviewerReview Agent
qa_engineerTest Runner
release_managerPR Publisher
devops_engineerRuntime Worker
plannerWork Planner

Older clarification rows may use lowercase legacy values such as hephaestus or athena. Bilbis normalizes those to the public label automatically.

When you might need this

Use this page when:

  • A support reply mentions a raw agent value.
  • An older pipeline log includes a Greek codename.
  • A clarification shows an internal askedByAgent value.
  • You are comparing old and new pipeline records.

You do not need these names for normal day-to-day use.

On this page