Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Gemini History Analyzer

Extracts and analyzes Google Takeout exports of your Gemini chat history, producing a topic breakdown, key insights, and PII warnings.

Data & AnalyticsIntermediate1,323212AI score 9/10Last updated: Aug 8, 2026

What it does

  • Extracts the Google Takeout 'Gemini Apps' ZIP with unar, avoiding the macOS unzip bug that mangles Unicode/Chinese filenames.
  • Builds a file inventory by type and size, then samples 3-5 transcripts to decide whether the data is meeting transcripts or prompt-response logs.
  • Classifies each conversation by topic (dev, AI/LLM, infra, business, finance, legal...) and pulls out discussion points, decisions, and verbatim quotes.
  • Runs domain keyword searches with AND/OR logic, then mandates ±10 lines of context verification to kill the huge false-positive rate grep alone produces.
  • Flags PII (resumes, background checks, contact lists) by risk level without copying the content into the report.
  • Emits a 7-section analysis report and can optionally write project memory files.

Who it's for

  • Anyone wanting a readable summary of years of Gemini chat history
  • Team leads and PMs who upload meeting transcripts into Gemini
  • People curious about their own AI usage patterns and interest domains
  • Privacy-minded users auditing an export for sensitive data

Examples

  1. "Analyze takeout-20250101.zip" → report with file stats, conversation type, and a topic distribution table.
  2. "Find any finance or investment discussions in my Gemini history" → batched keyword grep plus context verification that separates real hits from false positives.
  3. "Turn this analysis into a user-profile memory file" → writes user-profile.md and updates the MEMORY.md index.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/daymade/claude-code-skills/HEAD/gemini-history-analyzer/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the gemini-history-analyzer folder from the GitHub repo daymade/claude-code-skills into my ~/.claude/skills/gemini-history-analyzer/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/daymade/claude-code-skills.git && mkdir -p ~/.claude/skills && cp -r claude-code-skills/gemini-history-analyzer ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Create the skills folder: mkdir -p ~/.claude/skills
  3. Clone the repo: git clone https://github.com/daymade/claude-code-skills.git
  4. Copy the skill: cp -r claude-code-skills/gemini-history-analyzer ~/.claude/skills/
  5. On macOS, install the extractor: brew install unar
  6. Request your 'Gemini Apps' data from Google Takeout and download the ZIP.
  7. Restart Claude Code and ask it to "analyze this takeout zip", giving the path to your ZIP file.