explore

explore is a command for coding agents from aavaz-ai/enterpret-claude-plugins. It costs 28 tokens per session (1,470 once invoked), scanned A, original, MIT.

An interactive browser for an organisation's customer-feedback taxonomy, meaning the hierarchy used to group feedback into categories and themes. It can move from broad categories to detailed themes and show related feedback measures.

In plain words
What is it for?
Use it to browse category levels, inspect themes, view feedback volume and sentiment, and retrieve the underlying customer records.
Why use it?
It makes a large classification system easier to inspect than searching through raw feedback. It helps you understand where topics belong and how much feedback or sentiment each area has.

Command

Part of the enterpret-customer-insights plugin — 4 skills, 6 commands, 2 agents, 1 hook, 1 MCP server shipped together

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 commands/aavaz-ai/enterpret-claude-plugins/explore
Clone the repo
git clone --depth 1 https://github.com/aavaz-ai/enterpret-claude-plugins

Or install enterpret-customer-insights, the plugin that ships this one along with the rest of its 4 skills, 6 commands, 2 agents, 1 hook, 1 MCP server.

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 explore

README.md
[![agentmods](https://agentmods.dev/badge/commands/aavaz-ai/enterpret-claude-plugins/explore.svg)](https://agentmods.dev/commands/aavaz-ai/enterpret-claude-plugins/explore)
Your own site
<a href="https://agentmods.dev/commands/aavaz-ai/enterpret-claude-plugins/explore"><img src="https://agentmods.dev/badge/commands/aavaz-ai/enterpret-claude-plugins/explore.svg" alt="Measured on agentmods" height="20"></a>
Per session 28 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,470 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 $0.00028 $0.01470
Opus 5 $0.00014 $0.00735
Sonnet 5 $0.00006 $0.00294
Haiku 4.5 $0.00003 $0.00147

Measured 3d ago against content hash f496fbf31fbf, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

explore 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 3d 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.

commands/explore.md · 149 lines

How it starts

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

/explore

You are exploring your organization's feedback taxonomy and data — the hierarchical classification system for customer feedback. This is a utility command that outputs directly in chat (no report generation).

Pre-Flight

  1. Check if context/organization.json exists. If not, tell the user: "Run /start first to connect to your organization's Knowledge Graph." Stop.
  2. Call get_organization_details from the enterpret-wisdom-mcp MCP server.
  3. If it fails with an auth error, tell the user to run /start and stop.
  4. If successful, read context/organization.json for org name and L1 categories.

Skills (reference if needed, do NOT read upfront)

  • wisdom-kg — query patterns and KG rules (only read if a query fails and you need to debug)

Behavior

No argument: Show L1 overview

If the user runs /explore with no argument:

  1. If context/organization.json already has L1 categories, present those directly. Otherwise query:
MATCH (nli:NaturalLanguageInteraction)-[:SUMMARIZED_BY]->(fi:FeedbackInsight)-[:HAS_TAGS]->(cft:CustomerFeedbackTags)-[:BELONGS_TO_L1]->(l1:L1)
RETURN l1.name AS category, COUNT(DISTINCT fi.feedback_record_id) AS volume
ORDER BY volume DESC
LIMIT 20
  1. Present as a numbered table:
# Category Volume
1 {top category} {volume}
2 {second category} {volume}
... ... ...
  1. Say: "Pick a category number or name to drill deeper, or say 'done' to exit."

With L1 argument: Show L2 breakdown

If the user runs /explore {category} or selects a category:

  1. Query L2 under that L1:
MATCH (fi:FeedbackInsight)-[:HAS_TAGS]->(cft:CustomerFeedbackTags)-[:BELONGS_TO_L1]->(l1:L1)
MATCH (cft)-[:BELONGS_TO_L2]->(l2:L2)
WHERE l1.name = "{L1_CATEGORY}"
RETURN l2.name AS subcategory, COUNT(DISTINCT fi.feedback_record_id) AS volume
ORDER BY volume DESC
LIMIT 20
  1. Present as tree + table:
{L1 Category}
├── {L2 subcategory 1} ({volume})
├── {L2 subcategory 2} ({volume})
├── {L2 subcategory 3} ({volume})
└── ...

Read the full file on GitHub · 149 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. 3d ago First seen · 149 lines · 28 tokens per session scan A f496fbf31fbf

Subscribe to this mod's changes

explore is a command published in the GitHub repository aavaz-ai/enterpret-claude-plugins (2 stars, last pushed 4mo ago), licensed MIT. It adds 28 tokens to every session and 1,470 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.