Skills-Registry-CLI: Skill for Claude Code

.github/skills/jsonl-registry/SKILL.md

jsonl-registry is a skill for Claude Code, Codex from shyamsridhar123/Skills-Registry-CLI. It costs 45 tokens per session (1,280 once invoked), scanned A, original, MIT.

A set of instructions for managing JSONL registries. JSONL, or JSON Lines, stores one structured JSON object per line, making records easy to append and process individually.

In plain words
What is it for?
Working with JSONL files used for skill registries, logs, or datasets.
Why use it?
It explains how to create, search, update, and manage registry records consistently, including their required and optional fields.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

This is shyamsridhar123/Skills-Registry-CLI's own configuration. It tells Claude Code and Codex how to work on Skills-Registry-CLI itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything Skills-Registry-CLI configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/shyamsridhar123/Skills-Registry-CLI/main/.github/skills/jsonl-registry/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/shyamsridhar123/Skills-Registry-CLI

Made for: Claude Code, Codex.

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 jsonl-registry

README.md
[![agentmods](https://agentmods.dev/badge/skills/shyamsridhar123/skills-registry-cli/jsonl-registry/github.svg)](https://agentmods.dev/skills/shyamsridhar123/skills-registry-cli/jsonl-registry)
Your own site
<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.

agentmods 80×15 button for jsonl-registry

Your own site · 80×15
<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>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,280 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00045 $0.01280
Opus 5 $0.00023 $0.00640
Sonnet 5 $0.00009 $0.00256
Haiku 4.5 $0.00005 $0.00128

Measured 11d ago against content hash 443089dbfafe, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

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.

.github/skills/jsonl-registry/SKILL.md · 194 lines

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 .jsonl extension
  • 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;
  }
}

Read the full file on GitHub · 194 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. 11d ago First seen · 194 lines · 45 tokens per session scan A 443089dbfafe

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

database

This skill should be used when reviewing database queries, migrations, indexes, or schema changes.

dean0x/devflow · 20 tokens

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…

dean0x/devflow · 68 tokens

data-access

Invoke when working with database queries, schema changes, migrations, or data models. Contains project-specific ORM conventions and data access patterns.

anatomia-dev/anatomia · 29 tokens

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.

marcoguillermaz/Tierward · 0 tokens

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.

marcoguillermaz/Tierward · 0 tokens

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.

ayeshakhalid192007-dev/graph-engineering-crash-course · 34 tokens