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.
git clone --depth 1 https://github.com/noizu-labs-ml/NoizuPromptLingoWrote 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.
[](https://agentmods.dev/commands/noizu-labs-ml/noizupromptlingo/npl-update-schema-doc)<a href="https://agentmods.dev/commands/noizu-labs-ml/noizupromptlingo/npl-update-schema-doc"><img src="https://agentmods.dev/badge/commands/noizu-labs-ml/noizupromptlingo/npl-update-schema-doc/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/noizu-labs-ml/noizupromptlingo/npl-update-schema-doc"><img src="https://agentmods.dev/badge/commands/noizu-labs-ml/noizupromptlingo/npl-update-schema-doc.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01336 |
| Opus 5 | $0.00000 | $0.00668 |
| Sonnet 5 | $0.00000 | $0.00267 |
| Haiku 4.5 | $0.00000 | $0.00134 |
Grade A, and why
npl-update-schema-doc 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 6d 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.
This is a copy
100% identical to update-schema-doc — 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.
How it starts
The opening of the file, as written. The whole thing — 168 lines — stays where its author put it; the contents beside it link to each section on GitHub.
PROJ-SCHEMA.md — Maintenance Guide
Diagram Formats
Include both Mermaid and PlantUML ERD diagrams in docs/PROJ-SCHEMA.md. The summary file (docs/PROJ-SCHEMA.summary.md) uses Mermaid only (for brevity).
Mermaid Conventions
- Use
```mermaidfenced blocks witherDiagram - Underscores replace parentheses in types (e.g.
VARCHAR_255notVARCHAR(255)) - Mark PK/FK after type
- Relationship cardinality:
||--o{(one-to-many),||--||(one-to-one),}o--o{(many-to-many)
PlantUML Conventions
- Use
```plantumlfenced blocks with@startuml/@enduml - Use
*prefix for NOT NULL columns - Mark
<<PK>>and<<FK>>inline - Use
--separator between PK section and other columns - Use
skinparam linetype orthofor clean routing - Group related tables with
package "Domain Name" { }blocks
Mermaid ERD Template
erDiagram
parent ||--o{ child : "has many"
parent {
UUID id PK
VARCHAR_255 name
}
child {
UUID id PK
UUID parent_id FK
}
PlantUML ERD Template
@startuml
!define TABLE(name) entity name <<(T,#FFAAAA)>>
skinparam linetype ortho
TABLE(parent) {
* id : UUID <<PK>>
--
* name : VARCHAR(255)
}
TABLE(child) {
* id : UUID <<PK>>
--
* parent_id : UUID <<FK>>
}
parent ||--o{ child : "has many"
@enduml
Timestamp Conventions
All tables use TIMESTAMP WITHOUT TIME ZONE with NOW() defaults. Application code manages UTC.
All tables use updated_at as the modification timestamp column. This is the standardized convention — do not use modified_at.
Purpose
docs/PROJ-SCHEMA.md provides a database schema reference with ERD diagrams, table details, and relationship documentation. It should remain the single source of truth for understanding the project's data model.
Structure
docs/
├── PROJ-SCHEMA.md # Main schema reference (keep small)
├── PROJ-SCHEMA.summary.md # Condensed quick-reference (Mermaid only)
└── schema/
├── npl-content.md # Detailed breakdowns by domain
├── sessions.md
└── ...
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.
- 6d ago First seen · 168 lines · 0 tokens per session scan A 47ed2158e9c7
npl-update-schema-doc is a command published in the GitHub repository noizu-labs-ml/NoizuPromptLingo (13 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,336 tokens. A static security scan graded it A with 0 findings. It is 100% identical to update-schema-doc, differing in 0 lines, and is treated as a copy.
Other commands, from other repositories
member-import
Bulk member import from CSV/Excel with validation, batch processing, and error handling.
index
Build or refresh the carrel desk index (.carrel/carrel.db) so search, pack --query and the MCP tools can find files by content.
droughty-dbml
DBML entity-relationship diagram from warehouse schema.
export
Export SQLite database to JSON or individual task markdown files.
docs-index
Validate, rebuild, or query the disposable SQLite index for an evidence-backed documentation store.
init
Initialize configurations for Supabase local development.