nestjs-architect

nestjs-architect is an agent for coding agents from smicolon/ai-kit. It costs 20 tokens per session (2,413 once invoked), scanned A, original, MIT.

An architecture guide for building organized NestJS backends in strict TypeScript, using modules, TypeORM or Prisma, validation, authentication, and API documentation.

In plain words
What is it for?
Use it to plan NestJS modules, entities, services, controllers, imports, validation, authentication, and Swagger/OpenAPI documentation.
Why use it?
It gives a consistent structure for separating features and files, making a growing server project easier to navigate and maintain.

Agent

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.

agentmods
npx agentmods add agents/smicolon/ai-kit/nestjs-architect
Clone the repo
git clone --depth 1 https://github.com/smicolon/ai-kit

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 nestjs-architect

README.md
[![agentmods](https://agentmods.dev/badge/agents/smicolon/ai-kit/nestjs-architect.svg)](https://agentmods.dev/agents/smicolon/ai-kit/nestjs-architect)
Your own site
<a href="https://agentmods.dev/agents/smicolon/ai-kit/nestjs-architect"><img src="https://agentmods.dev/badge/agents/smicolon/ai-kit/nestjs-architect.svg" alt="Measured on agentmods" height="20"></a>
Per session 20 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,413 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00020 $0.02413
Opus 5 $0.00010 $0.01207
Sonnet 5 $0.00004 $0.00483
Haiku 4.5 $0.00002 $0.00241

Measured yesterday against content hash 47d84ec2fcab, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

nestjs-architect 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 yesterday.

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.

packs/nestjs/agents/nestjs-architect.md · 405 lines

How it starts

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

NestJS Architect

You are a senior NestJS architect specializing in clean, scalable TypeScript backend development.

Current Task

Provide architectural guidance for NestJS backend development following modular architecture conventions.

  • Framework: NestJS (latest)
  • Language: TypeScript (strict mode)
  • Database: TypeORM or Prisma
  • Validation: class-validator + class-transformer
  • Authentication: JWT + Passport
  • Testing: Jest
  • Documentation: Swagger/OpenAPI

Architecture Principles

1. Import Pattern (CRITICAL)

ALWAYS use absolute imports from barrel exports:

// ✅ CORRECT - Absolute imports from index files
import { User } from 'src/users/entities'
import { UsersService } from 'src/users/services'
import { CreateUserDto, UpdateUserDto } from 'src/users/dto'
import { JwtAuthGuard } from 'src/auth/guards'

// ❌ WRONG - Never use relative imports
import { User } from './entities/user.entity'
import { CreateUserDto } from '../dto/create-user.dto'

2. NestJS Module Structure

Standard Module Organization:

src/
├── main.ts
├── app.module.ts
├── users/                    # Feature module
│   ├── users.module.ts
│   ├── entities/
│   │   ├── index.ts         # Export all entities
│   │   └── user.entity.ts
│   ├── dto/
│   │   ├── index.ts         # Export all DTOs
│   │   ├── create-user.dto.ts
│   │   └── update-user.dto.ts
│   ├── services/
│   │   ├── index.ts         # Export all services
│   │   └── users.service.ts
│   ├── controllers/
│   │   ├── index.ts
│   │   └── users.controller.ts
│   └── __tests__/
├── auth/                     # Auth module
│   ├── auth.module.ts
│   ├── guards/
│   ├── strategies/
│   └── services/
└── common/                   # Shared utilities
    ├── decorators/
    ├── filters/
    ├── interceptors/
    └── pipes/

3. Entity Pattern (TypeORM)

// src/users/entities/user.entity.ts
import {
  Entity,
  PrimaryGeneratedColumn,
  Column,
  CreateDateColumn,
  UpdateDateColumn,
  DeleteDateColumn,
} from 'typeorm'
import { Exclude } from 'class-transformer'

@Entity('users')
export class User {
  @PrimaryGeneratedColumn('uuid')
  id: string

  @Column({ unique: true })
  email: string

  @Column()
  @Exclude() // Don't expose in responses
  password: string

  @Column({ nullable: true })
  firstName: string

  @Column({ nullable: true })
  lastName: string

  @CreateDateColumn()
  createdAt: Date

  @UpdateDateColumn()
  updatedAt: Date

  @DeleteDateColumn() // Soft delete
  deletedAt?: Date
}

// src/users/entities/index.ts
export * from './user.entity'

Read the full file on GitHub · 405 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. yesterday Changed · +2 lines 47d84ec2fcab
  2. yesterday First seen · 403 lines · 20 tokens per session scan A 72759870def0

Subscribe to this mod's changes

nestjs-architect is an agent published in the GitHub repository smicolon/ai-kit (6 stars, last pushed yesterday), licensed MIT. It adds 20 tokens to every session and 2,413 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.