Metadata-Version: 2.4
Name: micoo
Version: 0.4.0
Summary: micoo is a command-line tool for easily accessing mise cookbooks
Project-URL: changelog, https://github.com/hasansezertasan/micoo/blob/main/CHANGELOG.md
Project-URL: documentation, https://github.com/hasansezertasan/micoo#readme
Project-URL: homepage, https://github.com/hasansezertasan/micoo
Project-URL: issues, https://github.com/hasansezertasan/micoo/issues
Project-URL: releasenotes, https://github.com/hasansezertasan/micoo/releases
Project-URL: source, https://github.com/hasansezertasan/micoo.git
Author-email: Hasan Sezer Taşan <hasansezertasan@gmail.com>
Maintainer-email: hasansezertasan <hasansezertasan@gmail.com>
License-Expression: MIT
License-File: LICENSE
Keywords: boilerplate,cli,command-line,cookbook,mise,scaffold,template
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
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: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Terminals
Classifier: Typing :: Typed
Requires-Python: >=3.8
Requires-Dist: gitpython>=3.0.0
Requires-Dist: platformdirs>=4.0.0
Requires-Dist: pydantic-settings>=2.8.1
Requires-Dist: typer>=0.16.0
Description-Content-Type: text/markdown

# micoo: quick access to `mise-cookbooks`

<!-- TODO: Make it work, make it right, make it fast. -->

[![CI](https://github.com/hasansezertasan/micoo/actions/workflows/ci.yml/badge.svg)](https://github.com/hasansezertasan/micoo/actions/workflows/ci.yml)
[![PyPI - Version](https://img.shields.io/pypi/v/micoo.svg)](https://pypi.org/project/micoo)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/micoo.svg)](https://pypi.org/project/micoo)
[![License - MIT](https://img.shields.io/github/license/hasansezertasan/micoo.svg)](https://opensource.org/licenses/MIT)
[![Latest Commit](https://img.shields.io/github/last-commit/hasansezertasan/micoo)][micoo]

<!-- [![Coverage](https://codecov.io/gh/hasansezertasan/micoo/graph/badge.svg?token=XXXXXXXXXXX)](https://codecov.io/gh/hasansezertasan/micoo) -->

<!-- [![Coverage](https://img.shields.io/codecov/c/github/hasansezertasan/micoo)](https://codecov.io/gh/hasansezertasan/micoo) -->

<!-- [![Coverage](https://codecov.io/gh/hasansezertasan/micoo/branch/main/graph/badge.svg)](https://codecov.io/gh/hasansezertasan/micoo) -->

[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)
[![linting - Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![GitHub Tag](https://img.shields.io/github/tag/hasansezertasan/micoo?include_prereleases=&sort=semver&color=black)](https://github.com/hasansezertasan/micoo/releases/)

[![Downloads](https://pepy.tech/badge/micoo)](https://pepy.tech/project/micoo)
[![Downloads/Month](https://pepy.tech/badge/micoo/month)](https://pepy.tech/project/micoo)
[![Downloads/Week](https://pepy.tech/badge/micoo/week)](https://pepy.tech/project/micoo)

`micoo` (short for **mise cookbooks**) is a :zap: command-line tool that makes it easy to access [mise] configuration files from [mise-cookbooks] :books:.

## Typical Usage :rocket:

```sh
# List available cookbooks
micoo list

# Create a new mise.toml with a cookbook
micoo dump python > mise.toml
```

## Features :sparkles:

- 🚀 Quick access to [mise-cookbooks]
- 📚 Easy cookbook listing and content viewing
- 💾 Simple dumping of cookbooks to mise.toml
- 🔄 Repository cloning and updating
- 🌐 Browser integration for quick repository access
- 🎯 Interactive mode for cookbook selection and generation

## Installation :package:

There are several ways to install `micoo`! :rocket: I recommend using (obviously) [mise] :hammer_and_wrench:. Here's how to do it:

```sh
mise install pipx:micoo
```

Alternatively, you can install it using `uv tool install micoo` :jigsaw:

```sh
uv tool install micoo
```

## Command Reference :book:

Here is the output of the `micoo --help` command:

```sh
 Usage: micoo [OPTIONS] COMMAND [ARGS]...

╭─ Options ──────────────────────────────────────────────────────────────────────────────────────────╮
│ --install-completion          Install completion for the current shell.                            │
│ --show-completion             Show completion for the current shell, to copy it or customize the   │
│                               installation.                                                        │
│ --help                        Show this message and exit.                                          │
╰────────────────────────────────────────────────────────────────────────────────────────────────────╯
╭─ Commands ─────────────────────────────────────────────────────────────────────────────────────────╮
│ update        Clone or fetch the `mise-cookbooks` repository.                                      │
│ list          List the available mise cookbooks.                                                   │
│ search        Search for a mise cookbook.                                                          │
│ dump          Dump a mise cookbook.                                                                │
│ root          Show the path to the micoo boilerplates directory.                                   │
│ log           Show the path to the micoo log file.                                                 │
│ remote        Show the URL to the remote repository.                                               │
│ version       Show the current version number of micoo.                                            │
│ info          Display information about the micoo application.                                     │
│ interactive   Start interactive mode for cookbook selection and generation.                        │
╰────────────────────────────────────────────────────────────────────────────────────────────────────╯
```

## Usage :hammer_and_wrench:

You can use the `micoo` command to interact with [mise-cookbooks]. Here are some common commands:

List all available cookbooks:

```sh
micoo list
```

This will output:

```sh
Available cookbooks:
- terraform
- python
- cpp
- pnpm
- node
- ruby-on-rails
- opentofu
```

Dump a specific cookbook to a `mise.toml` file:

```sh
micoo dump python > mise.toml
```

Open the [mise-cookbooks] repository in the default application:

```sh
open $(micoo remote)
```

Open the cloned repository in the default application:

```sh
open $(micoo root)
```

Open the log file in the default application:

```sh
open $(micoo log)
```

Show the current version of `micoo`:

```sh
micoo version
```

Show the information about the `micoo` application:

```sh
micoo info
```

Start interactive mode for cookbook selection and generation:

```sh
micoo interactive
```

The interactive mode supports multiple output locations:

- `mise.toml` - Standard configuration file
- `mise.local.toml` - Local config (not committed to source control)
- `mise/config.toml` - Configuration in mise subdirectory
- `.config/mise.toml` - Configuration in .config directory
- `.config/mise/config.toml` - Configuration in .config/mise subdirectory
- `.config/mise/conf.d/custom.toml` - Configuration in conf.d directory (alphabetical loading)

## Support :heart:

If you have any questions or need help, feel free to open an issue on the [GitHub repository][micoo].

## Author :person_with_crown:

This project is maintained by [Hasan Sezer Taşan][author], It's me :wave:

## Contributing :heart:

Any contributions are welcome! Please follow the [Contributing Guidelines](https://github.com/hasansezertasan/micoo/tree/main/./CONTRIBUTING.md) to contribute to this project.


<!-- xc-heading -->
## Development :toolbox:

Clone the repository and cd into the project directory:

```sh
git clone https://github.com/hasansezertasan/micoo
cd micoo
```

The commands below can also be executed using the [xc task runner](https://xcfile.dev/), which combines the usage instructions with the actual commands. Simply run `xc`, it will pop up an interactive menu with all available tasks.

### `install`

Install the dependencies:

```sh
uv sync
```

### `style`

Run the style checks:

```sh
uv run --locked tox run -e style
```

### `ci`

Run the CI pipeline:

```sh
uv run --locked tox run
```

### `pypi:readme`

Build the README.md file:

```sh
uv run hatch-fancy-pypi-readme -o PyPI.md
open PyPI.md
```

## Related Projects :chains:

- [mise] - The official mise project
- [mise-cookbooks] - Collection of mise cookbooks

## License :scroll:

This project is licensed under the [MIT License](https://opensource.org/license/MIT).

<!-- Refs -->
[mise-cookbooks]: https://github.com/hasansezertasan/mise-cookbooks
[mise]: https://github.com/jdx/mise
[author]: https://github.com/hasansezertasan
[micoo]: https://github.com/hasansezertasan/micoo

## Changelog :memo:

## [Unreleased]

## [0.4.0] - 2025-08-03

## :rocket: Features

- chore(release): migrate to release-drafter from release-please by [@hasansezertasan](https://github.com/hasansezertasan) in ([#37](https://github.com/hasansezertasan/micoo/issues/37))
- chore(ci): remove git-cliff configuration and update CI/CD workflows by [@hasansezertasan](https://github.com/hasansezertasan) in ([#36](https://github.com/hasansezertasan/micoo/issues/36))
- feat(dependencies): add hatch-fancy-pypi-readme and poethepoet to development dependencies by [@hasansezertasan](https://github.com/hasansezertasan) in ([#33](https://github.com/hasansezertasan/micoo/issues/33))
- feat(tests): add test for `log` command to verify successful execution and output by [@hasansezertasan](https://github.com/hasansezertasan) in ([#34](https://github.com/hasansezertasan/micoo/issues/34))
- feat(command): implemented a new command to display the path to the micoo log file by [@hasansezertasan](https://github.com/hasansezertasan) in ([#31](https://github.com/hasansezertasan/micoo/issues/31))
- feat(logging): enhance logging setup and improve command logging in main application by [@hasansezertasan](https://github.com/hasansezertasan) in ([#30](https://github.com/hasansezertasan/micoo/issues/30))
- ci(check-pr-title.yml): add pr title validation action by [@hasansezertasan](https://github.com/hasansezertasan) in ([#26](https://github.com/hasansezertasan/micoo/issues/26))
- ci(release-please): set changelog-type to github by [@hasansezertasan](https://github.com/hasansezertasan) in ([#27](https://github.com/hasansezertasan/micoo/issues/27))
- chore: tiny adjustments by [@hasansezertasan](https://github.com/hasansezertasan) in ([#23](https://github.com/hasansezertasan/micoo/issues/23))
- chore: bootstrap releases for path: . by [@hasansezertasan](https://github.com/hasansezertasan) in ([#24](https://github.com/hasansezertasan/micoo/issues/24))

## :beetle: Bug Fixes

- fix(check-pr-title): update sticky-pull-request-comment action to version 2.9.0 by [@hasansezertasan](https://github.com/hasansezertasan) in ([#32](https://github.com/hasansezertasan/micoo/issues/32))
- fix(root-command): changed output path for root command to reflect the correct repository path by [@hasansezertasan](https://github.com/hasansezertasan) in ([#29](https://github.com/hasansezertasan/micoo/issues/29))

## [0.3.0] - 2025-07-27

## :beetle: Bug Fixes

- Versioning by [@hasansezertasan](https://github.com/hasansezertasan) in ([#21](https://github.com/hasansezertasan/micoo/issues/21))

## [0.2.0] - 2025-07-27

## :rocket: Features

- Git-cliff integration by [@hasansezertasan](https://github.com/hasansezertasan) in ([#6](https://github.com/hasansezertasan/micoo/issues/6))
- Implement dynamic arguments and pin python version to 3.9 by [@hasansezertasan](https://github.com/hasansezertasan) in ([#4](https://github.com/hasansezertasan/micoo/issues/4))
- Generate release notes and discussions on gh-release, adjust permissions, bump setup-uv version by [@hasansezertasan](https://github.com/hasansezertasan) in ([#3](https://github.com/hasansezertasan/micoo/issues/3))

## :beetle: Bug Fixes

- Merge README.md and CHANGELOG.md when publishing to PyPI by [@hasansezertasan](https://github.com/hasansezertasan) in ([#2](https://github.com/hasansezertasan/micoo/issues/2))
- Correct replacement pattern in fancy-pypi-readme hook by [@hasansezertasan](https://github.com/hasansezertasan) in ([#1](https://github.com/hasansezertasan/micoo/issues/1))

## :rocket: Features

- Remove redundant configs by [@hasansezertasan](https://github.com/hasansezertasan) in ([#5](https://github.com/hasansezertasan/micoo/issues/5))

## [0.1.0] - 2025-07-27

## :rocket: Features

- Initial commit by [@hasansezertasan](https://github.com/hasansezertasan)

## New Contributors

- [@hasansezertasan](https://github.com/hasansezertasan) made their first contribution

<!-- refs -->
[unreleased]: https://github.com/hasansezertasan/micoo/compare/0.4.0..HEAD
[0.4.0]: https://github.com/hasansezertasan/micoo/compare/0.3.0..0.4.0
[0.3.0]: https://github.com/hasansezertasan/micoo/compare/0.2.0..0.3.0
[0.2.0]: https://github.com/hasansezertasan/micoo/compare/0.1.0..0.2.0