databases

Database guidance covers SQL, database systems, object-relational mappers (tools that connect code to databases), and data modeling. It applies when working with database code, SQL files, Prisma schemas, or related npm packages.

In plain words
What is it for?
Use it when building or reviewing database queries, schemas, data models, or ORM code.
Why use it?
It helps explain how applications store information permanently and how code reads, adds, changes, and removes that information.

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/wewpellex21/code-sensei/databases
Any agent
npx skills add wewpellex21/code-sensei --skill databases
Clone the repo
git clone --depth 1 https://github.com/wewpellex21/code-sensei

Made for: Claude Code, Codex.

Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 703 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod 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.00035 $0.00703
Opus 5 $0.00017 $0.00351
Sonnet 5 $0.00007 $0.00141
Haiku 4.5 $0.00003 $0.00070

Measured 2d ago against content hash 39fa5dbec91f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

databases 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 2d 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.

Origin

This is a copy

100% identical to databases — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/databases/SKILL.md · 45 lines

How it starts

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

Databases — CodeSensei Teaching Module

What is a Database?

  • Analogy: A super-powered spreadsheet that your app can read and write to automatically. Each "table" is like a sheet, each "row" is an entry, each "column" is a field.
  • Key insight: Without a database, your app forgets everything when it restarts. Databases make data PERMANENT.

SQL (Structured Query Language)

  • Analogy: SQL is the language you use to talk to the database. Like asking a librarian: "Find me all books by this author, sorted by year."
  • Essential operations:
    • SELECT — "Show me data" → SELECT * FROM users (show all users)
    • INSERT — "Add new data" → INSERT INTO users (name, email) VALUES ('Juan', '[email protected]')
    • UPDATE — "Change existing data" → UPDATE users SET name = 'Juan C' WHERE id = 1
    • DELETE — "Remove data" → DELETE FROM users WHERE id = 1
    • WHERE — "But only the ones that match this condition"
  • Quiz: "Which SQL word would you use to find all users who signed up today?"

Types of Databases

  • PostgreSQL — the reliable all-rounder. Most vibecoded apps use this. Think of it as Excel but 1000x more powerful.
  • SQLite — a lightweight database stored in a single file. Good for small projects. Like a notepad vs a full filing system.
  • MongoDB — stores data as flexible documents (JSON-like) instead of rigid tables. Like storing folders of papers vs a spreadsheet.

ORMs (Object-Relational Mappers)

  • Analogy: An ORM is a translator between your code and the database. Instead of writing SQL directly, you write code in your programming language and the ORM converts it to SQL.
  • Prisma (most common in vibecoded projects):
    • prisma.user.findMany() → becomes SELECT * FROM users
    • prisma.user.create({ data: { name: "Juan" } }) → becomes INSERT INTO users...
  • Key insight: ORMs make databases easier to work with, but the SQL is still happening underneath.

Schemas & Migrations

  • Schema — the blueprint of your database. Defines what tables exist and what columns each has.
  • Migration — a change to the blueprint. Like remodeling a room — you write instructions for the change, then apply them.
  • Analogy: The schema is your building's floor plan. A migration is the renovation permit that says "add a new room here."

Read the full file on GitHub · 45 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. 2d ago First seen · 45 lines · 35 tokens per session scan A 39fa5dbec91f

Subscribe to this mod's changes

databases is a skill published in the GitHub repository wewpellex21/code-sensei (3 stars, last pushed 3d ago), licensed MIT. It adds 35 tokens to every session and 703 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to databases, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

agent-squad-python

Use when building or modifying a Python app that uses the agent-squad Python package — async multi-agent orchestration for Python 3.11+: orchestrator, agents (BedrockLLMAgent, AnthropicAgent, OpenAIAgent, SupervisorAgent, GroundedAgent, ChainAgent, and more), classifier routing (Bedrock, Anthropic, OpenAI), storage…

2FastLabs/agent-squad · 113 tokens

agent-squad-swift

Use when building or modifying a Swift app that uses the AgentSquad Swift framework — on-device multi-agent orchestration for iOS 16+ / macOS 14+: orchestrator, agents (Agent, GroundedAgent), classifier routing, LLM clients (OpenAI-compatible), tools (native + MCP), tool UIs/widgets, on-device storage, tracing, and…

2FastLabs/agent-squad · 91 tokens

agent-squad-typescript

Use when building or modifying a Node.js / TypeScript app that uses the agent-squad npm package — multi-agent orchestration: orchestrator, agents (all built-in types + GroundedAgent), classifier routing (Bedrock / Anthropic / OpenAI), storage (in-memory / DynamoDB / SQL), retrievers (Amazon KB / Dakera), and tools…

2FastLabs/agent-squad · 87 tokens

run-integ

Run integration tests (deploy + destroy) against real AWS. Use when you need to verify cdkd works end-to-end with actual AWS resources.

go-to-k/cdkd · 34 tokens

verify-pr

Comprehensive PR readiness check before merge. Run quality checks, tests, CI, documentation, AWS resource cleanup, and code review.

go-to-k/cdkd · 29 tokens

review-pr

Recommend the right reviewer count for a PR based on size + bias factors. Outputs a concrete plan (inline spot-check / 1 reviewer / 3-axis parallel) plus ready-to-paste Agent dispatch prompts when reviewers are warranted.

go-to-k/cdkd · 49 tokens