add-generation-event

add-generation-event is a skill for Claude Code, Codex from JNZader/repoforge. It costs 30 tokens per session (493 once invoked), scanned A, original, MIT.

A guide to creating and recording Generation and GenerationEvent database records. An ORM is a programming layer that lets code work with database records as objects.

In plain words
What is it for?
Use it when creating a generation record or logging an event linked to a particular generation.
Why use it?
It gives backend code a consistent way to store generations and the events associated with them.

Skill for Claude CodeCodex

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 skills/jnzader/repoforge/generation
Any agent
npx skills add JNZader/repoforge --skill generation
Clone the repo
git clone --depth 1 https://github.com/JNZader/repoforge

Made for: Claude Code, Codex.

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 add-generation-event

README.md
[![agentmods](https://agentmods.dev/badge/skills/jnzader/repoforge/generation.svg)](https://agentmods.dev/skills/jnzader/repoforge/generation)
Your own site
<a href="https://agentmods.dev/skills/jnzader/repoforge/generation"><img src="https://agentmods.dev/badge/skills/jnzader/repoforge/generation.svg" alt="Measured on agentmods" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 493 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.1 $0.00030 $0.00493
Opus 5 $0.00015 $0.00246
Sonnet 5 $0.00006 $0.00099
Haiku 4.5 $0.00003 $0.00049

Measured 5d ago against content hash 037f38891f2c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

add-generation-event 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 5d 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.

.claude/skills/backend/generation/SKILL.md · 95 lines

What it actually says

add-generation-event

This skill covers the creation and management of Generation and GenerationEvent ORM models.

Trigger: When working with generation data in the backend.

Quick Reference

Task Pattern
Create a Generation create-generation
Log a GenerationEvent log-generation-event

Critical Patterns (Summary)

  • Create a Generation: Use the Generation model to create new generation records.
  • Log a GenerationEvent: Utilize the GenerationEvent model to log events related to generations.

Critical Patterns (Detailed)

Create a Generation

This pattern demonstrates how to create a new Generation record using the Generation model.

from apps.server.app.models.generation import Generation
from uuid import uuid4
from datetime import datetime

new_generation = Generation(
    id=uuid4(),
    created_at=datetime.utcnow(),
    updated_at=datetime.utcnow()
)

Log a GenerationEvent

This pattern shows how to log a GenerationEvent related to a specific Generation.

from apps.server.app.models.generation import GenerationEvent
from uuid import uuid4
from datetime import datetime

event = GenerationEvent(
    id=uuid4(),
    generation_id=new_generation.id,
    event_time=datetime.utcnow(),
    description="Generation created"
)

When to Use

  • When you need to create a new generation record in the database.
  • When logging events related to a specific generation for tracking purposes.

Commands

python -m apps.server.app.models.generation

Anti-Patterns

Don't: Create Generation without Validation

Creating a Generation without proper validation can lead to data integrity issues.

# BAD
new_generation = Generation(id=None)  # Missing required fields
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. 5d ago First seen · 95 lines · 30 tokens per session scan A 037f38891f2c

Subscribe to this mod's changes

add-generation-event is a skill published in the GitHub repository JNZader/repoforge (5 stars, last pushed 11d ago), licensed MIT. It adds 30 tokens to every session and 493 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-08-31.