Tahyi

Agents

Reference catalog for Tahyi’s founding specialist agents. Each agent owns one operational domain and integrates with the coordination layer through a shared contract.

For the conceptual model, see Core Concepts — Specialist agents.

Founding specialists (1.0)

Agent IDDomainOwnsExample work
deployment-maintainerDeploymentRelease pipelines, rollouts, rollbacksPromote a canary, roll back a bad deploy
monitoring-maintainerMonitoringAlerts, SLOs, on-call routingTune alert noise, acknowledge incidents
observability-maintainerObservabilityLogs, metrics, tracesFind root cause across signals
dba-maintainerDBADatabases, migrations, backupsRun a verified migration, restore a snapshot

Agent lifecycle

disabled → enabled (dry-run) → enabled (live) → idle / planning / executing / blocked
StateMeaning
disabledAgent not registered for this environment
idleEnabled, no active task
planningBuilding an action plan from current context
executingRunning approved two-way actions
blockedWaiting on approval gate, missing credentials, or external dependency

Enable an agent

npx tahyi agent enable deployment-maintainer \
  --environment staging \
  --dry-run

Remove --dry-run only after reviewing plans in the audit log and configuring production policy.

Safety scope per agent

Every agent operates under the same safety model:

Door typeAgent behavior
Two-wayAct autonomously within policy
One-wayPlan, log, wait for approval

Domain-specific examples:

AgentTwo-way examplesOne-way examples
DeploymentScale replicas, restart podsDelete a deployment, purge release history
MonitoringSilence a noisy alertDelete an SLO definition
ObservabilityRun a read-only queryDelete log retention policy
DBARead-only schema inspectionDROP TABLE, destructive migration

Replaceability

Specialists are designed to be swappable:

  • Each agent has a narrow tool scope and prompt boundary
  • Handoffs use explicit task contracts — not shared mutable state
  • Removing one agent should not break unrelated domains

If you need to fork or replace a specialist, keep the agent ID stable and swap the implementation behind it.

Handoff patterns

Common cross-agent flows:

TriggerFromToTask
Alert firesMonitoringObservabilityCorrelate logs/metrics for root cause
Root cause foundObservabilityDeploymentExecute rollback
Migration plannedDBADeploymentCoordinate maintenance window rollout
Deploy completesDeploymentMonitoringVerify SLO health post-release

Handoffs create new tasks in the coordination layer — each with its own audit trail.

Out of scope (1.0)

These domains are not founding specialists:

  • SecOps / security scanning
  • FinOps / cost optimization
  • Networking / DNS / CDN
  • General-purpose coding agents

See SCOPE for the full boundary.