Mirror Google Drive folders to local directories with format conversion
Project description
Catoptromancy — divination by mirrors.
SOTA coding agents like Claude Code and Codex turn out to be very good everything agents. Indeed, Claude Cowork, Anthropic's all-purpose agent, is a close cousin of Claude Code and is built on the same stack (the anthropic agent SDK). And so agents (with or without coding) work best when situated in an actual folder of files. They like reading text files, searching Excel, and exploring folder structures. They have the best tools for exploring and understanding knowledge and context when it's organized in a file system.
Google Drive Folders, while extremely useful for collaboration, are not actually filesystems. Behind the scenes, you can't download a Google Doc into a real file. Even the Google Drive Mac Apps just syncs links to files, not the actual files themselves. This makes it surprisingly hard to point an agent at a Google Drive folder and get the results you expect.
To solve this problem, Catoptromancy mirrors Google Drive folders into a local workspace where AI agents can actually work and into formats they can actually use. cato currently converts Google Docs to Markdown, Sheets to Excel, and Slides to PowerPoint.
This local copy also acts as a sandbox. Agents can read, edit, and create freely without touching the original data. Nothing syncs back to Drive. This version supports pull-only mirroring, so remote changes come down locally, but there is no push command yet.
Installation
Install As A Tool
Install the latest version directly from Git:
uv tool install git+ssh://git@github.com/terra-hq/catoptromancy.git
Install Into The Current Environment
Install the package into the current virtualenv:
uv pip install git+ssh://git@github.com/terra-hq/catoptromancy.git
Updating
If installed as a tool:
uv tool upgrade catoptromancy
If installed into a virtualenv:
uv pip install --upgrade git+ssh://git@github.com/terra-hq/catoptromancy.git
Development Setup
Clone the repo, then install the project and dev dependencies:
git clone git@github.com:terra-hq/catoptromancy.git
cd catoptromancy
uv sync --extra dev
That creates or updates .venv/ with the package, pytest, ruff, and the other development dependencies.
Run the test suite with:
.venv/bin/pytest -q
Run the CLI from the project environment with:
.venv/bin/cato --help
Authentication
OAuth credentials are bundled in the package — no Google Cloud setup required.
Running cato init opens a browser for Google account authorization. Your
refresh token is cached locally at ~/.config/catoptromancy/token.json.
To use your own OAuth client instead, pass --credentials /path/to/credentials.json to cato init.
For service-account auth, pass --service-account /path/to/service-account.json to cato init instead of using OAuth.
Usage
Initialize A Workspace
cato init opens a browser for consent:
cato init <FOLDER_ID_OR_URL>
The folder reference can be either:
- A raw Google Drive folder ID
- A full Google Drive folder URL
The folder ID is the last part of a Drive folder URL:
https://drive.google.com/drive/folders/<THIS_PART>
Pull Files
cato pull
Force A Full Re-Download
cato pull --force
Check Status
cato status
Show Command Help
cato --help
Packaging
Catoptromancy is packaged as a standard Python project. Build configuration lives in pyproject.toml and uses hatchling.
Build Distributable Artifacts
uv build
This creates:
dist/*.whldist/*.tar.gz
Verify A Built Wheel Locally
uv pip install dist/*.whl
Publish A Release
- Bump the version in
pyproject.toml. - Run
uv build. - Publish the contents of
dist/to your package index.
Console Script
cato
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file catoptromancy-0.2.0.tar.gz.
File metadata
- Download URL: catoptromancy-0.2.0.tar.gz
- Upload date:
- Size: 82.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d76e0cf8a1b17626cd6949fbc2192fc53b2725e82cce9b89e8ea337d69b8573
|
|
| MD5 |
24cfee593935ff541618e9297df92ce4
|
|
| BLAKE2b-256 |
54ae5a96f8df1eeb50f81ef6a78cafcd87c081fc5f888b8db0ef2a10c48f012c
|
File details
Details for the file catoptromancy-0.2.0-py3-none-any.whl.
File metadata
- Download URL: catoptromancy-0.2.0-py3-none-any.whl
- Upload date:
- Size: 25.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b38e21b558dcc43b9e58dcc3618ff67fa49b45661f30c1a3159103238b5ba7e
|
|
| MD5 |
29e6a1b61b311aa82333e2600dc02cd1
|
|
| BLAKE2b-256 |
6dc7bdd680b5c291a7209d504c250f0840a75cc949893fb7596254d2ebac826c
|