Metadata-Version: 2.3
Name: clean-workspace
Version: 0.9.1
Summary: Collect all browser URLs, output to terminal, and archive to todoist. Useful for cleaning up your workspace at the end of the day, without loosing important urls.
Keywords: todoist,browser,productivity
Author: Mike Bianco
Author-email: Mike Bianco <mike@mikebian.co>
License: MIT
Requires-Dist: pyobjc-framework-scriptingbridge>=10.3.1
Requires-Dist: todoist-api-python>=4.0.0
Requires-Dist: chrome-bookmarks>=2020.10.25
Requires-Dist: click>=8.5.0
Requires-Dist: backoff>=2.2.1
Requires-Dist: pydantic-ai-slim[google] ; extra == 'ai'
Requires-Python: >=3.11
Project-URL: Repository, https://github.com/iloveitaly/clean-browser
Provides-Extra: ai
Description-Content-Type: text/markdown

[![Release Notes](https://img.shields.io/github/release/iloveitaly/clean-browser)](https://github.com/iloveitaly/clean-browser/releases)
[![Downloads](https://static.pepy.tech/badge/clean-workspace/month)](https://pepy.tech/project/clean-workspace)
![GitHub CI Status](https://github.com/iloveitaly/clean-browser/actions/workflows/build_and_publish.yml/badge.svg)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

# Clean Workspace: Archive Web Browser Tabs

I love experimenting with productivity. One glitch I've found in my mind is I can easily
get distracted by open tabs on my browser, especially if I'm trying to write or read something which I want to give
my full attention to.

I've found that if I close all my tabs (similar idea to [shrinking context size](http://mikebian.co/improve-motivation-and-focus-with-small-contexts/)), I can focus better on the task at hand. However, I don't
want to lose any interesting tabs so I don't easily quit my browsers. It's just the little extra of cognitive energy required to add more focus that doesn't get spent.

This is utility to fix this issue. It closes all your tabs (in both Safari & Chrome), sends them to [todoist](https://mikebian.co/todoist)
with a specified project and optionally a label, and outputs the list to the terminal (mostly for debugging). Only unique URLs are sent to Todoist, if you have a previous "archive task" with a URL archived it will not be archived again.

This utility has helped my mind and made it easy for me to find interesting things I've run into in the past. I've tied this into a 'first wake' [hyper focus](https://mikebian.co/hyper-focus) script to automatically run each morning when I first open my computer.

## Installation

```bash
uv tool install clean-workspace
# Install with optional AI summarization support
uv tool install "clean-workspace[ai]"
```

- `TODOIST_API_KEY` has to exist in your shell environment for the tool to run.
  I recommend using [direnv](https://direnv.net/) to do this. Add your todoist token to `.envrc` and `direnv allow .`
- Customize the url and domain blacklist

### AI Summarization (Optional)

If installed with the `[ai]` extra, the tool can automatically generate a 3-7 word summary of your links if `--tab-description` is not provided.

Configuration is via environment variables:
- `CLEAN_WORKSPACE_AI_KEY`: Your AI provider API key (e.g., Gemini, OpenAI, Anthropic).
- `CLEAN_WORKSPACE_MODEL`: The model to use (default: `gemini:gemini-3-flash-preview`). Supports any provider supported by [pydantic-ai](https://ai.pydantic.dev/models/overview/).


## Usage

```shell
clean-workspace --help
Usage: clean-workspace [OPTIONS]

Options:
  --blacklist-domains PATH
  --blacklist-urls PATH
  --tab-description TEXT    Description for tab
  --todoist-label TEXT      label in todoist for all created tasks  [default:
                            web-archive]
  --todoist-project TEXT    project in todoist for all created tasks
                            [default: Learning]
  --help                    Show this message and exit.
```

## Development

```shell
uv sync --all-extras
uv run clean-workspace
```

### Regex Entries

You can use regex matches in both the url and domain blacklist files. For example, if you want to blacklist all Zoom domains, you can use the following:

```shell
echo "/.*zoom\.us/" >> ~/.config/clean-workspace/blacklist-domains.txt
```

A regex entry starts & ends with `/`, like `sed`.

### Collecting Tab Description Via AppleScript

Here's a quick script you can use to collect a description of what you were working on via applescript:

```shell
dialogResult=$(
osascript <<EOT
set dialogResult to display dialog "What were you working on yesterday?" buttons {"OK"} default button "OK" giving up after 300 default answer ""
return text returned of dialogResult
EOT
)
```

Here's a [full example](https://github.com/iloveitaly/dotfiles/blob/648010ec9a9c8f1fb0aa70be138994689f3bbfb3/.config/focus/initial_wake.sh#L42-L53) of using this with [hyper-focus](https://www.raycast.com/iloveitaly/hyper-focus).

## Debugging

You can use `ipython` to interactively play with the todoist API:

```shell
from clean_workspace import _todoist_api_key
api = TodoistAPI(_todoist_api_key())
```

## Inspiration

- <https://gist.github.com/aleks-mariusz/cc27b21f2c5b91fbd285>
- <https://github.com/tominsam/shelf-python/blob/f357d9b147fa651034b71501edabf65f59d5befa/extractors/ComAppleSafari.py#L11>


---

*This project was created from [iloveitaly/python-package-template](https://github.com/iloveitaly/python-package-template)*