Metadata-Version: 2.4
Name: antigravity-history
Version: 0.2.5
Summary: Export and recover your Google Antigravity conversations.
Author-email: Neo <neo1027144@gmail.com>
License: Apache-2.0
Project-URL: Homepage, https://github.com/neo1027144-creator/antigravity-history
Project-URL: Repository, https://github.com/neo1027144-creator/antigravity-history
Project-URL: Issues, https://github.com/neo1027144-creator/antigravity-history/issues
Project-URL: Documentation, https://github.com/neo1027144-creator/antigravity-history#readme
Keywords: antigravity,antigravity-export,antigravity-conversation-extractor,export-antigravity-conversations,antigravity-chat-history,backup-antigravity,save-antigravity-chat,antigravity-thinking-export,antigravity-recovery,antigravity-obsidian,antigravity-backup-tool,ai-conversation-export,chat-export,conversation-history,ai-thinking,code-assistant-export
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Communications :: Chat
Classifier: Topic :: System :: Archiving :: Backup
Classifier: Topic :: Text Processing :: Markup :: Markdown
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Classifier: Environment :: Console
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.28.0
Requires-Dist: rich>=13.0.0
Requires-Dist: typer>=0.9.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"
Dynamic: license-file

# 🔮 antigravity-history

[English](README.md) | [中文](README_zh.md)

[![PyPI Version](https://img.shields.io/pypi/v/antigravity-history)](https://pypi.org/project/antigravity-history/)
[![Python](https://img.shields.io/pypi/pyversions/antigravity-history)](https://pypi.org/project/antigravity-history/)
[![License](https://img.shields.io/github/license/neo1027144-creator/antigravity-history)](LICENSE)
[![Platform](https://img.shields.io/badge/platform-Windows-blue)]()

> **Export and recover your Antigravity AI conversations — with full fidelity.**

Captures AI thinking chains, code diffs, command outputs, and per-message timestamps from your Antigravity sessions. Plus, recover conversations lost after crashes or updates.

---

## ✨ Key Features

| Feature | Description |
|---------|-------------|
| 🧠 **AI Thinking Process** | Export the hidden reasoning chains behind every AI response |
| 📝 **Code Diffs** | Capture every code edit with full diff context |
| 💻 **Command Outputs** | Preserve terminal outputs with exit codes and working directories |
| ⏰ **Per-Message Timestamps** | Precise timing for every message in the conversation |
| 🔄 **Conversation Recovery** | Scan `.pb` files on disk to recover conversations lost after crashes |
| 📁 **Auto-.pb Scanning** | Automatically finds and exports unindexed conversations from disk |
| 🖥️ **Zero-Config Discovery** | Automatically finds all running Antigravity instances |
| 🔐 **100% Local & Read-Only** | No internet, no tracking, no data modification |

---

## 🚀 Quick Start

```bash
pip install antigravity-history==0.2.5 --index-url https://pypi.org/simple --no-cache-dir
```

```bash
aghistory export          # ← start here!
```

---

## 📋 Commands

| Command | Description |
|---------|-------------|
| `aghistory export` | Export conversations to Markdown / JSON |
| `aghistory list` | List all indexed conversations |
| `aghistory recover` | Recover conversations lost after crashes/updates |
| `aghistory info` | Show LanguageServer connection status |

### Export Detail Level (progressive — higher level includes all below)

```bash
aghistory export                     # Basic: user messages + AI responses + tool summaries
aghistory export --thinking          # ↑ + AI thinking chains, timestamps, exit codes, cwd
aghistory export --full              # ↑ + full code diffs, command outputs, search results, model name
```

### Export Scope (filters, independent of each other)

```bash
aghistory export                     # All conversations
aghistory export --today             # Only today's conversations
aghistory export --id abc123         # Specific conversation by cascade ID (repeatable)
```

### Output Format & Path

```bash
aghistory export                     # Default: all formats (md + json)
aghistory export -f md               # Markdown only
aghistory export -f json             # JSON only
aghistory export -o ./my_folder      # Custom output directory
```

### Common Combinations

```bash
# Export today's conversations with AI thinking, as Markdown
aghistory export --today --thinking -f md

# Export a specific conversation with full detail, as JSON
aghistory export --id abc123 --full -f json

# Export everything to a custom folder
aghistory export -o ./my_backup
```

---

## 🔒 Privacy & Security

- **100% Local** — All data stays on your machine. No internet requests.
- **Read-Only** — Never modifies, deletes, or writes to Antigravity's data.
- **No Tracking** — No analytics, telemetry, or phone-home.
- **Open Source** — Audit every line of code yourself.

---

## 🖥️ Platform Support

| Platform | Status | Discovery Method |
|----------|--------|-----------------|
| **Windows** | ✅ Supported | CIM/WMI + netstat |
| **macOS** | ⚠️ Untested (code exists) | pgrep + lsof |
| **Linux** | 🔜 Planned | TBD |

---

## ❓ FAQ

<details>
<summary><b>Does Antigravity need to be running?</b></summary>

Yes. The tool communicates with Antigravity's local LanguageServer API, which is only available while Antigravity is open with at least one workspace.
</details>

<details>
<summary><b>Will this get my account banned?</b></summary>

No. All communication is with `localhost` — no requests are sent to any external server. The tool only reads your own conversation data using the same API that Antigravity's own UI uses.
</details>

<details>
<summary><b>What are the three export levels?</b></summary>

- **Default**: User messages, AI responses, tool call summaries
- **`--thinking`**: + AI reasoning process, timestamps, exit codes
- **`--full`**: + code diffs, command outputs, search summaries, model info
</details>

<details>
<summary><b>What does "recover" do?</b></summary>

Antigravity stores conversations as `.pb` files on disk, but sometimes loses track of them in its index (e.g., after crashes or updates). The `recover` command scans these files and reloads them through the API.
</details>

<details>
<summary><b>Can I use this as a Python library?</b></summary>

Yes! You can import and use it directly in your Python code:

```python
from antigravity_history.discovery import discover_language_servers, find_all_endpoints
from antigravity_history.api import get_all_trajectories_merged, get_trajectory_steps
from antigravity_history.parser import parse_steps, FieldLevel
from antigravity_history.formatters import format_markdown, format_json
```
</details>

<details>
<summary><b>Does it support Cursor / Windsurf / other IDEs?</b></summary>

Not yet. Currently Antigravity-only. Multi-IDE support is on the roadmap.
</details>

---

## 📦 Development

```bash
git clone https://github.com/neo1027144-creator/antigravity-history
cd antigravity-history
pip install -e ".[dev]"

# Lint
ruff check src/
```

---

## 📄 License

[Apache 2.0](LICENSE) — Use freely, contribute back, keep the attribution.

---

## 🌟 Star History

If this tool saved your conversations, consider giving it a ⭐!

---

<sub>**Keywords**: antigravity conversation export, antigravity chat history, export antigravity conversations, antigravity backup tool, save antigravity chat, antigravity thinking export, antigravity conversation recovery, antigravity export markdown, antigravity session backup</sub>
