ls-apis AGENTS.md

ls-apis AGENTS.md is an instructions file for Codex, OpenCode from koalyptus/ls-apis. It costs 3,254 tokens per session, scanned A, original, MIT.

Repository instructions for an AI coding assistant working on ls-apis, a project that collects, standardizes, removes duplicates from, and searches API listings.

In plain words
What is it for?
Understanding the aggregator and CLI packages, installing dependencies, running tests with coverage, and working with source fetchers and quality checks.
Why use it?
They explain the project layout, installation commands, and testing process so changes fit both its data-collection package and command-line tool.

Instructions file for CodexOpenCode

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/koalyptus/ls-apis/agents-md
Clone the repo
git clone --depth 1 https://github.com/koalyptus/ls-apis

Made for: Codex, OpenCode.

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 ls-apis AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/koalyptus/ls-apis/agents-md.svg)](https://agentmods.dev/instructions/koalyptus/ls-apis/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/koalyptus/ls-apis/agents-md"><img src="https://agentmods.dev/badge/instructions/koalyptus/ls-apis/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 3,254 This file is loaded in full into every session.
When invoked 3,254 The same file — it is already loaded in full.
Security scan A 1 finding. 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 $0.03254 $0.03254
Opus 5 $0.01627 $0.01627
Sonnet 5 $0.00651 $0.00651
Haiku 4.5 $0.00325 $0.00325

Measured 4d ago against content hash 14ba9348e780, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

ls-apis AGENTS.md scanned grade A with 1 finding 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 4d 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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

- `packages/cli/src/qa.ts`: `ls-apis qa` handler — shells out to aggregator QA via `execSync`
AGENTS.md · 293 lines

How it starts

The opening of the file, as written. The whole thing — 293 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ls-apis

Project Structure

ls-apis/
├── package.json           # root (workspaces)
├── qa-output/             # QA reports (gitignored)
├── packages/
│   ├── aggregator/        # fetches, normalizes, deduplicates
│   │   ├── src/
│   │   │   ├── aggregate.ts       # main orchestration
│   │   │   ├── normalize.ts       # entry & category normalization
│   │   │   ├── paths.ts           # path utilities
│   │   │   ├── qa/                # QA validation
│   │   │   │   ├── index.ts       # QA orchestrator
│   │   │   │   ├── validations.ts # pure validation functions
│   │   │   │   └── tests/         # QA-specific tests
│   │   │   ├── sources/           # pluggable fetchers (*.fetcher.ts)
│   │   │   │   ├── index.ts       # fetcher auto-loader
│   │   │   │   └── tests/         # fetcher-specific tests
│   │   │   ├── tests/             # aggregator tests
│   │   │   └── types.ts           # ApiEntry, SourceFetcher interfaces
│   │   └── vitest.config.ts
│   ├── cli/               # CLI for searching APIs
│   │   ├── data/
│   │   │   └── apis.json          # bundled API data (published with package)
│   │   ├── src/
│   │   │   ├── index.ts           # CLI entry point
│   │   │   ├── paths.ts           # workspace root resolution
│   │   │   ├── colors.ts          # terminal color support
│   │   │   ├── qa.ts              # QA command handler
│   │   │   ├── categories.ts      # categories command
│   │   │   ├── providers.ts       # providers command
│   │   │   └── formatter.ts       # output formatter
│   │   └── tests/
│   │       ├── paths.test.ts      # path resolution tests
│   │       ├── qa.test.ts         # QA wrapper tests
│   │       ├── cli.test.ts        # CLI integration tests
│   │       ├── categories.test.ts # categories command tests
│   │       ├── providers.test.ts  # providers command tests
│   │       └── config.test.ts     # config tests
│   ├── shared/             # Shared types, config, search, paths (consumed by all packages)
│   │   ├── src/
│   │       ├── index.ts
│   │       ├── types.ts           # ApiEntry, DataFile, Provider, SearchOptions
│   │       ├── config.ts          # Config loading/display (moved from CLI)
│   │       ├── search.ts          # Search logic (moved from CLI)
│   │       └── paths.ts           # Workspace root resolution
│   └── mcp-server/         # MCP server for AI-friendly API queries (stdio transport)
│       ├── src/
│       │   ├── index.ts           # Entry point
│       │   ├── server.ts          # McpServer: register tools/resources, then connect
│       │   ├── data.ts            # Data loading (apis.json)
│       │   ├── schemas.ts         # Zod tool input schemas
│       │   ├── types.ts           # ToolName, ResourceUri enums
│       │   ├── handlers/          # SDK v2 registration (registerTool/registerResource)
│       │   │   ├── index.ts
│       │   │   ├── register-tools.ts
│       │   │   ├── register-resources.ts
│       │   │   └── tests/         # protocol-level tests (real Client ↔ McpServer)
│       │   │       ├── helpers.ts
│       │   │       ├── register-tools.test.ts
│       │   │       └── register-resources.test.ts
│       │   └── tests/
│       │       └── data.test.ts
│       ├── vitest.config.ts
│       └── package.json           # @ls-apis/mcp-server (private, stdio server)
└── AGENTS.md              # instructions for AI agents

Read the full file on GitHub · 293 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. 4d ago First seen · 293 lines · 3,254 tokens per session scan A 14ba9348e780

Subscribe to this mod's changes

ls-apis AGENTS.md is an instructions file published in the GitHub repository koalyptus/ls-apis (0 stars, last pushed today), licensed MIT. It adds 3,254 tokens to every session, about $0.0163 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.