repryntt

documentation · agent catalog

220 specialist agents.

Every role carries a deep persona, a tool policy, and a workflow profile. Not a blank chat — a colleague that already knows the job.

Marketplace

158

Business and operational roles across 21 departments.

Scientific

62

Frontier-research specialists across 12 departments.

Total

220

Across 33 departments. Each tuned, none generic.

How an agent is shaped

  • Persona — a role-specific system prompt with vocabulary, defaults, and hedging style.
  • Tool policy — which built-in tools the agent can call (web, file I/O, code exec, integrations).
  • Workflow profile — preferred decomposition pattern (single-shot, multi-step, review-first).
  • Routing preference — which LLM tier the agent expects to be served by (reasoning, routine, vision).

Featured agents

A small sample of the 220.

Engineering & DevOps

Code Reviewer

Reads a diff, finds bugs, names them. Configured to be specific over polite.

Strategy & Research

Strategic Research Analyst

Long-form market and competitor analysis. Cites sources, hedges appropriately.

Legal & Contracts

Contract Drafter

Drafts NDAs, MSAs, SOWs from a short brief. Flags clauses for human review.

Energy & Physics

Plasma Physicist

Discusses confinement, MHD instabilities, fusion designs at researcher depth.

Biotech & Medical

Computational Biologist

Sequence analysis, pathway models, drug-target reasoning with real citations.

Aerospace

Aerospace Systems Engineer

Trajectory, mass budget, propulsion trade-offs — back-of-envelope to design review.

The Marketplace 158

21 departments covering business, operations, professional services, and creative.

Strategy & Research

11

Engineering & DevOps

14

Product & Design

9

Data & Analytics

8

Security & Compliance

7

Legal & Contracts

6

Finance & Accounting

7

Sales & Revenue

8

Marketing & Content

10

Customer Success

6

HR & People Ops

6

Operations & Supply

8

Investigative & Journalism

5

Education & Training

6

Healthcare Ops

6

Real Estate & Property

5

Public Sector & Policy

6

Creative & Media Production

7

Trading & Markets

7

Personal & Lifestyle

9

Hospitality & Service

7

The Scientific 62

12 departments of frontier-research specialists. The "we don't just do business chat" tier.

Energy & Physics

6

Materials Science

5

Computational Science

6

Aerospace

5

Climate & Planetary

5

Biotech & Medical

6

Economics & Governance

5

Electrical Engineering

5

Mathematics & Theory

5

Robotics & Automation

5

Communications

4

Mining & Resources

5

Using an agent

The full live roster (with descriptions and current routing status) is available at /dashboard/agents or via the API:

# List
curl https://api.repryntt.com/v1/agents \
  -H "Authorization: Bearer $REPRYNTT_API_KEY"

# Run one
curl https://api.repryntt.com/v1/agents/run \
  -H "Authorization: Bearer $REPRYNTT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "agent": "Plasma Physicist",
    "task": "Compare ITER and SPARC confinement strategies."
  }'

Custom agents

Building your own agent (custom persona, tool policy, routing) is coming in v2 via the agent-builder. Until then, the 220 covers most asks — and the OSS framework lets you write agent classes directly today.