Metadata-Version: 2.4
Name: noteman
Version: 0.1.0
Summary: A minimal CLI tool to create, view, and manage notes with a built-in Linux shortcuts reference
Project-URL: Repository, https://github.com/Aditya-489/noteman-PIP.git
License: The MIT License (MIT)
        
        Copyright © 2026  Aditya Shettigar
        
        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.
License-File: LICENSE
Requires-Python: >=3.8
Requires-Dist: click>=8.0.0
Description-Content-Type: text/markdown

# noteman

A minimal CLI tool to create, view, and manage notes — right from your terminal. Each directory gets its own isolated notes database, so your work notes stay separate from your personal ones.

---

## Installation

```bash
pip install noteman
```

---

## Usage

### Create a note
```bash
noteman make "title" "content"
```
```bash
noteman make "meeting" "discuss Q3 roadmap with team"
```

### View notes
```bash
# Get by ID
noteman get --i 1

# Get by title
noteman get --t "meeting"

# List all notes
noteman get --a
```

### Remove a note
```bash
# Remove by ID
noteman kick --i 1

# Remove by title
noteman kick --t "meeting"
```

### Linux terminal shortcuts reference
```bash
# Show all shortcuts
noteman cuts

# Filter by category
noteman cuts --cat cursor
noteman cuts --cat function
noteman cuts --cat process
noteman cuts --cat text
noteman cuts --cat history
noteman cuts --cat misc
```

---

## How notes are stored

noteman creates a `notes.db` SQLite file in the **current directory** when you run any command. This means each folder has its own independent set of notes — similar to how `git` works.

```
~/work/        → has its own notes.db
~/personal/    → has its own notes.db
~/project/     → has its own notes.db
```

No cloud, no sync, no accounts. Just a local SQLite file.

---

## License

MIT © 2026