dto-patterns

dto-patterns is a cursor rule for Cursor from MN-Lizard-Team/aiyu-multi-agent. It costs 31 tokens per session (1,075 once invoked), scanned A, original, Apache-2.0.

Patterns for Data Transfer Objects, which are small data shapes used to move information between an application and its APIs or internal layers. They cover request and response data, validation, mapping, commands, events, and projections.

In plain words
What is it for?
Use it when designing API request or response bodies, converting domain objects into external data, validating incoming data, or passing information between services.
Why use it?
They prevent internal data models from being exposed directly and make API boundaries easier to validate, change, and version.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/. Also seen: mentions Cursor.

Good fit Use it when designing API request or response bodies, converting domain objects into external data, validating incoming data, or passing information between services.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/mn-lizard-team/aiyu-multi-agent/dto-patterns
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/MN-Lizard-Team/aiyu-multi-agent

Made for: Cursor.

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 dto-patterns

README.md
[![agentmods](https://agentmods.dev/badge/rules/mn-lizard-team/aiyu-multi-agent/dto-patterns.svg)](https://agentmods.dev/rules/mn-lizard-team/aiyu-multi-agent/dto-patterns)
Your own site
<a href="https://agentmods.dev/rules/mn-lizard-team/aiyu-multi-agent/dto-patterns"><img src="https://agentmods.dev/badge/rules/mn-lizard-team/aiyu-multi-agent/dto-patterns.svg" alt="Measured on agentmods" height="20"></a>
Per session 31 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,075 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.00031 $0.01075
Opus 5 $0.00015 $0.00537
Sonnet 5 $0.00006 $0.00215
Haiku 4.5 $0.00003 $0.00108

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

Security

Grade A, and why

dto-patterns 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 4d 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.

.cursor/rules/skills/dto-patterns.mdc · 157 lines

How it starts

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

Skill: dto-patterns

Cursor Agent-Requested Rule — applied when AI determines relevance.


DTO Patterns

Patterns for transferring data between layers, services, and boundaries.

When to Use This Skill

  • Designing API request/response bodies
  • Mapping between domain entities and external representations
  • Implementing validation at system boundaries
  • Building transformation pipelines between services

Core Principles

  1. DTO at boundaries only — Never expose domain entities directly
  2. Validate on entry — DTOs are the first line of defense
  3. Map explicitly — No magic auto-mapping; be intentional
  4. Version your contracts — DTOs are your API contract

DTO Types

Type Purpose Example
Request DTO Incoming data validation CreateUserRequest
Response DTO Outgoing data shaping UserResponse
Command DTO Intent + data PlaceOrderCommand
Event DTO Notification payload OrderCreatedEvent
Projection DTO Read-optimized query result UserListProjection

Pattern: Request/Response Pair

// Request — what the client sends
interface CreateUserRequest {
  email: string;       // validated: email format
  name: string;        // validated: 2-100 chars
  role?: UserRole;     // optional, default: 'member'
}

// Response — what the client receives
interface UserResponse {
  id: string;          // server-generated
  email: string;       // same
  name: string;        // same
  role: UserRole;      // same
  createdAt: string;   // server-generated
  // NEVER include: passwordHash, internalId, metadata
}

Pattern: Mapping Strategies

Manual Mapping (Recommended for clarity)

function toResponse(user: UserEntity): UserResponse {
  return {
    id: user.id,
    email: user.email,
    name: user.displayName,
    role: user.role,
    createdAt: user.createdAt.toISOString(),
  };
}

MapStruct / AutoMapper (For large codebases)

@Mapper
public interface UserMapper {
  UserResponse toResponse(UserEntity entity);
  UserEntity toEntity(CreateUserRequest request);
}

Read the full file on GitHub · 157 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. 4d ago First seen · 157 lines · 31 tokens per session scan A 6ee2ce417798

Subscribe to this mod's changes

dto-patterns is a cursor rule published in the GitHub repository MN-Lizard-Team/aiyu-multi-agent (7 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 31 tokens to every session and 1,075 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.