一键导入
gptme-wrapped
Analyze your gptme conversation history for insights like token usage, costs, model preferences, and usage patterns - inspired by Spotify Wrapped.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Analyze your gptme conversation history for insights like token usage, costs, model preferences, and usage patterns - inspired by Spotify Wrapped.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Interactive onboarding workflow that interviews users to understand their coding goals and generates PR-ready implementation plans. Use when starting a new development task to ensure clear requirements and structured execution.
Implement security best practices for Gamma integration. Use when securing API keys, implementing access controls, or auditing Gamma security configuration. Trigger with phrases like "gamma security", "gamma API key security", "gamma secure", "gamma credentials", "gamma access control".
Write effective technical documentation including READMEs, API docs, architecture decisions, and inline code documentation.
Build and manage CI/CD pipelines with Azure DevOps. Configure builds, releases, and automate software delivery workflows.
Develop, deploy, and manage Azure Functions for serverless computing. Supports HTTP triggers, timers, queues, and event-driven architectures.
Manage Azure resources effectively using CLI, Portal, Bicep, and ARM templates. Use for provisioning, organizing, and maintaining cloud infrastructure.
| name | gptme-wrapped |
| description | Analyze your gptme conversation history for insights like token usage, costs, model preferences, and usage patterns - inspired by Spotify Wrapped. |
| version | 1.0.0 |
| category | analytics |
| allowed-tools | Read, Bash |
Description: Analyze your gptme conversation history for insights like token usage, costs, model preferences, and usage patterns - inspired by Spotify Wrapped.
"gptme Wrapped" provides year-end (or any period) analytics for your gptme usage, similar to Spotify's annual Wrapped feature. It analyzes conversation logs stored locally to provide insights about:
gptme stores conversations in ~/.local/share/gptme/logs/ with this structure:
~/.local/share/gptme/logs/
├── 2025-12-25-running-red-cat/
│ ├── conversation.jsonl # Messages with metadata
│ ├── config.toml # Conversation config (model, tools)
│ ├── branches/ # Conversation branches
│ └── workspace -> /path # Symlink to workspace
└── ...
Each line is a JSON object representing a message:
{
"role": "assistant",
"content": "...",
"timestamp": "2025-12-25T22:47:40.922775",
"metadata": {
"model": "anthropic/claude-sonnet-4-20250514",
"input_tokens": 33970,
"output_tokens": 50,
"cache_read_tokens": 30000,
"cache_creation_tokens": 0,
"cost": 0.0123
}
}
Key metadata fields:
model: The model used for generationinput_tokens: Tokens sent to the modeloutput_tokens: Tokens generated by the modelcache_read_tokens: Tokens read from prompt cache (saves cost)cache_creation_tokens: Tokens written to prompt cachecost: Cost in USD (when available)Note: Token metadata is only populated for assistant messages when the LLM API returns usage data. Historical conversations before this feature may not have metadata.
[chat]
name = "Conversation Name"
model = "anthropic/claude-sonnet-4-20250514"
tools = ["shell", "ipython", "save", "patch", ...]
workspace = "~/Programming/project"
See plugins/wrapped/ for the analytics plugin that provides:
wrapped_stats(year): Get comprehensive year statswrapped_report(year): Generate formatted ASCII reportwrapped_export(year, format): Export to HTML/JSON