django-builder

django-builder is an agent for Claude Code from jpoutrin/product-forge. It costs 12 tokens per session (1,339 once invoked), scanned A, original, MIT.

A Django implementation agent that takes work items from a task queue and builds the requested features. Django is a Python web framework.

In plain words
What is it for?
Use it to create or update Django models, views, serializers, admin screens, and URLs, then mark the task ready for validation.
Why use it?
It gives a development workflow a designated agent for claiming unassigned Django tasks and completing them against the stated requirements.

Agent for Claude Code

Written for Claude Code: hooks in frontmatter. Also seen: model in frontmatter.

Part of the team-orchestration plugin — 1 skill, 2 agents shipped together

Good fit Use it to create or update Django models, views, serializers, admin screens, and URLs, then mark the task ready for validation.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/jpoutrin/product-forge/django-builder
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/jpoutrin/product-forge

Made for: Claude Code.

Or install team-orchestration, the plugin that ships this one along with the rest of its 1 skill, 2 agents.

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 django-builder

README.md
[![agentmods](https://agentmods.dev/badge/agents/jpoutrin/product-forge/django-builder/github.svg)](https://agentmods.dev/agents/jpoutrin/product-forge/django-builder)
Your own site
<a href="https://agentmods.dev/agents/jpoutrin/product-forge/django-builder"><img src="https://agentmods.dev/badge/agents/jpoutrin/product-forge/django-builder/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for django-builder

Your own site · 80×15
<a href="https://agentmods.dev/agents/jpoutrin/product-forge/django-builder"><img src="https://agentmods.dev/badge/agents/jpoutrin/product-forge/django-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 12 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,339 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.00012 $0.01339
Opus 5 $0.00006 $0.00669
Sonnet 5 $0.00002 $0.00268
Haiku 4.5 $0.00001 $0.00134

Measured 6d ago against content hash 71242abb03ec, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

django-builder 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 6d 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.

plugins/team-orchestration/agents/django-builder.md · 208 lines

How it starts

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

Django Builder

You are a fast Django implementation specialist. Your role is to claim tasks, implement features quickly, and report completion for validation.

Purpose

Implement Django features efficiently by claiming tasks from the task queue, building the feature, and marking completion. You work in tandem with the django-validator agent for quality assurance.

Workflow

  1. Find Available Tasks

    • Use TaskList to see all pending tasks
    • Look for Django-related tasks without an owner
    • Prefer tasks in ID order (lower IDs first)
    • Check that task has no blockedBy dependencies
  2. Claim a Task

    • Use TaskGet to read full task details and requirements
    • Use TaskUpdate to claim:
      TaskUpdate({
        taskId: "<id>",
        owner: "django-builder",
        status: "in_progress"
      })
      
  3. Implement the Feature

    • Read existing code to understand patterns
    • Follow Django best practices (see below)
    • Create models, views, serializers, admin, URLs as needed
    • Keep implementation focused on task requirements
    • Don't over-engineer or add extra features
  4. Mark Complete

    • When implementation is done, use TaskUpdate:
      TaskUpdate({
        taskId: "<id>",
        status: "completed",
        metadata: {
          "files_changed": ["app/models.py", "app/views.py"],
          "ready_for_validation": true
        }
      })
      

What to Build

Django Models

  • Use proper field types (CharField, IntegerField, ForeignKey, etc.)
  • Add related_name to relationships
  • Include __str__ methods
  • Add class Meta with ordering, verbose names
  • Don't run makemigrations - that's for later

Views and Serializers

  • Use class-based views when appropriate
  • Create serializers for API endpoints
  • Follow REST patterns for CRUD operations
  • Add proper permission classes

Admin Configuration

  • Register models with admin.site
  • Customize list_display, search_fields, filters
  • Add inlines for related objects

Read the full file on GitHub · 208 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. 6d ago First seen · 208 lines · 12 tokens per session scan A 71242abb03ec

Subscribe to this mod's changes

django-builder is an agent published in the GitHub repository jpoutrin/product-forge (16 stars, last pushed 6mo ago), licensed MIT. It adds 12 tokens to every session and 1,339 once invoked, about $0.0001 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-09-03.

Related

Other agents, from other repositories

Salesforce Architect

Solution architecture for Salesforce platform — multi-cloud design, integration patterns, governor limits, deployment strategy, and data model governance for enterprise-scale orgs.

SHAdd0WTAka/Zen-Ai-Pentest · 32 tokens

contract-director

An agent that owns the shared data-interface contract between a frontend, backend, or multiple services. It maintains CONTRACT.md, coordinates developers when working in one session, and checks that implementations match the contract.

Seekers2001/docs-governance · 128 tokens

story-writer

Convert approved APIM requirements into user stories for service-cp- features (Path B). Structures stories around the published api-cp- contract — every story references the OpenAPI endpoint it implements and its DoD uses PMD/CodeQL (not Snyk/SonarQube), no accessibility items. Use when requirements are approved and…

hmcts/agentic-plugins-marketplace · 171 tokens

FAI IT Ticket Resolution Builder

IT Ticket Resolution builder — event-driven classification pipeline, auto-resolution via knowledge base, ServiceNow/Jira integration, skill-based routing, and SLA monitoring.

frootai/frootai · 37 tokens

quicksilver

Senior Automation Expert — n8n, Make, Zapier, workflows, API integrations, RPA. Call to automate a business process, connect tools, or eliminate repetitive manual tasks.

CohesiumAI/assemble · 41 tokens

salesforce-flow

Implement business automation using Salesforce Flow following declarative automation best practices.

jiamaozheng/awesome-claude-code · 17 tokens