nlp2sql CLAUDE.md

nlp2sql CLAUDE.md is an instructions file for coding agents from luiscarbonel1991/nlp2sql. It costs 1,413 tokens per session, scanned A, original, MIT.

A project-specific instruction file for an NLP-to-SQL Python library. NLP means natural-language processing, and SQL is the language commonly used to query databases; the file describes the project, documentation, setup commands, tests, and code checks.

In plain words
What is it for?
Use it when developing, testing, formatting, linting, type-checking, or learning the documented architecture and configuration of this Python project.
Why use it?
It gives a coding agent the repository context and the commands needed to work consistently, rather than requiring it to infer them from the codebase.

Instructions file

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 instructions/luiscarbonel1991/nlp2sql/claude-md
Clone the repo
git clone --depth 1 https://github.com/luiscarbonel1991/nlp2sql

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 nlp2sql CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/luiscarbonel1991/nlp2sql/claude-md.svg)](https://agentmods.dev/instructions/luiscarbonel1991/nlp2sql/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/luiscarbonel1991/nlp2sql/claude-md"><img src="https://agentmods.dev/badge/instructions/luiscarbonel1991/nlp2sql/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,413 This file is loaded in full into every session.
When invoked 1,413 The same file — it is already loaded in full.
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.01413 $0.01413
Opus 5 $0.00707 $0.00707
Sonnet 5 $0.00283 $0.00283
Haiku 4.5 $0.00141 $0.00141

Measured today against content hash 63c86165bb11, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

nlp2sql CLAUDE.md 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 today.

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.md · 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.

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Project Overview

nlp2sql is an enterprise-ready Python library that converts natural language queries to SQL using multiple AI providers (OpenAI, Anthropic Claude, Google Gemini). Built with Clean Architecture principles for production scale (1000+ tables).

Documentation

Document Description
README.md Overview and Quick Start
docs/ARCHITECTURE.md Component Diagram and Data Flow
docs/API.md Python API and CLI Reference
docs/CONFIGURATION.md Environment Variables (single source of truth)
docs/ENTERPRISE.md Large Scale Features and Migration
docs/Redshift.md Amazon Redshift Integration

Development Commands

# Install dependencies
uv sync

# Run tests
uv run pytest                              # All tests
uv run pytest tests/test_basic.py -v       # Single test file
uv run pytest -m "not integration"         # Skip integration tests

# Code quality
uv run ruff format .                       # Format code
uv run ruff check .                        # Lint code
uv run mypy src/                           # Type checking

# CLI usage
uv run nlp2sql --help
uv run nlp2sql query --database-url "postgresql://testuser:testpass@localhost:5432/testdb" --question "How many users?"

# Docker test databases
cd docker && docker compose up -d          # Start databases
# Simple DB: postgresql://testuser:testpass@localhost:5432/testdb
# Enterprise DB: postgresql://demo:demo123@localhost:5433/enterprise
# Redshift (LocalStack): redshift://testuser:testpass123@localhost:5439/testdb

Architecture

The codebase follows Clean Architecture (Hexagonal/Ports & Adapters):

src/nlp2sql/
├── core/           # Business entities (pure Python, no external dependencies)
│   ├── entities.py            # Query, SQLQuery, DatabaseType
│   └── database_prompts.py    # SQL dialect hints for AI providers
├── ports/          # Interfaces/abstractions (contracts)
│   ├── ai_provider.py          # AIProviderPort - interface for AI providers
│   ├── embedding_provider.py   # EmbeddingProviderPort - interface for embeddings
│   ├── schema_repository.py    # SchemaRepositoryPort - database schema access
│   └── cache.py, query_optimizer.py, schema_strategy.py
├── adapters/       # External implementations
│   ├── openai_adapter.py       # OpenAI GPT implementation
│   ├── anthropic_adapter.py    # Anthropic Claude implementation
│   ├── gemini_adapter.py       # Google Gemini implementation
│   ├── postgres_repository.py  # PostgreSQL schema repository
│   ├── redshift_adapter.py     # Amazon Redshift repository
│   ├── local_embedding_adapter.py   # sentence-transformers embeddings
│   └── openai_embedding_adapter.py  # OpenAI embeddings
├── services/       # Application services (orchestration)
│   └── query_service.py        # QueryGenerationService - main orchestrator
├── schema/         # Schema management
│   ├── schema_manager.py       # Coordinates filtering and strategies
│   ├── schema_analyzer.py      # Scores schema relevance
│   ├── schema_embedding_manager.py  # FAISS vector embeddings
│   └── example_store.py        # ExampleStore - FAISS-indexed few-shot examples
├── config/         # Configuration (Pydantic Settings)
├── exceptions/     # Custom exceptions hierarchy
└── cli.py          # Click-based CLI

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. today First seen · 157 lines · 1,413 tokens per session scan A 63c86165bb11

Subscribe to this mod's changes

nlp2sql CLAUDE.md is an instructions file published in the GitHub repository luiscarbonel1991/nlp2sql (8 stars, last pushed 18d ago), licensed MIT. It adds 1,413 tokens to every session, about $0.0071 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-04.