Hacktoberfest 2026: los issues que los mantenedores marcaron para octubre, abiertos y aptos para principiantes. Explorar issues de Hacktoberfest

Add mise as a recommended installation method

Abierto Apto para principiantes
#239 1 comentario 1 reacción 0 asignados Ver en GitHub

Nadie ha tomado este issue todavía.

Evaluación

Dificultad
1/5
Tiempo estimado
1-3 horas
Aptitud para principiantes
70/100
Tipo de issue
Documentación
Claridad
Bien especificado
Estado de actividad
Tranquilo
Stack tecnológico
github

Línea de trabajo

Abre README.md y localiza la sección Installation y sus métodos existentes. Añade al principio la sección solicitada «via mise (recommended)» con los comandos globales y de proyecto documentados. Después, verifica que Markdown se renderice correctamente y que las instrucciones coincidan con el issue.

Escrito por el modelo de indexación a partir del texto del issue.

Descripción

Document mise as an installation method

Proposal

Add mise as the recommended way to install the OpenFeature CLI.

mise is a developer tool version manager (>27k GitHub stars) that provides deterministic, reproducible toolchains pinned per-project via a config file checked into version control. Using the github: backend, mise can install the CLI directly from GitHub Releases without requiring a registry entry:

# Install globally
mise use --global "github:open-feature/cli"

# Or install in the current project
mise use "github:open-feature/cli"

This would also allow teams to pin the CLI version in their project's mise.toml:

[tools]
"github:open-feature/cli" = "0.4.0"

The github: backend automatically downloads the correct pre-built binary from GitHub Releases based on the user's OS and architecture — no compilation required.

Why mise?
  • Reproducible environments: Every developer on a team gets the exact same CLI version, managed declaratively in a config file.
  • No manual upgrades: mise upgrade "github:open-feature/cli" handles it.
  • Multi-tool management: Teams already using mise for Go, Node, Python, etc. get the OpenFeature CLI in the same workflow.
  • Cross-platform: Works on macOS, Linux, and Windows.
  • Wide adoption: mise is one of the most popular dev tool managers in the ecosystem, used by a large and growing community.
Implementation

This requires no upstream changes — no registry PR, no build changes. The existing GoReleaser setup already produces the release artifacts that mise's github: backend expects.

The only change needed is adding a ### via mise (recommended) section at the top of the Installation docs in README.md, before the existing methods:

### via mise (recommended)

The recommended way to install the OpenFeature CLI is with [mise](https://mise.jdx.dev), a developer tool version manager:

```bash
# Install globally
mise use --global "github:open-feature/cli"

# Or install in the current project
mise use "github:open-feature/cli"
```
How it works

The github: backend auto-detects the correct archive from GitHub Releases using the asset naming pattern (openfeature_Darwin_x86_64.tar.gz, etc.), which aligns with the existing GoReleaser name_template. It downloads the archive, extracts the binary, and places it on the user's PATH.

Future improvements

Once the CLI gains more adoption, we could register it in the mise registry, which would allow a shorter install command:

mise use openfeature
Lenguaje dominante
Go
Estrellas
63
Forks
22
Merge medio
1 h 27 min
PR fusionados (30 d)
19

Guía de contribución

Abrir la guía de contribución

Primeros pasos

  1. Lee el issue completo y luego la guía de contribución del proyecto.
  2. Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
  3. Haz un fork del repositorio y trabaja en una rama.
  4. Abre un pull request que haga referencia al número del issue.

Más de open-feature/cli

Todos los issues de open-feature/cli

Issues similares

Más issues de Go

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.