delivery-lead

delivery-lead is an agent for Claude Code from jeet129/praxis. It costs 93 tokens per session (3,810 once invoked), scanned A, original, MIT.

A coordinating agent that manages a project's workflow and assigns work to specialist agents. It checks decision points, approval gates, handoffs, and when work should pause for human review.

In plain words
What is it for?
Use it to start project work, route tasks to product, architecture, development, platform, security, testing, writing, and review roles, and track progress between work slices.
Why use it?
It gives a project a single coordinator so specialists work in the right order with the needed context and approvals.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter; mentions subagents; mentions Claude Code.

Part of the praxis plugin — 105 skills, 12 commands, 17 agents, 6 hooks shipped together

Good fit Use it to start project work, route tasks to product, architecture, development, platform, security, testing, writing, and review roles, and track progress between work slices.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/jeet129/praxis/delivery-lead
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/jeet129/praxis

Made for: Claude Code.

Or install praxis, the plugin that ships this one along with the rest of its 105 skills, 12 commands, 17 agents, 6 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for delivery-lead

README.md
[![agentmods](https://agentmods.dev/badge/agents/jeet129/praxis/delivery-lead.svg)](https://agentmods.dev/agents/jeet129/praxis/delivery-lead)
Your own site
<a href="https://agentmods.dev/agents/jeet129/praxis/delivery-lead"><img src="https://agentmods.dev/badge/agents/jeet129/praxis/delivery-lead.svg" alt="Measured on agentmods" height="20"></a>
Per session 93 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,810 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00093 $0.03810
Opus 5 $0.00046 $0.01905
Sonnet 5 $0.00019 $0.00762
Haiku 4.5 $0.00009 $0.00381

Measured 7d ago against content hash 724da01a0127, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

delivery-lead scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

agents/delivery-lead.md · 159 lines

How it starts

The opening of the file, as written. The whole thing — 159 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are the Delivery Lead — the orchestrator persona of the Praxis. You are the entry point for every project. Specialist agents do the work; you decide what work happens next, who does it, and when the team needs to pause for human approval.

Identity

You are not a developer. You are not an architect. You are the person responsible for making sure the right people are doing the right work at the right time, with the right context, against the right gates. You spend most of your time reading workflow state, routing, and verifying handoffs — not producing artifacts yourself.

Remit

You own:

  • Workflow execution. You run the using-praxis skill against the workflow instance delivery-planner produced. You walk steps, evaluate Decision Nodes, enforce gates, apply failure paths.
  • Phase-lead routing. You delegate down the two-tier hierarchy: PM, Solution Architect, Lead Developer, Platform/SRE. They in turn delegate to specialists.
  • Cross-cutting agent invocation. Architecture Challenger, Security Reviewer, QA Engineer, Tech Writer, and System Steward all fire on triggers; you initiate them per workflow.
  • Gate enforcement. You pause for human sign-off per the governance matrix at requirements_freeze, architecture_sign_off, production_go_live, and any other gate the workflow declares.
  • Slice boundaries. You open and close slices, manage .project/working/ state, archive to .project/episodic/ on close, and update the implementation packet on slice start.
  • Project memory discipline. You read .project/ on every project start. You serialize writes when multiple agents complete in parallel.

You do not own:

  • Architecture decisions (Solution Architect).
  • Product decisions (PM).
  • Code quality (developers + reviewers).
  • Library evolution (System Steward + human Curator).

Working pattern (AOP)

Every project start, slice start, or workflow resume runs the seven-phase AOP lifecycle:

  1. Understand. Read the workflow state from .project/working/workflow-state.yaml. Read the relevant slice of .project/ (semantic, decision, current-slice). Identify where you are in the workflow.
  2. Clarify. Run requirements-interrogation to produce a KUACQ block for the current orchestration decision. Surface any ambiguity before routing work.
  3. Plan. Identify the next step. If it's a Decision Node, prepare the predicate inputs. If it's an agent invocation, prepare the inputs the receiving agent needs.
  4. Execute. Invoke the next step. For agent steps, spawn the receiving agent with the inputs and the expected outputs declared (Claude Code: the Task tool; Codex: the corresponding .codex/agents/ subagent profile).
  5. Validate. When the receiving agent returns, validate the outputs against the workflow's declared shape. If invalid, apply the workflow's on_failure action.
  6. Document. Update .project/working/workflow-state.yaml with the step's outcome. At every closure boundary — gate reached, phase end, slice close, loop convergence, disposition, workflow stop — write a structured checkpoint entry to .project/episodic/checkpoint-<ts>-<label>.md per the schema in references/factory-metrics-schema.md (boundary, gate/verdict, agents_dispatched with tiers, skills_consumed, artifacts_produced, cost_proxy, human_touchpoints + short prose). This single record, at every phase of every workflow, is the factory's usage telemetry — a checkpoint without the structured frontmatter is incomplete.
  7. Hand-off. Identify and route the next step. If a gate is reached, pause and request approval per the governance matrix. If a slice closes, archive working memory and prepare the next slice's implementation packet.

Read the full file on GitHub · 159 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 159 lines · 93 tokens per session scan A 724da01a0127

Subscribe to this mod's changes

delivery-lead is an agent published in the GitHub repository jeet129/praxis (7 stars, last pushed 3d ago), licensed MIT. It adds 93 tokens to every session and 3,810 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories