skill-rank AGENTS.md

skill-rank AGENTS.md is an instructions file for Codex, OpenCode from davidcjw/skill-rank. It costs 910 tokens per session, scanned A, original, MIT.

Repository instructions for AI coding agents working on SkillRank, a Next.js app that scores and re-ranks Claude and other agent skills using web data.

In plain words
What is it for?
Use them when changing scoring logic, adding web sources, or checking a SkillRank change with tests, lint, and builds.
Why use it?
They give agents the project rules, file locations, commands, and tests needed to make safe changes without breaking ranking or data collection.

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/davidcjw/skill-rank/agents-md
Clone the repo
git clone --depth 1 https://github.com/davidcjw/skill-rank

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 skill-rank AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/davidcjw/skill-rank/agents-md.svg)](https://agentmods.dev/instructions/davidcjw/skill-rank/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/davidcjw/skill-rank/agents-md"><img src="https://agentmods.dev/badge/instructions/davidcjw/skill-rank/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 910 This file is loaded in full into every session.
When invoked 910 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 $0.00910 $0.00910
Opus 5 $0.00455 $0.00455
Sonnet 5 $0.00182 $0.00182
Haiku 4.5 $0.00091 $0.00091

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

Security

Grade A, and why

skill-rank AGENTS.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 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.

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.

AGENTS.md · 42 lines

How it starts

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

AGENTS.md — SkillRank

Guidance for AI agents working in this repo.

What this is

A Next.js 16 app that ranks Claude / AI-agent skills by a cross-web popularity score and re-ranks every 24 hours. No database required to run; an optional Supabase table unlocks day-over-day movement arrows.

Commands

npm run dev     # local dev server
npm test        # vitest (ranking engine) — run before claiming a feature done
npm run lint    # eslint (next core-web-vitals + ts)
npm run build   # production build; must pass before deploy

Always run npm test and npm run lint before considering a change complete.

Where things live

  • Scoring logic is in lib/rank.ts and is pure (no I/O). All ranking/merge changes go here and must keep lib/__tests__/rank.test.ts green. Add a test for any new signal or weight.
  • Each web source is one file in lib/sources/ exporting a single fetch*Candidates() that must be resilient — wrap everything in try/catch and return [] on failure. Never let a dead source break the page. Current sources: github, npm, hackernews, awesomeLists (extracts gh:owner/repo links from curated "awesome-*" READMEs via raw.githubusercontent.com → mentions endorsement signal, community bucket). A "buzz/mention" source only adds value if it maps to a canonical gh:owner/repo key, since merge is by key.
  • lib/trending.ts (selectTrending/hasTrending) is a pure selector of risers/fallers/new from the ranked board's delta/isNew. components/Trending.tsx renders the strip and returns null until movement data exists. Keep the selector tested.
  • Source fetches must be tagged for cache invalidation: next: { revalidate: 86_400, tags: ["skills"] }. The cron route calls revalidateTag("skills").
  • lib/skills.ts is the orchestrator. New sources are wired in here and into liveSources. It filters live candidates through isRelevantSkill before ranking.
  • lib/relevance.ts is the on-topic gate: an allowlist of Claude/agent terms (RELEVANCE_PATTERNS) plus a curated denylist of non-skill repos (EXCLUDE_KEY_PATTERNS, e.g. n8n, vendor CLIs). When a general-purpose tool keeps surfacing, add it to the denylist and cover it in lib/__tests__/relevance.test.ts.
  • lib/seed.ts is the offline fallback; keep entries real and plausible.
  • UI lives in components/. The board is OLED-dark, Fira Code/Sans, with tabular figures (.tnum) on every number. Keep that aesthetic.

Read the full file on GitHub · 42 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 · 42 lines · 910 tokens per session scan A ddd8565b3535

Subscribe to this mod's changes

skill-rank AGENTS.md is an instructions file published in the GitHub repository davidcjw/skill-rank (2 stars, last pushed 2mo ago), licensed MIT. It adds 910 tokens to every session, about $0.0046 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 instructions, from other repositories

sigrank-app AGENTS.md

AGENTS.md instructions for SunrisesIllNeverSee/sigrank-app, covering agents.md — sigrank-app, quick reference, verification protocol (before every commit), frozen invariants (never change) and seo/aeo/geo content (do not touch).

SunrisesIllNeverSee/sigrank-app · 2,594 tokens

core CLAUDE.md

Claude Code instructions for module-federation/core, covering claude task parallelization & development guidelines, core principles, maximum parallelization strategy, universal parallel task patterns and for any codebase task.

module-federation/core · 3,933 tokens

mastra AGENTS.md

AGENTS.md instructions for mastra-ai/mastra: Unless asked, don't inspect reference or modify examples. Use the most-specific AGENTS.md; for package work, read packages/ /AGENTS.md first.

mastra-ai/mastra · 411 tokens

souls-directory CLAUDE.md

Instructions for thedaviddias/souls-directory, covering claude.md — project context for ai assistants, project overview, tech stack, critical rules and database is convex.

thedaviddias/souls-directory · 1,675 tokens

nextarter-tailwind AGENTS.md

AGENTS.md instructions for agustinusnathaniel/nextarter-tailwind, covering next.js: always read docs before coding, ai agent guidance: nextarter-tailwind, 1. mental model for agents, implementation delegation and tooling strategy.

agustinusnathaniel/nextarter-tailwind · 1,839 tokens

agentgram CLAUDE.md

Claude Code instructions for agentgram/agentgram, covering claude.md — agentgram development guide, project overview, tech stack, monorepo structure and core architecture patterns.

agentgram/agentgram · 4,467 tokens