一键导入
conversation-auditor
Introspects conversation history to suggest new tools, skills, MCP servers, or identify context window hogs and optimization opportunities.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Introspects conversation history to suggest new tools, skills, MCP servers, or identify context window hogs and optimization opportunities.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | conversation-auditor |
| description | Introspects conversation history to suggest new tools, skills, MCP servers, or identify context window hogs and optimization opportunities. |
This skill audits previous conversation transcripts to help the user identify ways to tune their agentic coding experience. It looks for commonly performed actions, repetitive low-level commands, tool sequences that can be aggregated, and places where the context window is being heavily utilized.
Trigger this skill when the user asks to "audit my conversation", "suggest new skills", "find MCP server opportunities", or "introspect conversation history".
Determine the Audit Target: If the user doesn't specify an exact scope (e.g., they just type /conversation-auditor), you MUST use the ask_question tool to present a multiple-choice question asking them what they want to audit. Provide options like:
Run the Audit Script: Execute the provided Dart script:
# Assuming the agent is running in a standard setup, you can locate the script relative to this skill file.
# For a specific conversation:
dart run <path_to_this_skill_directory>/scripts/audit_conversation.dart <path_to_app_data_dir> <conversation_id>
# For the last N conversations (aggregated):
dart run <path_to_this_skill_directory>/scripts/audit_conversation.dart <path_to_app_data_dir> --last 3
Analyze the Output: Read the output of the script. The script will highlight:
Generate Recommendations:
Use your own intelligence (as an LLM) to interpret the script's output and present a structured markdown report to the user in an Artifact (e.g. audit_report.md).
Use this analytical framework to categorize your findings:
.agents/skills/) or add a Knowledge Item (KI) so the agent knows the exact build/test commands.ps aux, lsof, git log, find) across many different workspaces? Recommendation: Suggest a Global Skill (~/.gemini/config/skills/) or a dedicated MCP Server (like a Git MCP or System Monitor MCP).Deliver Findings: Provide the report to the user, highlighting the highest-value optimization opportunities based on the framework above.
Ponder architectural designs, explore potential solutions, weigh tradeoffs, or analyze the impact of proposed codebase changes without making code changes. Always outputs the analysis to a Markdown artifact.
Autonomous pull request review loop that pushes code, polls for AI/bot review comments (e.g., Gemini Code Assist), surgically remediates feedback, commits, pushes, comments `/gemini review`, and loops until zero feedback remains. Requires the `github-pr-triage` skill.
Analyze the current agent conversation transcript to estimate the number of input, output, and cumulative tokens consumed, including caching estimates.
Synthesizes conversation history and active tasks into a visual hierarchy map (`sidequest.md`) to prevent context drift and cognitive overload across long sessions. Supports multiple sequential and concurrent main quests, sub-quests, and side-quests. Use when the user invokes `/sidequest`, asks where we are, what we were doing, or what's on our stack, or when the conversation branches across multiple topics, blockers, or digressions. Don't use for simple one-off questions that don't involve multi-step work or task hierarchy management.
Intake multi-step tasks by clarifying ambiguities, summarizing understanding, and confirming readiness via ask_question before executing code changes.
Use gob-curl and Buildbucket tools to inspect the status, tryjobs, and CI results of a Gerrit CL.