Metadata-Version: 2.4
Name: boring-cli
Version: 0.1.8
Summary: CLI tool for managing Lark Suite tasks
Project-URL: Homepage, https://github.com/anhbinhnguyen/boring-cli
Project-URL: Repository, https://github.com/anhbinhnguyen/boring-cli
Project-URL: Issues, https://github.com/anhbinhnguyen/boring-cli/issues
Author: Boring Agents Team
License-Expression: MIT
License-File: LICENSE
Keywords: cli,lark,productivity,tasks
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
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: Topic :: Utilities
Requires-Python: >=3.9
Requires-Dist: click>=8.0.0
Requires-Dist: httpx>=0.26.0
Requires-Dist: packaging>=21.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: rich>=13.0.0
Provides-Extra: dev
Requires-Dist: black>=23.0.0; extra == 'dev'
Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
Requires-Dist: pytest>=7.0.0; extra == 'dev'
Requires-Dist: ruff>=0.1.0; extra == 'dev'
Description-Content-Type: text/markdown

# Boring CLI

[![PyPI version](https://badge.fury.io/py/boring-cli.svg)](https://badge.fury.io/py/boring-cli)
[![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)


CLI tool for managing bug tasks from the command line, supporting both **Lark Suite** and **Kanban (Outline)** backends.

## Installation

```bash
pip install boring-cli
```

## Quick Start Guide



### Step 1: Run Setup

```bash
boring setup
```

---

## Supported Backends: Lark & Kanban

| Backend | Description | Setup Steps |
|---------|-------------|-------------|
| Lark    | Lark Suite task management | [Lark Setup](#lark-suite-setup) |
| Kanban  | Outline Kanban board integration | [Kanban Setup](#kanban-setup) |

---

## Lark Suite Setup

### Step 2: Configure Settings (Lark)

You'll be prompted for the following settings:

```
Server URL [https://boring.omelet.tech/api]: (press Enter to use default)
Bugs output directory [/tmp/bugs]: /path/to/your/project/bugs
Backend type (lark, kanban) []:  lark
Tasklist GUID (from Lark) []: 9a31701d-fd0e-4417-b00d-e040afe2b234
In-progress Section GUID []: e2c8e412-fbae-41ea-9daa-c2b58efc1b87
Solved Section GUID []: 76a74fd6-79d8-4f74-a358-e78c688ee5ef
```

**Default GUIDs for Bugs list:**
| Setting | GUID |
|---------|------|
| Tasklist GUID | `9a31701d-fd0e-4417-b00d-e040afe2b234` |
| In-progress Section (Inprogress - Bình) | `e2c8e412-fbae-41ea-9daa-c2b58efc1b87` |
| Solved Section | `76a74fd6-79d8-4f74-a358-e78c688ee5ef` |

### Step 3: Login with Lark

1. A browser window will open for Lark login
2. Login with your Lark account
3. After login, you'll see a JSON response like:
  ```json
  {"user":{...},"token":{"access_token":"eyJhbGciOiJ...",...}}
  ```
4. Copy the `access_token` value (the long string starting with `eyJ...`)
5. Paste it in the terminal when prompted

```
Paste your access_token here: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
```
Login successful!
Setup complete!
```


## Kanban Setup

### Step 2: Configure Settings (Kanban)

You'll be prompted for the following settings:

```
Server URL [https://boring.omelet.tech/api]: (press Enter to use default)
Bugs output directory [/tmp/bugs]: /path/to/your/project/bugs
Backend type (lark, kanban) []:  kanban
Kanban API Base URL [https://local.outline.dev:3000]: https://local.outline.dev:3000
Kanban API Key [*****]: <your-kanban-api-key>
Fetching available boards...

Available Boards:
  - Kanban (b55c24c4-cbad-422a-b42e-56a9692a2e10)

Kanban Board ID [b55c24c4-cbad-422a-b42e-56a9692a2e10]: <choose or press Enter>
Fetching board details...

Available Lists (Columns):
  - In Progress (c5286835-b3c9-4a99-9a17-66217a7d0ef9)
  - To Do (c85e17e1-3190-4f5c-b2c0-bbe3a862f575)
  - Done (f03c2aef-c3b3-4789-8b32-b4180cc6d927)

In-progress List ID [c5286835-b3c9-4a99-9a17-66217a7d0ef9]: <choose or press Enter>
Tasklist GUID (from Lark) []: 9a31701d-fd0e-4417-b00d-e040afe2b234
Solved/Done List ID [f03c2aef-c3b3-4789-8b32-b4180cc6d927]: <choose or press Enter>

Kanban configuration updated!
```

**Default GUIDs for Bugs list:**
| Setting | GUID |
|---------|------|
| Tasklist GUID | `9a31701d-fd0e-4417-b00d-e040afe2b234` |
| In-progress Section (Inprogress - Bình) | `e2c8e412-fbae-41ea-9daa-c2b58efc1b87` |
| Solved Section | `76a74fd6-79d8-4f74-a358-e78c688ee5ef` |

### Step 3: Login with Lark (for Kanban)

If your Kanban board is linked to Lark authentication, follow the same login process:

1. A browser window will open for Lark login
2. Login with your Lark account
3. After login, you'll see a JSON response like:
   ```json
   {"user":{...},"token":{"access_token":"eyJhbGciOiJ...",...}}
   ```
4. Copy the `access_token` value (the long string starting with `eyJ...`)
5. Paste it in the terminal when prompted

```
Paste your access_token here: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...

Login successful!
Setup complete!
```


### Step 4: Download Bug Tasks

Download all tasks from your configured section:

```bash
boring download
```

Download to a specific directory:

```bash
boring download --dir /path/to/your/project/bugs
```

Download from a specific section:

```bash
boring download --section e2c8e412-fbae-41ea-9daa-c2b58efc1b87
```

### Step 5: View Sections (Optional)

List all tasklists and sections to find GUIDs:

```bash
boring sections
```

## Commands Reference

| Command | Description |
|---------|-------------|
| `boring setup` | Configure CLI and login to Lark |
| `boring download` | Download tasks to local folder |
| `boring download --section GUID` | Download from specific section |
| `boring download --dir PATH` | Download to specific directory |
| `boring download --labels "Critical,High"` | Filter by labels |
| `boring sections` | List all tasklists and sections |
| `boring solve` | Move tasks to Solved section |
| `boring solve --keep` | Solve but keep local folders |
| `boring status` | Show current configuration |
| `boring --version` | Show version |
| `boring --help` | Show help |

## Configuration File

Configuration is stored in `~/.boring-agents/config.yaml`:

```yaml
server_url: https://boring.omelet.tech/api
jwt_token: eyJhbGc...
bugs_dir: /path/to/your/project/bugs
tasklist_guid: 9a31701d-fd0e-4417-b00d-e040afe2b234
section_guid: e2c8e412-fbae-41ea-9daa-c2b58efc1b87
solved_section_guid: 76a74fd6-79d8-4f74-a358-e78c688ee5ef
```

## Troubleshooting

### Token Expired
If you see authentication errors, run `boring setup` again to get a new token.

### Find Section GUIDs
Run `boring sections` to list all available tasklists and their sections with GUIDs.

## Requirements

- Python 3.9+

## License

MIT
