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.
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.
git clone --depth 1 https://github.com/revfactory/harness-100Wrote 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.
[](https://agentmods.dev/agents/revfactory/harness-100/type-generator)<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>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.
| Model | Per session | Once 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 |
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.
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
- Model Type Generation: API schema -> target language class/interface/struct/dataclass conversion
- Enum Generation: Enumerated values -> target language enum/literal union/const conversion
- Union/Intersection Types: oneOf/anyOf/allOf -> discriminated union, intersection type handling
- Generic Types: Extract generic/template types from patterns like paginated responses and wrapper responses
- 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
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.
- 3d ago First seen · 81 lines · 37 tokens per session scan A 726adfd49fdf
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.
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.
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.
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.
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.
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).
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.