Metadata-Version: 2.4
Name: devlog-cli-rig
Version: 0.1.1
Summary: A minimal CLI tool for developers to log their daily work
Author-email: Rigved Harmalkar <rigved.harmalkar01@gmail.com>
License: MIT License
        
        Copyright (c) 2026 Rigved
        
        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/rigvedharmalkar/devlog
Project-URL: Issues, https://github.com/rigvedharmalkar/devlog/issues
Keywords: cli,developer-tools,productivity,logging
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Environment :: Console
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=8.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: build>=1.0; extra == "dev"
Requires-Dist: twine>=5.0; extra == "dev"
Dynamic: license-file

# devlog 📝

[![CI](https://github.com/YOUR_USERNAME/devlog/actions/workflows/ci.yml/badge.svg)](https://github.com/YOUR_USERNAME/devlog/actions)
[![PyPI version](https://badge.fury.io/py/devlog-cli-rig.svg)](https://badge.fury.io/py/devlog-cli-rig)
[![Python](https://img.shields.io/pypi/pyversions/devlog-cli-rig)](https://pypi.org/project/devlog-cli-rig/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

> Log your daily work from the terminal. Stay in your flow.

Developers are terrible at tracking what they worked on. End of sprint,
performance review, standup — you're always trying to remember.

`devlog` lives in your terminal, where you already are. No browser.
No login. No context switching.

---

## Demo

```bash
$ devlog add "Fixed the race condition in auth service"
✅ Logged: Fixed the race condition in auth service

$ devlog add "Reviewed PR for payment module"
✅ Logged: Reviewed PR for payment module

$ devlog today
📅 Today — May 20, 2026

  09:32  Fixed the race condition in auth service
  14:15  Reviewed PR for payment module

$ devlog export
📝 Exported to devlog-2026-05-20.md
```

---

## Installation

```bash
pip install devlog-cli-rig
```

Requires Python 3.10+

---

## Commands

| Command | Description |
|---|---|
| `devlog add "message"` | Add a new log entry |
| `devlog today` | View all entries logged today |
| `devlog export` | Export today's logs as a markdown file |

---

## Where is my data stored?

All entries are stored locally at `~/.devlog/logs.json`.
Nothing leaves your machine.

---

## Contributing

Contributions are welcome. Please read
[CONTRIBUTING.md](CONTRIBUTING.md) before opening a PR.

---

## License

MIT © Rigved
