whetstone
v4.5.1Engineering-discipline skills for planning, debugging, review, verification, and implementation in Codex.
By Ilia AlshanetskyLicense: MIT33 GitHub starsUpdated 2 weeks ago
Directory evidence
- Runtimes
- Codex and Claude Code
- Parsed components
- 33 skill or MCP entries
- Source updated
- Sep 6, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install whetstone for Codex and Claude Code
codex plugin marketplace add iliaal/whetstone
codex plugin marketplace upgrade whetstone
codex plugin add whetstone@whetstonePaste and run these commands in a terminal with Codex. They add and refresh the whetstone catalog, then install this plugin.
Compatibility: the page URL and API slug “whetstone” remain stable.
- Codex:
whetstone@agent-plugin-marketplace→whetstone@whetstone
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/iliaal/whetstoneClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/whetstone/.
Plugin files
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json├── skills/ia-agent-native-architecture/SKILL.md├── skills/ia-brainstorming/SKILL.md├── skills/ia-c-systems/SKILL.md├── skills/ia-code-review/SKILL.md├── skills/ia-compound-docs/SKILL.md├── skills/ia-cpp-systems/SKILL.md├── skills/ia-debugging/SKILL.md├── skills/ia-document-review/SKILL.md├── skills/ia-file-todos/SKILL.md├── skills/ia-frontend-design/SKILL.md├── skills/ia-git-worktree/SKILL.md├── skills/ia-linux-bash-scripting/SKILL.md├── skills/ia-md-docs/SKILL.md├── skills/ia-meta-prompting/SKILL.md├── skills/ia-nodejs-backend/SKILL.md├── skills/ia-orchestrating-swarms/SKILL.md├── skills/ia-php-laravel/SKILL.md├── skills/ia-pinescript/SKILL.md├── skills/ia-planning/SKILL.md├── skills/ia-postgresql/SKILL.md├── skills/ia-python-services/SKILL.md├── skills/ia-react-frontend/SKILL.md├── skills/ia-receiving-code-review/SKILL.md├── skills/ia-refine-prompt/SKILL.md├── skills/ia-reflect/SKILL.md├── skills/ia-rust-systems/SKILL.md├── skills/ia-simplifying-code/SKILL.md├── skills/ia-tailwind-css/SKILL.md├── skills/ia-terraform/SKILL.md├── skills/ia-verification-before-completion/SKILL.md├── skills/ia-writing/SKILL.md├── skills/ia-writing-tests/SKILL.md└── .mcp.json
Included Skills32
Design agent-native applications where agents replace UI users as the primary actor. Use when designing MCP tools, agent-loop architectures, system prompt design, hooks policy, shared-workspace file patterns, or self-modifying agent systems.
Pre-implementation exploration: deep interview, approach comparison, design doc. Use when exploring a vague feature idea, clarifying ambiguous requirements, or comparing approaches before coding. For the full workflow, use the ia-brainstorm command (Claude Code).
C patterns for systems code, libraries, and native extensions: module layout, function decomposition, status-enum errors, memory safety, undefined behavior, and performance measurement. Use when writing, reviewing, refactoring, or debugging C, working with malloc lifetimes, buffer overflows, sanitizers, or Valgrind, or building native extensions. For C++, see ia-cpp-systems.
Structured code reviews with severity-ranked findings and deep multi-agent mode. Use when performing a code review, auditing code quality, or critiquing PRs, MRs, or diffs. For the full multi-agent workflow, use the ia-review command (/ia-review in Claude Code).
Document solved problems for team reuse. Provides process knowledge for /ia-compound. Use when documenting a resolved issue, writing up lessons learned, capturing a post-mortem, adding to the knowledge base, or building searchable institutional knowledge after debugging.
Modern C++ patterns: RAII and ownership, rule of zero/five, exceptions and error handling, API and ABI boundaries, templates, and CMake tooling. Use when writing, reviewing, refactoring, or debugging C++, working with smart pointers, move semantics, memory leaks, template errors, or gtest. For plain C, see ia-c-systems.
Systematic root-cause debugging with verification. Use for errors, stack traces, broken tests, flaky tests, regressions, or anything not working as expected. For validating bug reports before fixing, use bug-reproduction-validator agent.
Structural review of documents for gaps, clarity, completeness, and organization. Use when a brainstorm, plan, spec, ADR, or any doc needs polish before the next workflow step. For exploring new ideas from scratch, use brainstorming instead.
File-based todo and task tracking in the todos/ directory. Use when creating, triaging, listing, or managing todo files, tracking work items, managing the backlog, converting PR comments to tracked tasks, or checking todo status and dependencies.
Visual design and aesthetic direction for frontend interfaces. Use when building web pages, landing pages, dashboards, Next.js server components, or applications where visual identity matters. For React patterns and testing, use react-frontend.
Manage Git worktrees for isolated parallel development. Use when creating, listing, switching, or cleaning up git worktrees, or when needing isolated branches for concurrent reviews or feature work.
Defensive Bash scripting for Linux: safe foundations, argument parsing, production patterns, ShellCheck compliance. Use when writing bash scripts, shell scripts, cron jobs, or CLI tools in bash.
Manages project documentation: CLAUDE.md, AGENTS.md, README.md, CONTRIBUTING.md, DOCS.md. Use when asked to update, create, or init these context files. Not for general markdown editing.
Structured decision modifiers (/think, /verify, /adversarial, /edge, /confidence, /assumptions, etc.) to stress-test conclusions, evidence, assumptions, alternatives, and edge cases. Use when validating an important design, architecture decision, or ambiguous plan before committing.
Node.js backend patterns: layered architecture, TypeScript, validation, error handling, security, observability, logging, metrics, deployment. Use when building REST APIs, REST endpoints, middleware, Express/Fastify/Hono/NestJS/Koa servers, tRPC procedures, Bun servers, or server-side TypeScript.
Coordinate multi-agent swarms for parallel and pipeline workflows. Use when coordinating multiple agents, running parallel reviews, building pipeline workflows, or implementing divide-and-conquer patterns with subagents.
Modern PHP 8.4 and Laravel patterns: architecture, Eloquent, migrations, queues, testing. Use when working with Laravel, Eloquent, Blade, artisan, or building/testing a framework-based PHP app. Not for php-src internals, standalone PHP libraries, or general PHP language discussion.
Pine Script v6: syntax, performance, error diagnosis, backtesting, visualization. Use when writing or debugging `.pine` files or TradingView Pine indicators/strategies.
Software implementation planning with optional file-based persistence. Use when asked to plan, when unresolved architecture or scope decisions need a durable record, or when multi-phase implementation needs recovery state. For the full research-and-issue workflow, use the ia-plan command (/ia-plan in Claude Code).
PostgreSQL schema design, query optimization, indexing, and administration. Use when working with PostgreSQL, JSONB, partitioning, RLS, CTEs, window functions, or EXPLAIN ANALYZE.
Python patterns for CLI tools, async concurrency, and backend services. Use when working with Python code, building CLI apps, FastAPI services, async with asyncio, background jobs, or configuring uv, ruff, ty, pytest, or pyproject.toml.
React architecture patterns, TypeScript, Next.js, hooks, and testing. Use when working with React component structure, state management, Next.js routing, Vitest, React Testing Library, or reviewing React code. For visual design and aesthetic direction, use frontend-design instead.
Process code review feedback critically: check correctness before acting, push back on incorrect suggestions, no performative agreement. Use when responding to PR/MR review comments or implementing reviewer suggestions received from others.
Transforms vague prompts into precise, structured AI instructions. Use when asked to refine, improve, or sharpen a prompt, do prompt engineering, write a system prompt, or make AI instructions more effective.
Session retrospective and skill audit. Use when asked to reflect, do a retrospective, review lessons learned, audit what went well or wrong, or review session effectiveness.
Rust patterns for CLI tools, backend services, and general application code. Use when working with Rust, Cargo workspaces, axum/tokio services, clap CLIs, async concurrency, or configuring clippy, rustfmt, cargo-nextest, or Cargo.toml.
Simplifies, polishes, and declutters code without changing behavior. Use when asked to simplify, clean up, refactor, declutter, remove dead code or AI slop, or improve readability. For analysis-only reports without code changes, use code-simplicity-reviewer agent.
Tailwind CSS v4 patterns: CSS-first config, utility classes, component variants, v3 migration. Use when styling with Tailwind, configuring @theme tokens, using tailwind-variants/CVA, migrating v3 to v4, or fixing Tailwind styles and dark mode.
Terraform and OpenTofu configuration, modules, testing, state management, and HCL review. Use when working with Terraform, OpenTofu, HCL, tfvars, tftest, state migration, or IaC patterns.
Enforces fresh verification evidence before any completion claim. Use when about to claim "tests pass", "bug fixed", "done", "ready to merge", handing off work, or before editing when a request has ambiguous scope.
Prose editing, rewriting, and humanizing text for natural tone, or auditing a draft for AI tells without rewriting. Use when asked to write, rewrite, edit, humanize, proofread, fix tone, remove AI language, or check whether writing reads as AI. For copy, docs, blog posts, emails, or PRs.
Generic test writing discipline: test quality, real assertions, anti-patterns, and rationalization resistance. Use when writing tests, adding test coverage, or fixing failing tests for any language or framework. Complements language-specific skills.
MCP servers1
- url
- https://mcp.context7.com/mcp
Plugin manifests2
{
"name": "whetstone",
"version": "4.5.1",
"description": "Engineering-discipline skills for planning, debugging, review, verification, and implementation in Codex.",
"author": {
"name": "Ilia Alshanetsky",
"url": "https://github.com/iliaal"
},
"homepage": "https://github.com/iliaal/whetstone",
"repository": "https://github.com/iliaal/whetstone",
"license": "MIT",
"keywords": [
"whetstone",
"engineering-workflows",
"code-review",
"debugging",
"planning"
],
"skills": "./skills/",
"interface": {
"displayName": "Whetstone",
"shortDescription": "Apply disciplined engineering workflows in Codex.",
"longDescription": "Adds Whetstone's portable engineering skills for planning, debugging, implementation, review, verification, documentation, and stack-specific work, plus Context7 documentation retrieval.",
"developerName": "Ilia Alshanetsky",
"category": "Productivity",
"capabilities": [
"Engineering workflows",
"Code review",
"Documentation retrieval"
],
"defaultPrompt": [
"Plan and implement this change with Whetstone.",
"Review this code with Whetstone.",
"Debug this failure systematically."
]
},
"mcpServers": "./.mcp.json"
}{
"name": "whetstone",
"version": "4.5.1",
"description": "AI-powered development tools. 19 agents, 22 commands, 32 skills, 1 hook, 1 MCP server for code review, research, design, and workflow automation.",
"author": {
"name": "Ilia Alshanetsky",
"url": "https://github.com/iliaal"
},
"homepage": "https://github.com/iliaal/whetstone",
"repository": "https://github.com/iliaal/whetstone",
"license": "MIT",
"keywords": [
"ai-powered",
"whetstone",
"workflow-automation",
"code-review",
"python",
"typescript",
"knowledge-management"
],
"mcpServers": {
"context7": {
"type": "http",
"url": "https://mcp.context7.com/mcp"
}
}
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[whetstone on Agent Plugins Marketplace](https://pluginsmp.com/plugins/whetstone)