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.
npx skills add teamtinvio/jaz-ai --skill jaz-pseudo-sqlgit clone --depth 1 https://github.com/teamtinvio/jaz-aiWrote 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/skills/teamtinvio/jaz-ai/jaz-pseudo-sql)<a href="https://agentmods.dev/skills/teamtinvio/jaz-ai/jaz-pseudo-sql"><img src="https://agentmods.dev/badge/skills/teamtinvio/jaz-ai/jaz-pseudo-sql/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/skills/teamtinvio/jaz-ai/jaz-pseudo-sql"><img src="https://agentmods.dev/badge/skills/teamtinvio/jaz-ai/jaz-pseudo-sql.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00148 | $0.01797 |
| Opus 5 | $0.00074 | $0.00898 |
| Sonnet 5 | $0.00030 | $0.00359 |
| Haiku 4.5 | $0.00015 | $0.00180 |
Grade A, and why
jaz-pseudo-sql 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.
How it starts
The opening of the file, as written. The whole thing — 90 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Jaz Pseudo-SQL Skill
You are running ad-hoc data queries against the curated reporting schema in Jaz — a read-only SQL DSL exposed via the Jaz API at /api/v1/reports/sql-query/*. Use this skill when:
- The user asks a custom analytical question that doesn't match any
download_export(exportType=...)canonical report. - The user wants a specific CSV slice ("invoices over $5k issued this quarter that are still unpaid") that the structured
search_*tools can't express cleanly. - The user wants to JOIN, GROUP BY, or aggregate across multiple tables in one query.
NOT a general-purpose database surface. Curated schema only — no DML (DELETE/UPDATE/INSERT), no multi-statement input, no access to private columns. Validators reject anything that isn't a single SELECT against an allowed table. See
references/error-catalog.mdfor the full error vocabulary.
Source of truth for the schema
Call get_pseudo_sql_schema first for the live curated catalog (~70 tables, 91 join edges, 47 functions). Pass table to scope it to one table and its joins — the whole catalog is ~18k tokens, one table is ~1k.
The syntax guide is a SEPARATE call, get_pseudo_sql_syntax, returning the canonical jaz-pseudo-sql.md body in agentSkillsDoc.content. It is static — identical for every organization — so fetch it once, cache on version, and skip it entirely if you already have this skill loaded. The two were one response until 2026-09-03; combined they cost ~35k tokens on a call documented as "before any query", of which 42% was the unchanging guide.
The version field is a stable 16-char hex hash; cache by it. If you've already called the tool this session and the version is unchanged on a re-call, the schema and skill body are identical to your cached copy — no need to re-read.
Don't write a pseudo-SQL query from memory. The catalog grows; column names change; the live schema is the only source you should trust.
When NOT to use this skill
| Use this instead | When |
|---|---|
download_export(exportType='analysis-anomalous-invoices') etc. |
Canonical anomaly / audit / risk reports — they're tuned, parameterized, and faster than re-deriving them in SQL. See jaz-api Rule 141. |
download_export(exportType='trial-balance') etc. |
Statements (TB, BS, P&L, GL, cashflow). The reporting engine handles period closing rules, intercompany eliminations, FX revaluation. SQL would miss these. |
search_invoices(filter:...), search_bills, etc. |
Listing entities with structured filters. Returns typed objects, supports pagination, faster than SQL. |
get_invoice(resourceId) etc. |
Single-entity lookup by ID. |
view_auto_reconciliation |
Bank reconciliation match suggestions. |
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- today Changed 00fcd12c37fc
- 2d ago Changed 14420589bf29
- 3d ago Changed b4eea377f185
- 4d ago Changed · +4 lines · +14 tokens per session 2fc7a2d3db81
- 8d ago First seen · 86 lines · 134 tokens per session scan A ca19e9ede0b2
jaz-pseudo-sql is a skill published in the GitHub repository teamtinvio/jaz-ai (7 stars, last pushed yesterday), licensed MIT. It adds 148 tokens to every session and 1,797 once invoked, about $0.0007 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.
Other skills, from other repositories
voiden
Create and edit Voiden .void files for API testing. Covers the .void file format and all enabled extension block types.
ast-introspection
Use Go AST-aware analysis to enumerate symbols, extract signatures, and propose mechanically safe refactors (read-only by default).
build-run
Build and run the project locally to reproduce compile/runtime issues in a safe, non-production way.
ci-orchestrator
Run a CI-like pipeline locally (format, lint, vet, static-analysis, tests) and summarize per-step results with remediation guidance.
code-navigation
Rapid, focused navigation to locate definitions/usages and map the impact of proposed changes.
config-loader-helper
Diagnose configuration-related failures, enumerate required env vars, and guide safe local test setup (no secrets).