library-advisor

library-advisor is a skill for Claude Code, Codex from ArabelaTso/Skills-4-SE. It costs 117 tokens per session (2,050 once invoked), scanned A, original, Apache-2.0.

A guide for finding existing Isabelle/HOL or Coq libraries, lemmas, and tactics that match a formal proof goal. Isabelle/HOL and Coq are tools that check mathematical proofs written in precise computer-readable form.

In plain words
What is it for?
It recommends libraries and proof tools for goals involving lists, sets, arithmetic, logic, and similar common topics.
Why use it?
It helps avoid proving standard facts from scratch and points users toward relevant names and imports when they are unsure where to look.

Skill for Claude CodeCodex

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

Good fit It recommends libraries and proof tools for goals involving lists, sets, arithmetic, logic, and similar common topics.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/arabelatso/skills-4-se/library-for-proof-advisor
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.

Any agent
npx skills add ArabelaTso/Skills-4-SE --skill library-for-proof-advisor
Clone the repo
git clone --depth 1 https://github.com/ArabelaTso/Skills-4-SE

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 library-advisor

README.md
[![agentmods](https://agentmods.dev/badge/skills/arabelatso/skills-4-se/library-for-proof-advisor/github.svg)](https://agentmods.dev/skills/arabelatso/skills-4-se/library-for-proof-advisor)
Your own site
<a href="https://agentmods.dev/skills/arabelatso/skills-4-se/library-for-proof-advisor"><img src="https://agentmods.dev/badge/skills/arabelatso/skills-4-se/library-for-proof-advisor/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 library-advisor

Your own site · 80×15
<a href="https://agentmods.dev/skills/arabelatso/skills-4-se/library-for-proof-advisor"><img src="https://agentmods.dev/badge/skills/arabelatso/skills-4-se/library-for-proof-advisor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 117 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,050 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00117 $0.02050
Opus 5 $0.00059 $0.01025
Sonnet 5 $0.00023 $0.00410
Haiku 4.5 $0.00012 $0.00205

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

Security

Grade A, and why

library-advisor 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 7d 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.

skills/library-for-proof-advisor/SKILL.md · 330 lines

How it starts

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

Library Usage Advisor

Recommend relevant libraries, lemmas, and theories from Isabelle/HOL or Coq standard libraries based on proof goals.

Workflow

1. Analyze the Proof Goal

Examine the goal to identify:

  • Domain: Lists, sets, arithmetic, logic, etc.
  • Operations: Specific functions or operators involved
  • Pattern: Commutativity, associativity, distributivity, etc.
  • Complexity: Simple property vs. complex relationship

2. Determine Target System

Identify which proof assistant:

  • Isabelle/HOL: Use Main library and extensions
  • Coq: Use standard library (List, Arith, etc.)
  • Both: Provide recommendations for both systems

3. Identify Relevant Libraries

Based on the domain, recommend appropriate libraries:

For list operations:

  • Isabelle: Main (List theory included)
  • Coq: Require Import List. Import ListNotations.

For arithmetic:

  • Isabelle: Main (Nat theory included)
  • Coq: Require Import Arith Lia.

For sets:

  • Isabelle: Main (Set theory included)
  • Coq: Require Import MSets.

For logic:

  • Isabelle: HOL (automatically available)
  • Coq: Require Import Logic.

4. Search for Specific Lemmas

Look for lemmas that directly match the goal:

Exact matches: Lemmas that prove the goal directly Component lemmas: Lemmas for parts of the goal Related lemmas: Similar properties that might help

Use the library reference files:

5. Recommend Usage

Provide concrete recommendations:

Direct application:

lemma "goal"
  by (simp add: relevant_lemma)

With additional steps:

Lemma goal : statement.
Proof.
  apply relevant_lemma.
  (* additional steps *)
Qed.

Manual proof with lemmas: Show how to use lemmas in a structured proof

6. Suggest Search Commands

Teach users how to find lemmas themselves:

Read the full file on GitHub · 330 lines

Files

What ships with it

3 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.

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. 7d ago First seen · 330 lines · 117 tokens per session scan A e8943194bd4f

Subscribe to this mod's changes

library-advisor is a skill published in the GitHub repository ArabelaTso/Skills-4-SE (252 stars, last pushed 21d ago), licensed Apache-2.0. It adds 117 tokens to every session and 2,050 once invoked, about $0.0006 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-09-03.

Related

Other skills, from other repositories

present-paper

Academic presentation preparation — paper-driven (journal club, grand rounds, seminar) and lecture/teaching decks (course material, workshop slides, conference talks). Analyzes source material, finds supporting references, drafts audience-adapted speaker scripts, generates or augments PPTX with speaker notes, and…

Aperivue/medsci-skills · 67 tokens

paper-digest

A skill that turns one research paper into a teaching-style digest for quickly understanding its content. bioRxiv-style research papers are scientific articles, and a digest summarizes and reorganizes the paper rather than judging whether its methods are reliable.

drpwchen/paper-review-and-digest · 148 tokens

defense-qa-coach

A preparation coach for thesis defenses, doctoral exams, and conference question-and-answer sessions. It helps researchers practise answering questions from the viewpoint of a committee member.

Nero1688/claude-academic-skills · 431 tokens

matlab-generate-grader-assessments

Generate MATLAB Grader assessment items that are suitability-gated, profile-driven, feedback-aware, and validated through MATLAB MCP. Produces Script, Function, Class Definition, Class Inheritance, Object Usage, and Class Methods items with MATLAB Grader assessment setup instructions.

matlab/agent-skills-playground · 62 tokens

matlab-create-course-activity

Create MATLAB Course Designer MATLAB Exercise learning activities by wrapping the existing matlab-generate-grader-assessments skill, then validating generated solution.m, template.m, and tests.m files with MATLAB MCP Server tool calls. Use when the user asks to create a MATLAB Exercise, MATLAB course activity, Course…

matlab/agent-skills-playground · 80 tokens

simulink-create-course-activity

Create MATLAB Course Designer Simulink Exercise learning activities with starter and solution Simulink model files. Use when the user asks to create a Simulink activity, Simulink Exercise, starter model, solution model, model-based learning activity, or Course Designer-ready Simulink artifact. Uses MATLAB MCP Server…

matlab/agent-skills-playground · 94 tokens