karimo-overview: Command for Claude Code

.claude/commands/restart.md

restart is a command for Claude Code from opensesh/karimo-overview. It costs 6 tokens per session (257 once invoked), scanned C, original, Apache-2.0.

A command that stops the development server, removes its cached build files, and starts it again.

In plain words
What is it for?
Use it when a Next.js development site behaves as though old code is still running or when you need a fresh local build.
Why use it?
It helps resolve problems caused by stale cached files during local website development.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

This is opensesh/karimo-overview's own configuration. It tells Claude Code how to work on karimo-overview itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything karimo-overview configures →

Reuse

Borrowing it

Nothing to install: this file belongs to opensesh/karimo-overview. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/opensesh/karimo-overview/main/.claude/commands/restart.md
Clone the repo
git clone --depth 1 https://github.com/opensesh/karimo-overview

Made for: Claude Code.

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 restart

README.md
[![agentmods](https://agentmods.dev/badge/commands/opensesh/karimo-overview/restart.svg)](https://agentmods.dev/commands/opensesh/karimo-overview/restart)
Your own site
<a href="https://agentmods.dev/commands/opensesh/karimo-overview/restart"><img src="https://agentmods.dev/badge/commands/opensesh/karimo-overview/restart.svg" alt="Measured on agentmods" height="20"></a>
Per session 6 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 257 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.00006 $0.00257
Opus 5 $0.00003 $0.00129
Sonnet 5 $0.00001 $0.00051
Haiku 4.5 $0.00001 $0.00026

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

Security

Grade C, and why

restart scanned grade C with 1 finding 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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf .next node_modules/.cache
.claude/commands/restart.md · 41 lines

What it actually says

Clear all caches and restart the development server for a fresh start.

Steps

  1. Kill any running Next.js processes:

    pkill -f 'next-server' 2>/dev/null
    pkill -f 'next dev' 2>/dev/null
    
  2. Check cache sizes before clearing (for reporting):

    du -sh .next 2>/dev/null
    du -sh node_modules/.cache 2>/dev/null
    
  3. Remove cache directories:

    rm -rf .next node_modules/.cache
    
  4. Report what was cleared - inform the user how much space was freed.

  5. Start the dev server:

    npm run dev
    
  6. Confirm startup - let the user know the server is running and on which port.

Notes

  • This command should be run from the karimo-overview directory
  • The .next/ cache can grow to 600+ MB over time
  • Clearing caches resolves most "stale build" issues
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 · 41 lines · 6 tokens per session scan C 6126366c121e

Subscribe to this mod's changes

restart is a command published in the GitHub repository opensesh/karimo-overview (11 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 6 tokens to every session and 257 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.