Warning
micoo is deprecated and no longer maintained. It has been superseded by
cobo, a generic boilerplate
fetcher that supports mise cookbooks, gitignore templates, and any
user-configured source. See Migrating to cobo
below for the migration guide.
micoo (short for mise cookbooks) is a ⚡ command-line tool that makes it easy to access mise configuration files from mise-cookbooks 📚.
micoo is no longer maintained — v0.6.0 is the final release. Prior releases stay installable for reproducibility but receive no fixes.
uv tool uninstall micoo
uv tool install cobo(Using pipx or mise install pipx:micoo? Substitute the equivalent uninstall/install commands.)
Then use it exactly as before, under the mise source:
cobo mise update
cobo mise dump python > mise.local.tomlOld (micoo) |
New (cobo) |
|---|---|
micoo dump python |
cobo mise dump python |
micoo list |
cobo mise list |
micoo search foo |
cobo mise search foo |
micoo update |
cobo mise update (single source) or cobo update (all sources) |
micoo root |
cobo mise root (single source) or cobo root (cache root) |
micoo remote |
cobo mise remote |
micoo info |
cobo info |
micoo log |
(dropped — cobo has no log command; cobo info reports the cache root) |
micoo version |
cobo version |
micoo interactive |
(dropped — use shell redirection: cobo mise dump python > mise.local.toml) |
micoo only fetched mise cookbooks. cobo generalizes the same pattern (clone a repo, list templates, dump one to stdout) to any boilerplate source — with built-in support for mise, gitignore, gitattributes, editorconfig, and licenses, plus user-defined sources via a single TOML config.
New issues should be filed against cobo rather than this repository.
# List available cookbooks
micoo list
# Create a new mise.toml with a cookbook
micoo dump python > mise.toml- 🚀 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
There are several ways to install micoo! 🚀 I recommend using (obviously) mise 🛠️. Here's how to do it:
mise install pipx:micooAlternatively, you can install it using uv tool install micoo 🧩
uv tool install micooHere is the output of the micoo --help command:
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. │
╰────────────────────────────────────────────────────────────────────────────────────────────────────╯You can use the micoo command to interact with mise-cookbooks. Here are some common commands:
List all available cookbooks:
micoo listThis will output:
Available cookbooks:
- terraform
- python
- cpp
- pnpm
- node
- ruby-on-rails
- opentofuDump a specific cookbook to a mise.toml file:
micoo dump python > mise.tomlOpen the mise-cookbooks repository in the default application:
open $(micoo remote)Open the cloned repository in the default application:
open $(micoo root)Open the log file in the default application:
open $(micoo log)Show the current version of micoo:
micoo versionShow the information about the micoo application:
micoo infoStart interactive mode for cookbook selection and generation:
micoo interactiveThe interactive mode supports multiple output locations:
mise.toml- Standard configuration filemise.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)
If you have any questions or need help, feel free to open an issue on the GitHub repository.
This project is maintained by Hasan Sezer Taşan, It's me 👋
Any contributions are welcome! Please follow the Contributing Guidelines to contribute to this project.
Clone the repository and cd into the project directory:
git clone https://github.com/hasansezertasan/micoo
cd micooThe commands below can also be executed using the xc task runner, which combines the usage instructions with the actual commands. Simply run xc, it will pop up an interactive menu with all available tasks.
Install the dependencies:
uv syncRun the style checks:
uv run --locked tox run -e styleRun the CI pipeline:
uv run --locked tox run- mise - The official mise project
- mise-cookbooks - Collection of mise cookbooks
This project is licensed under the MIT License.
Please check the Releases page for the changelog.