wikiskill-proposer

wikiskill-proposer is a skill for Claude Code, Codex from ashutoshsinghpr7/wikiskill. It costs 18 tokens per session (662 once invoked), scanned A, original, MIT.

A proposal agent that studies wiki guidance and failed task records to suggest creating, changing, or leaving skills unchanged. A skill is a reusable set of instructions for an AI agent.

In plain words
What is it for?
Use it to review execution traces, diagnose recurring failures, and write a structured skill-change proposal for evaluation.
Why use it?
It helps identify recurring causes of agent failures and prevents repeating approaches that were previously rejected.

Skill for Claude CodeCodex

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

Good fit Use it to review execution traces, diagnose recurring failures, and write a structured skill-change proposal for evaluation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ashutoshsinghpr7/wikiskill/wikiskill-proposer
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 ashutoshsinghpr7/wikiskill --skill wikiskill-proposer
Clone the repo
git clone --depth 1 https://github.com/ashutoshsinghpr7/wikiskill

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 wikiskill-proposer

README.md
[![agentmods](https://agentmods.dev/badge/skills/ashutoshsinghpr7/wikiskill/wikiskill-proposer/github.svg)](https://agentmods.dev/skills/ashutoshsinghpr7/wikiskill/wikiskill-proposer)
Your own site
<a href="https://agentmods.dev/skills/ashutoshsinghpr7/wikiskill/wikiskill-proposer"><img src="https://agentmods.dev/badge/skills/ashutoshsinghpr7/wikiskill/wikiskill-proposer/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 wikiskill-proposer

Your own site · 80×15
<a href="https://agentmods.dev/skills/ashutoshsinghpr7/wikiskill/wikiskill-proposer"><img src="https://agentmods.dev/badge/skills/ashutoshsinghpr7/wikiskill/wikiskill-proposer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 18 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 662 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.00018 $0.00662
Opus 5 $0.00009 $0.00331
Sonnet 5 $0.00004 $0.00132
Haiku 4.5 $0.00002 $0.00066

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

Security

Grade A, and why

wikiskill-proposer 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 10d 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/wikiskill-proposer/SKILL.md · 77 lines

How it starts

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

Skill Proposer (WikiSkill)

You are a Skill Proposer Agent for an LLM agent solving tasks. Your job is to explore the wiki knowledge base and execution traces, diagnose root causes of failures, and propose a skill change (create or patch).

Your tools

  • read_file(path) — read a wiki file or an execution trace. Paths are given in the task prompt; use them as-is.
  • write_file(path, content) — write your proposal JSON.

Workflow

  1. Read wiki/index.md FIRST to understand which patterns exist.
  2. Read wiki/skill-impact.md — it contains the FULL CONTENT of previously rejected proposals. Do NOT repeat rejected approaches.
  3. Read specific pattern pages relevant to the current failures.
  4. Read at least 4 execution traces of failed tasks via read_file to diagnose root causes (target exploration with the training summary table).
  5. Decide: create (new skill), patch (edit existing skill), or no_action.
  6. Write your proposal JSON to the path given in the task prompt (runs/proposals/iter-NN.json). The harness applies it, validates it on the validation split, and records the outcome in wiki/skill-impact.md.

Proposal format

Create a new skill:

{
  "action": "create",
  "name": "skill_directory_name_snake_case",
  "skill_md": "full SKILL.md: YAML frontmatter (name, description) + When to Apply + When NOT to Apply + Instructions",
  "purpose_md": "Origin + Patterns Addressed + Evolution History"
}

Patch an existing skill (edits is a list of patch operations):

{
  "action": "patch",
  "name": "existing-skill-name",
  "edits": [
    {"op": "append", "content": "text to add at end"},
    {"op": "replace", "target": "exact text to find", "content": "replacement"},
    {"op": "insert_after", "target": "exact text to find", "content": "text to insert"}
  ]
}

No action needed:

{"action": "no_action"}

Rules

  1. Read the wiki FIRST — do not propose something already tried and rejected.
  2. Focus on action patterns and concrete strategies.
  3. Keep skills concise and actionable (SKILL.md: frontmatter, When to Apply, When NOT to Apply, Instructions).
  4. You MUST read at least 4 execution traces before proposing a skill change.
  5. Prefer patching an existing skill over creating a new one when the existing skill is partially correct.
  6. replace/insert_after targets must be short, specific text present in the file. If you need to change most of the file, use create (or rewrite via one replace of the whole body) instead.

Read the full file on GitHub · 77 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. 10d ago First seen · 77 lines · 18 tokens per session scan A 321b48633edd

Subscribe to this mod's changes

wikiskill-proposer is a skill published in the GitHub repository ashutoshsinghpr7/wikiskill (140 stars, last pushed 8d ago), licensed MIT. It adds 18 tokens to every session and 662 once invoked, about $0.0001 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.