tactic-suggestion-assistant

tactic-suggestion-assistant is a skill for Claude Code, Codex from ArabelaTso/Skills-4-SE. It costs 110 tokens per session (2,069 once invoked), scanned A, original, Apache-2.0.

A guide for interactive proofs in Isabelle and Coq, which are tools for formally checking mathematical or software statements. It examines the current proof goal and suggests tactics, or proof steps, that may make progress.

In plain words
What is it for?
Use it to choose and understand tactics for Isabelle or Coq proof states.
Why use it?
It helps when you are unsure which proof step to try next or are stuck on a formal proof.

Skill for Claude CodeCodex

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

Good fit Use it to choose and understand tactics for Isabelle or Coq proof states.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/arabelatso/skills-4-se/tactic-suggestion-assistant
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 tactic-suggestion-assistant
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 tactic-suggestion-assistant

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/arabelatso/skills-4-se/tactic-suggestion-assistant"><img src="https://agentmods.dev/badge/skills/arabelatso/skills-4-se/tactic-suggestion-assistant.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 110 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,069 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.00110 $0.02069
Opus 5 $0.00055 $0.01035
Sonnet 5 $0.00022 $0.00414
Haiku 4.5 $0.00011 $0.00207

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

Security

Grade A, and why

tactic-suggestion-assistant 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 8d 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/tactic-suggestion-assistant/SKILL.md · 238 lines

How it starts

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

Tactic Suggestion Assistant

Analyze proof states and suggest applicable tactics to make progress in Isabelle or Coq.

Overview

This skill helps you navigate interactive proofs by analyzing the current proof state and suggesting 3-5 ranked tactics that can make progress. It works with both Isabelle/Isar and Coq, providing system-specific suggestions with explanations.

How to Use

Provide the current proof state including:

  1. System: Isabelle or Coq
  2. Goal: The current goal to prove
  3. Context: Available hypotheses/assumptions (if any)
  4. Variables: Types of variables involved (optional but helpful)

The assistant will analyze the state and suggest tactics ranked by likelihood of success.

Analysis Process

Step 1: Identify the Proof System

Determine whether you're working in Isabelle or Coq based on syntax:

  • Isabelle: Uses , , , , , 'a list, etc.
  • Coq: Uses ->, /\, \/, forall, exists, list A, etc.

Step 2: Analyze Goal Structure

Examine the goal's logical form:

  • Conjunction: P ∧ Q / P /\ Q → Split tactics
  • Implication: P ⟹ Q / P -> Q → Introduction tactics
  • Quantification: ∀x. P / forall x, P → Variable introduction
  • Equality: t1 = t2 → Simplification or rewriting
  • Inductive types: Lists, nat, trees → Induction or case analysis

Step 3: Examine Context

Look at available hypotheses:

  • Equations: Can be used for rewriting
  • Inductive predicates: Can be inverted or used directly
  • Conjunctions: Can be decomposed
  • Disjunctions: Require case analysis

Step 4: Consider Variable Types

Type information guides tactic choice:

  • Lists: Suggest induction or case analysis (empty vs cons)
  • Natural numbers: Suggest induction or case analysis (0 vs successor)
  • Options: Suggest case analysis (None vs Some)
  • Custom types: Suggest structural induction

Step 5: Rank Suggestions

Provide 3-5 tactics ranked by:

  1. Structural match with goal
  2. Simplicity and directness
  3. Automation potential
  4. Common proof patterns
  5. Context support

Read the full file on GitHub · 238 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. 8d ago First seen · 238 lines · 110 tokens per session scan A 05b73da5df6e

Subscribe to this mod's changes

tactic-suggestion-assistant is a skill published in the GitHub repository ArabelaTso/Skills-4-SE (252 stars, last pushed 21d ago), licensed Apache-2.0. It adds 110 tokens to every session and 2,069 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