Metadata-Version: 2.4
Name: shortcake
Version: 0.1.0
Summary: A CLI built with typer and uv
License-File: LICENSE
Requires-Python: >=3.14
Requires-Dist: pydantic>=2.0.0
Requires-Dist: rtoml>=0.11.0
Requires-Dist: typer>=0.9.0
Description-Content-Type: text/markdown

# shortcake

A CLI application built with [typer](https://typer.tiangolo.com/) and [uv](https://docs.astral.sh/uv/), supporting only Python 3.14.

## Requirements

- Python 3.14+
- uv package manager

## Installation

Install dependencies using uv:

```bash
uv sync
```

## Usage

Run the CLI using uv:

```bash
# Show help
uv run shortcake --help

# Say hello with default greeting
uv run shortcake hello

# Say hello with custom name
uv run shortcake hello --name "Patrick"

# Show version
uv run shortcake version
```

## Commands

### `hello`
Say hello to someone.

Options:
- `--name TEXT`: Name to greet (default: "World")

### `version`
Show the current version of shortcake.

### `create`
Create a stack with a new branch and commit.

This command helps you create stacked PRs by:
1. Creating a temporary branch
2. Opening your configured editor ($EDITOR) to compose the commit message (emojis are fully supported! 🎉)
3. Creating the commit
4. Generating a branch name from the commit message (lowercase, hyphenated, alphanumeric only)
5. Renaming the temporary branch to the final branch name

**Important:** Stage your changes with `git add` before running this command. Only staged changes will be committed.

**Emoji Support:**
- Commit messages fully support emojis
- Emoji handling in branch names is controlled by the `keep_emoji` configuration setting
- Use `shortcake config set keep_emoji true` to preserve emojis in branch names
- Use `shortcake config set keep_emoji false` to remove emojis from branch names (default)

**Note:** Future enhancement will include gitmoji integration for conventional emoji commits.

Example:
```bash
# Stage your changes first
git add .

# Basic usage (emojis removed from branch name by default)
uv run shortcake create
# Opens your editor to compose commit message
# Type: 🚀 Add rocket feature
# Save and close
# Creates commit: 🚀 Add rocket feature
# Creates branch: add-rocket-feature

# Configure to keep emojis in branch names
uv run shortcake config set keep_emoji true

# Stage changes and create
git add .
uv run shortcake create
# Opens your editor to compose commit message
# Type: 🔥 Add fire feature
# Save and close
# Creates commit: 🔥 Add fire feature
# Creates branch: 🔥-add-fire-feature
```

### `edit` / `modify`
Edit the current stack by amending the commit.

This command helps you modify the current stack by amending the previous commit without opening an editor.

**Important:** Stage your changes with `git add` before running this command. Only staged changes will be amended.

Example:
```bash
# Make some changes to your files
echo "more content" >> file.txt

# Stage your changes first
git add .

# Amend the previous commit
uv run shortcake edit
# Successfully amended the commit (reuses previous commit message)

# Or use the modify alias
uv run shortcake modify
```

### `config`
Manage shortcake configuration settings.

Configuration is stored in `~/.shortcake/config.json` in your home directory.

Available settings:
- `keep_emoji`: Whether to keep emojis in branch names (true/false, default: false)

**Actions:**
- `list` - List all configuration settings
- `get <key>` - Get a specific configuration value
- `set <key> <value>` - Set a configuration value

Example:
```bash
# List all configuration
uv run shortcake config list

# Get a specific setting
uv run shortcake config get keep_emoji

# Set keep_emoji to true
uv run shortcake config set keep_emoji true

# Set keep_emoji to false
uv run shortcake config set keep_emoji false
```

## Development

This project uses uv for dependency management and requires Python 3.14 or higher.
