Borrowing it
Nothing to install: this file belongs to shyamsridhar123/Skills-Registry-CLI. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/shyamsridhar123/Skills-Registry-CLI/main/.github/skills/jsonl-registry/SKILL.mdgit clone --depth 1 https://github.com/shyamsridhar123/Skills-Registry-CLIWrote 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/shyamsridhar123/skills-registry-cli/jsonl-registry)<a href="https://agentmods.dev/skills/shyamsridhar123/skills-registry-cli/jsonl-registry"><img src="https://agentmods.dev/badge/skills/shyamsridhar123/skills-registry-cli/jsonl-registry/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/shyamsridhar123/skills-registry-cli/jsonl-registry"><img src="https://agentmods.dev/badge/skills/shyamsridhar123/skills-registry-cli/jsonl-registry.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.00045 | $0.01280 |
| Opus 5 | $0.00023 | $0.00640 |
| Sonnet 5 | $0.00009 | $0.00256 |
| Haiku 4.5 | $0.00005 | $0.00128 |
Grade A, and why
jsonl-registry 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 11d 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.
How it starts
The opening of the file, as written. The whole thing — 194 lines — stays where its author put it; the contents beside it link to each section on GitHub.
JSONL Registry Skill
This skill provides guidance for working with JSONL (JSON Lines) format for managing skill registries.
JSONL Format Specification
JSONL (JSON Lines) is a convenient format for storing structured data:
- Each line is a valid JSON object
- Lines are separated by newline characters (
\n) - Files typically use
.jsonlextension - Easy to append, stream, and process line-by-line
Example Registry Entry
{"name": "skill-creator", "description": "Guide for creating skills", "source": "anthropics/skills", "path": ".github/skills/skill-creator", "installed_at": "2026-01-20T10:30:00Z", "tags": ["meta"]}
Registry Schema
Required Fields
| Field | Type | Description |
|---|---|---|
name |
string | Skill identifier, lowercase with hyphens |
description |
string | What the skill does |
path |
string | Local path to skill directory |
installed_at |
string | ISO 8601 timestamp |
Optional Fields
| Field | Type | Description |
|---|---|---|
source |
string | Source repository (owner/repo) |
version |
string | Semantic version |
tags |
array | Category tags for filtering |
author |
string | Skill author |
license |
string | License type |
checksum |
string | SHA256 hash of SKILL.md |
Node.js Implementation
Registry Class
import { readFile, writeFile, appendFile } from 'fs/promises';
import { existsSync } from 'fs';
export class Registry {
constructor(path = '.github/skills/registry.jsonl') {
this.path = path;
}
async getAll() {
if (!existsSync(this.path)) {
return [];
}
const content = await readFile(this.path, 'utf-8');
return content
.split('\n')
.filter(line => line.trim())
.map(line => JSON.parse(line));
}
async add(skill) {
const entry = {
name: skill.name,
description: skill.description,
path: skill.path,
source: skill.source,
installed_at: new Date().toISOString(),
tags: skill.tags || [],
};
await appendFile(this.path, JSON.stringify(entry) + '\n');
return entry;
}
async remove(name) {
const entries = await this.getAll();
const filtered = entries.filter(e => e.name !== name);
await writeFile(
this.path,
filtered.map(e => JSON.stringify(e)).join('\n') + '\n'
);
}
async find(name) {
const entries = await this.getAll();
return entries.find(e => e.name === name);
}
async search(query) {
const entries = await this.getAll();
const q = query.toLowerCase();
return entries.filter(e =>
e.name.includes(q) ||
e.description.toLowerCase().includes(q) ||
e.tags?.some(t => t.includes(q))
);
}
async rebuild(skillsDir = '.github/skills') {
// Scan for SKILL.md files and rebuild registry
const skills = [];
// Implementation: scan directories, parse SKILL.md, collect metadata
return skills;
}
}
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.
- 11d ago First seen · 194 lines · 45 tokens per session scan A 443089dbfafe
jsonl-registry is a skill published in the GitHub repository shyamsridhar123/Skills-Registry-CLI (2 stars, last pushed 7mo ago), licensed MIT. It adds 45 tokens to every session and 1,280 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.
Other skills, from other repositories
database
This skill should be used when reviewing database queries, migrations, indexes, or schema changes.
patterns
This skill should be used when the user asks to "create an API endpoint", "add CRUD operations", "implement event handlers", "set up logging", "add configuration", or builds features involving database operations, REST/GraphQL APIs, pub/sub patterns, or service configuration. Provides implementation patterns that…
data-access
Invoke when working with database queries, schema changes, migrations, or data models. Contains project-specific ORM conventions and data access patterns.
skill-db
Database audit: schema quality, index coverage, row-level access-control completeness, FK cascades, query patterns. Runs live SQL verification (PostgreSQL instance in PATTERNS.md; other engines verify the equivalent guard). Migration file safety → /migration-audit.
migration-audit
Stack-aware migration safety audit: data loss risks, destructive ops without rollback, NOT NULL without DEFAULT, unsafe ALTER TYPE, lock-heavy DDL, constraint sequencing. Supports Prisma, Drizzle, Supabase CLI, raw SQL.
query-graph
Loads schema.sql into a local SQLite file, then answers availability and provenance questions against the nodes/edges tables with real SQL instead of re-reading source material.