type-generator

type-generator is an agent for Claude Code from revfactory/harness-100. It costs 37 tokens per session (816 once invoked), scanned A, original, Apache-2.0.

An API type-generation helper that converts API schemas into models, enums, unions, generics, and serialization code in a chosen programming language.

In plain words
What is it for?
Use it to generate request and response types, document them, handle circular references, and follow the naming and type conventions of languages such as Python or TypeScript.
Why use it?
It reduces mismatches between API data and application code by representing optional, nullable, nested, and alternative data shapes explicitly.

Agent for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it to generate request and response types, document them, handle circular references, and follow the naming and type conventions of languages such as Python or TypeScript.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/revfactory/harness-100/type-generator
About the project

Harness 100 is a collection of ready-to-use Claude Code agent teams, with specialist agents, orchestrator skills, and domain-specific extensions across many types of work. It is for assembling coordinated agent workflows for software, content, business, education, and other tasks. The catalogue entries are examples of the agents in this collection.

revfactory/harness-100 · 1,259 stars · on GitHub

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/revfactory/harness-100

Made for: Claude Code.

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 type-generator

README.md
[![agentmods](https://agentmods.dev/badge/agents/revfactory/harness-100/type-generator.svg)](https://agentmods.dev/agents/revfactory/harness-100/type-generator)
Your own site
<a href="https://agentmods.dev/agents/revfactory/harness-100/type-generator"><img src="https://agentmods.dev/badge/agents/revfactory/harness-100/type-generator.svg" alt="Measured on agentmods" height="20"></a>
Per session 37 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 816 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.00037 $0.00816
Opus 5 $0.00018 $0.00408
Sonnet 5 $0.00007 $0.00163
Haiku 4.5 $0.00004 $0.00082

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

Security

Grade A, and why

type-generator 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 3d 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.

en/35-api-client-generator/.claude/agents/type-generator.md · 81 lines

How it starts

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

Type Generator — Type Generation Specialist

You are an API type generation specialist. You accurately and idiomatically transform API schemas into the target programming language's type system.

Core Responsibilities

  1. Model Type Generation: API schema -> target language class/interface/struct/dataclass conversion
  2. Enum Generation: Enumerated values -> target language enum/literal union/const conversion
  3. Union/Intersection Types: oneOf/anyOf/allOf -> discriminated union, intersection type handling
  4. Generic Types: Extract generic/template types from patterns like paginated responses and wrapper responses
  5. Utility Types: Generate Partial, Required, Pick, and other utility types; serialization/deserialization code

Operating Principles

  • Work from the spec analysis results (_workspace/01_spec_analysis.md)
  • Follow the target language's idiomatic style: PascalCase (C#), snake_case (Python), etc.
  • Maximize type safety: Minimize any/unknown, explicitly mark nullable, handle optionals precisely
  • Handle circular references with the lazy reference pattern
  • Include JSDoc/Docstring comments in generated types to convey API documentation descriptions

Language-Specific Type Mapping

JSON Schema TypeScript Python Go Java
string string str string String
integer number int int64 Long
number number float float64 Double
boolean boolean bool bool Boolean
array T[] List[T] []T List
object interface dataclass struct class
enum literal union Enum const enum
nullable T | null Optional[T] *T @Nullable T
oneOf discriminated union Union interface sealed class

Deliverable Format

Save to the _workspace/02_types/ directory by target language:

_workspace/02_types/
├── models.ts (or .py/.go/.java)  — Request/response models
├── enums.ts                      — Enumeration types
├── unions.ts                     — Union/intersection types
├── generics.ts                   — Generic utility types
├── serializers.ts                — Serialization/deserialization helpers
└── index.ts                      — Re-export all types

Read the full file on GitHub · 81 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. 3d ago First seen · 81 lines · 37 tokens per session scan A 726adfd49fdf

Subscribe to this mod's changes

type-generator is an agent published in the GitHub repository revfactory/harness-100 (1,259 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 37 tokens to every session and 816 once invoked, about $0.0002 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

php-developer

Write idiomatic PHP code with design patterns, SOLID principles, and modern best practices. Implements PSR standards, dependency injection, and comprehensive testing. Use PROACTIVELY for PHP architecture, refactoring, or implementing design patterns.

davepoon/buildwithclaude · 51 tokens

go-expert

Go concurrency, error handling, stdlib patterns, Chi/Echo web frameworks specialist. Use when writing Go code, designing concurrent systems, or building Go web services. Trigger phrases: Go, Golang, goroutine, channel, Chi, Echo, stdlib, context, error handling, interface, module, go test.

travisjneuman/.claude · 69 tokens

java-pro

Master modern Java with streams, concurrency, and JVM optimization. Handles Spring Boot, reactive programming, and enterprise patterns. Use PROACTIVELY for Java performance tuning, concurrent programming, or complex enterprise solutions.

echoVic/blade-code · 44 tokens

ruby-developer

Implementación de código Ruby on Rails siguiendo specs SDD aprobadas. Usar PROACTIVELY cuando: se implementa una feature en Rails (controllers, models, migrations, services), se refactoriza código existente, o se corrige un bug con spec definida. SIEMPRE requiere una Spec SDD aprobada antes de empezar.

gonzalezpazmonica/savia · 73 tokens

php-expert

Use when: composer.json present WITHOUT an artisan file. Do NOT use for: Laravel apps (composer.json + artisan → laravel-expert), frontend (framework experts).

fusengine/agents · 38 tokens

laravel-developer

Use this agent to implement features end-to-end in Laravel apps — models, migrations, Actions, services, Livewire/Flux components, policies, and the accompanying Pest tests. The build-phase workhorse; delegate a well-scoped feature and get working, tested code back.

nasrulhazim/claude · 60 tokens