conversation-review

conversation-review is a skill for Claude Code from honeydew-ai/honeydew-ai-coding-agents-plugins. It costs 62 tokens per session (2,400 once invoked), scanned A, original, Apache-2.0.

A workflow for reviewing past conversations that contain user feedback and turning that feedback into improvements to a semantic or context model. It covers collecting, categorizing, and applying the changes on a development branch.

In plain words
What is it for?
Use it to review feedback-bearing analysis chats, classify problems, create an action list, and update a semantic or context layer.
Why use it?
It gives curators a repeatable way to turn scattered feedback into specific model improvements. It also defines how to separate reading the current model from making changes.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the honeydew-ai plugin — 13 skills, 1 hook, 1 MCP server shipped together

Good fit Use it to review feedback-bearing analysis chats, classify problems, create an action list, and update a semantic or context layer.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/honeydew-ai/honeydew-ai-coding-agents-plugins/conversation-review
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.

Any agent
npx skills add honeydew-ai/honeydew-ai-coding-agents-plugins --skill conversation-review
Clone the repo
git clone --depth 1 https://github.com/honeydew-ai/honeydew-ai-coding-agents-plugins

Made for: Claude Code.

Or install honeydew-ai, the plugin that ships this one along with the rest of its 13 skills, 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 conversation-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/honeydew-ai/honeydew-ai-coding-agents-plugins/conversation-review/github.svg)](https://agentmods.dev/skills/honeydew-ai/honeydew-ai-coding-agents-plugins/conversation-review)
Your own site
<a href="https://agentmods.dev/skills/honeydew-ai/honeydew-ai-coding-agents-plugins/conversation-review"><img src="https://agentmods.dev/badge/skills/honeydew-ai/honeydew-ai-coding-agents-plugins/conversation-review/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for conversation-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/honeydew-ai/honeydew-ai-coding-agents-plugins/conversation-review"><img src="https://agentmods.dev/badge/skills/honeydew-ai/honeydew-ai-coding-agents-plugins/conversation-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,400 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Data Exfiltration · line 23
    Code or instructions that leak agent conversation context to external services, potentially exposing sensitive user interactions.
    Fix: Remove any code that sends prompts, responses, or session data externally. Preserve user privacy; never exfiltrate conversation content.
How audits are shown
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.00062 $0.02400
Opus 5 $0.00031 $0.01200
Sonnet 5 $0.00012 $0.00480
Haiku 4.5 $0.00006 $0.00240

Measured 12d ago against content hash 55e4b115bb2a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

conversation-review 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 12d 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/conversation-review/SKILL.md · 250 lines

How it starts

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

Overview

This skill is for semantic and context layer curators who want to use accumulated user feedback to drive continuous improvement. It structures the work into two phases:

  1. Categorize — review past conversations with feedback and classify each piece of feedback into an actionable improvement category
  2. Act — turn the categorized feedback into a concrete list of changes, then apply them to the semantic model or context layer on a branch

Prerequisites

Before starting, ensure a workspace and branch are set. Use get_session_workspace_and_branch to check the current context. If nothing is set, use list_workspaces and set_session_workspace_and_branch. See the workspace-branch skill for the full reference.

You will be reading the model as-is (use prod branch for reading), then applying changes on a development branch later.


Phase 1: Collect Conversations

1.1 Fetch conversations with feedback

Use list_analysis_chats to retrieve past conversations. Focus on those that have received feedback — positive or negative.

list_analysis_chats(limit=50, offset=0)

Paginate with offset until you have covered the desired time window or conversation count. For each conversation, note:

  • conversation_id
  • title
  • feedback (the stored feedback text, if any)
  • agent and domain
  • created_at and created_by

Filter to conversations with feedback. Skip conversations with no feedback unless the user explicitly wants to review all conversations.

If a conversation has no feedback or the stored feedback is inaccurate, use provide_analysis_feedback to record the correct label before categorizing:

provide_analysis_feedback(conversation_id="abc123", feedback="Data Issue: net revenue metric missing")
provide_analysis_feedback(conversation_id="def456", feedback="Good")

This keeps the stored feedback in sync with the categorization, so future reviews start from an accurate baseline.

1.2 Read the full conversation when needed

Read the full file on GitHub · 250 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. 12d ago First seen · 250 lines · 62 tokens per session scan A 55e4b115bb2a

Subscribe to this mod's changes

conversation-review is a skill published in the GitHub repository honeydew-ai/honeydew-ai-coding-agents-plugins (39 stars, last pushed 13d ago), licensed Apache-2.0. It adds 62 tokens to every session and 2,400 once invoked, about $0.0003 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-30.

Related

Other skills, from other repositories

sl_capture

How to capture new reusable patterns into ktx's semantic layer - when a measure, segment, or join belongs in the catalog and how to write it generically so it stays small and useful over time. Loaded by the post-turn memory-agent only. The research agent does not write to the SL.

Kaelio/ktx · 63 tokens

karpathy-llm-wiki

Use when building or maintaining a personal LLM-powered knowledge base. Triggers: ingesting sources into a wiki, querying wiki knowledge, linting wiki quality, 'add to wiki', 'what do I know about', or any mention of 'LLM wiki' or 'Karpathy wiki'.

Astro-Han/karpathy-llm-wiki · 67 tokens

init

Install or update OwnMem in the current repository. Use when the user asks to set up OwnMem, add local project memory for coding agents, or refresh an existing OwnMem installation after a version bump.

grpcer/ownmem · 43 tokens

memorix-sessions

Use when resuming work, preparing handoff context, binding an HTTP control-plane project, or deciding whether sessionstart is useful.

AVIDS2/memorix · 31 tokens

daily-journal

A passive daily work journal that Claude keeps FOR you so you never have to write it yourself. Append short entries after meaningful work (what was done, what you focused on, artifacts touched) to 01-daily/journal/YYYY-MM-DD.md. Run a guided reflection at night or in the morning. Use when you run /daily-journal, say…

huytieu/COG-second-brain · 107 tokens

doc-drift

Use this skill when the user wants to audit the memory and documents Claude Code loads into context — CLAUDE.md (user global + project + nested), MEMORY.md, @imports, .claude/skills, .claude/agents, .claude/commands, installed plugins — and detect four kinds of issues: outdated claims, mutually contradictory…

AlexZio00/sovereign-skills · 240 tokens