wikispec-propose

wikispec-propose is a skill for Claude Code, Codex from christianb93/WikiSpec. It costs 37 tokens per session (501 once invoked), scanned A, original, MIT.

A workflow for creating or continuing a WikiSpec change, including its name, specifications, and design documents.

In plain words
What is it for?
Use it to start a new change, resume an existing one, and prepare specifications in a project knowledge wiki.
Why use it?
It gives a software change a clear written definition before implementation begins.

Skill for Claude CodeCodex

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

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 skills/christianb93/wikispec/wikispec-propose
Any agent
npx skills add christianb93/WikiSpec --skill wikispec-propose
Clone the repo
git clone --depth 1 https://github.com/christianb93/WikiSpec

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 wikispec-propose

README.md
[![agentmods](https://agentmods.dev/badge/skills/christianb93/wikispec/wikispec-propose.svg)](https://agentmods.dev/skills/christianb93/wikispec/wikispec-propose)
Your own site
<a href="https://agentmods.dev/skills/christianb93/wikispec/wikispec-propose"><img src="https://agentmods.dev/badge/skills/christianb93/wikispec/wikispec-propose.svg" alt="Measured on agentmods" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 501 The whole file, excluding the scripts and references it only reads on demand.
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.1 $0.00037 $0.00501
Opus 5 $0.00018 $0.00251
Sonnet 5 $0.00007 $0.00100
Haiku 4.5 $0.00004 $0.00050

Measured 6d ago against content hash 453e6a02da06, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

wikispec-propose 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 6d 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/wikispec-propose/SKILL.md · 38 lines

What it actually says

Skill: wikispec-propose

Drive the agent through the full propose step for a wikispec change. You will use the wikispec tool which is a binary in the path, no need to install anything.

Steps

  1. Determine the change name.

    • If the user provided a change name, use it exactly.
    • If no name was provided, but the user has provided a description of what to change, propose a short kebab-case name that captures the user's intent (e.g., add-auth, fix-export-bug)
    • If no name is provided and no description is provided, assume that we will resume work on an existing active change. Use wikispec list to list all active changes. If there is only one name, assume that we will be working on this one, otherwise ask the user. Then skip step 2 (creation of the change) and proceed directly to step 3.
  2. Create the change. Run:

    wikispec create --change <name>
    
    • If the command succeeds, proceed to step 3.
    • If the command fails because the change already exists, derive an alternative name (e.g., append -2) and retry this step.
  3. Gather context

    • load the wikispec-wiki skill to understand how to operate the knowledge wiki
    • locate and read the wikis index.md file. Check whether any of the pages listed there are relevant for the functionality proposed by the user and read those pages.
    • run wikispec files --change <name> to see whether there are already any specification files for this change, if yes read them
  4. Follow instructions in a loop. Repeat until the step is complete:

    wikispec instructions --change <name> --step propose
    
    • If the output contains instructions, follow them, then call the command again.
    • If the output signals that the step is already complete, stop looping, inform the user that the propose step is complete and suggest to run /wikispec-plan next.
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. 6d ago First seen · 38 lines · 37 tokens per session scan A 453e6a02da06

Subscribe to this mod's changes

wikispec-propose is a skill published in the GitHub repository christianb93/WikiSpec (4 stars, last pushed 3mo ago), licensed MIT. It adds 37 tokens to every session and 501 once invoked, about $0.0002 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 skills, from other repositories

file-headers

MANDATORY for every coding agent (Claude Code, Codex, or any other) on every change-set — every applicable source file the agent creates or updates MUST start with the project's copyright/authorship header (file overview + exact author line). Use automatically whenever writing a new file or editing an existing one; do…

hoangsonww/Claude-Code-Agent-Monitor · 101 tokens

productivity-score

Calculate a productivity score using actual Agent Monitor metrics — session completion rates, cache efficiency (cacheread vs input), compaction pressure (baseline tokens), turn velocity (turncount / totalturndurationms), tool success ratio (PreToolUse vs PostToolUse), and the workflow intelligence API's complexity and…

hoangsonww/Claude-Code-Agent-Monitor · 67 tokens

budget-set

Define a spend budget for Claude Code and, optionally, create a cost alert rule that fires when usage crosses the limit, via POST /api/alerts/rules on the Agent Monitor dashboard. Reads current spend from /api/pricing/cost to size the budget sensibly and explains every rule field before writing. Use when setting a…

hoangsonww/Claude-Code-Agent-Monitor · 79 tokens

dashboard-status

Quick dashboard health and status overview — checks the Agent Monitor API (port 4820), reports session/agent/event counts from /api/stats, confirms WebSocket connectivity, reads the redacted hook status returned by /api/settings/info, and shows data freshness (last event timestamp). Use to verify the monitoring system…

hoangsonww/Claude-Code-Agent-Monitor · 69 tokens

dag-map

Render the multi-agent orchestration DAG for a session — parent→child subagent edges, tree depth, and fan-out — from the Agent Monitor workflow intelligence API. Cross-checks the orchestration dataset against the raw agent records and session detail. Use when visualizing how a session's agent structure was organized.

hoangsonww/Claude-Code-Agent-Monitor · 65 tokens

run-agent

Launch and supervise Claude Code or Codex through the CCAM Run API. Use when the user wants to start a monitored agent, select a model, approval policy, sandbox, or working directory, send a follow-up, inspect live output, resume a native session, or stop a dashboard-launched run.

hoangsonww/Claude-Code-Agent-Monitor · 64 tokens