Metadata-Version: 2.4
Name: tb-taskboard
Version: 0.3.0
Summary: TB — Task Board CLI for managing flat-file YAML tasks synced via git
Author: Maik Peters
License: MIT License
        
        Copyright (c) 2026 Maik Peters
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/IamMaikPeters/tb-cli
Project-URL: Repository, https://github.com/IamMaikPeters/tb-cli
Project-URL: Issues, https://github.com/IamMaikPeters/tb-cli/issues
Keywords: kanban,tasks,cli,yaml,git
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=8.1
Requires-Dist: ruamel.yaml>=0.18
Requires-Dist: rich>=13.7
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == "dev"
Requires-Dist: pytest-mock>=3.12; extra == "dev"
Requires-Dist: coverage>=7.5; extra == "dev"
Requires-Dist: pytest-cov>=5.0; extra == "dev"
Requires-Dist: mypy>=1.10; extra == "dev"
Requires-Dist: ruff>=0.5; extra == "dev"
Dynamic: license-file

# tb-taskboard

`tb` — a Python CLI for managing the [taskboard](https://github.com/IamMaikPeters/taskboard) flat-file Kanban board. Every mutation is a `git mv` + auto-commit + auto-push, so state stays coherent across machines.

The PyPI package is `tb-taskboard`; the installed command is `tb`. (The git repo is still `IamMaikPeters/tb-cli`.)

## Install

```bash
pipx install tb-taskboard

# Join an existing board (any git remote):
tb init --repo git@github.com:you/your-taskboard.git

# …or scaffold a fresh board locally:
tb init --new
```

`tb init --new` creates the column directories, a starter `config.yaml`, the
task-ID counter, and an initial git commit; add a remote afterwards to sync
the board across machines.

For local development against a checkout:

```bash
pipx install -e /path/to/tb-cli
```

## Usage (planned — Wave 2+)

```bash
tb new "wire signed approval link" --project smb-os
tb start TB-0042
tb done TB-0042 --note "shipped in v0.4"
tb list --project smb-os
tb sync
```

The auto-commit format is machine-parseable: `tb: TB-NNNN <from-column> → <to-column>`. Don't change it without updating downstream parsers (e.g. the `tb-mac` git log reader).

## Development

```bash
pip install -e ".[dev]"
ruff check
mypy --strict src
pytest -q
```

## Related repos

- [`IamMaikPeters/taskboard`](https://github.com/IamMaikPeters/taskboard) — task data, single source of truth
- `IamMaikPeters/tb-mac` — macOS native app (Phase 2+)

## License

MIT — see `LICENSE`.
