From prism
Audits CLAUDE.md files using PRISM CLI to recommend ADD, TRIM, WARN, and RESTRUCTURE changes based on session data. Use to fix rule violations, length issues, and placements.
npx claudepluginhub jakeefr/prism --plugin prismThis skill uses the workspace's default tool permissions.
Get concrete CLAUDE.md recommendations based on real session data.
Audits Claude Code configurations for best practices in skills, instructions, MCP servers, hooks, plugins, security, over-engineering, and context efficiency via file scans and focused checks. Invoke with /claudit [focus-area].
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Get concrete CLAUDE.md recommendations based on real session data.
When the user asks to audit their CLAUDE.md, fix their CLAUDE.md, improve their CLAUDE.md, or understand what is wrong with it.
First check if PRISM is installed:
prism --version
If the command is not found, install it first:
pip install prism-cc
Then verify it installed correctly:
prism --version
Once confirmed installed, proceed with the advise command.
Run the advisor for the current project:
prism advise --project .
For a different project:
prism advise --project <path>
From an agentsview database (real API token counts, richer data):
prism advise --source agentsview
prism advise --source agentsview --agentsview-db /path/to/sessions.db
DB path resolution: AGENTSVIEW_DATA_DIR → AGENT_VIEWER_DATA_DIR → ~/.agentsview/sessions.db.
Note: --project cannot be used with --source agentsview.
PRISM prints recommendations with four action types:
Each recommendation includes an impact level (High, Medium, Low) and evidence from actual session data.
If the user wants to apply the ADD recommendations automatically:
prism advise --project . --apply
This adds new rules to the CLAUDE.md file. It will show a preview and ask for confirmation before writing anything. Only ADD recommendations are applied automatically. TRIM and RESTRUCTURE changes must be done by hand.