Cobra

The commander library that powers Kubernetes, Hugo, and GitHub CLI's command-line interfaces.

Framework
Go
vv1.10.2
44,462stars
Apache License 2.0

Repository Health

Pre-computed score based on development activity, maintenance, community, maturity, and trend momentum.How we score it →
57/100Fair
Development Activity36
Maintenance24
Community68
Maturity60
Momentum40

Technical Analysis

AI-assessed by reading the actual repository — architecture, code quality, innovation, and documentation.How we score it →
88/100Excellent
Architecture88
Code Quality85
Innovation90
Learning Curve95

Cobra is a Go library for building modern, POSIX-compliant command-line applications with nested subcommands, persistent and local flags, and automatic help generation. It provides both an interface for defining commands and a controller for organizing application code, following the APPNAME COMMAND ARG --FLAG pattern used by tools like git and go.

Cobra powers CLIs for some of the most widely used projects in the Go ecosystem, including Kubernetes, Hugo, and the GitHub CLI. Beyond command dispatch, it auto-generates shell completions for bash, zsh, fish, and PowerShell, plus man pages, Markdown, REST, and YAML documentation directly from the same command definitions.

What You Get

  • A Command struct with a full lifecycle (PersistentPreRun -> PreRun -> Run/RunE -> PostRun -> PersistentPostRun) for organizing CLI logic
  • POSIX-compliant flag parsing via the bundled pflag library, with cascading persistent and local flags
  • Auto-generated shell completions for bash, zsh, fish, and PowerShell
  • Auto-generated man pages, Markdown, REST, and YAML documentation from your command definitions
  • The cobra-cli generator to scaffold new CLI projects and commands

Common Use Cases

  • Building a git- or kubectl-style CLI with nested subcommands and per-command flags
  • Adding a controller layer that organizes a Go application’s command-line entry points
  • Shipping shell autocompletion alongside a CLI without hand-writing completion scripts
  • Generating consistent man pages and reference docs directly from command source

Under The Hood

Architecture Cobra’s core abstraction is the Command struct (command.go, 2000+ lines) organized into a tree: each Command holds child Commands, its own pflag.FlagSet, and a chain of lifecycle hooks (PersistentPreRun -> PreRun -> Run/RunE -> PostRun -> PersistentPostRun). Execute() walks up to the root Command via Root(), then ExecuteC() resolves os.Args against the Command tree, parses flags through the embedded pflag.FlagSet, and dispatches into the matched command’s lifecycle chain. That same tree is reused as the single source of truth for shell completion generation (completions.go plus per-shell files for bash/zsh/fish/powershell) and documentation generation (the doc/ package, which walks Use/Short/Long/Example fields to emit man pages, Markdown, REST, and YAML docs). This ‘one struct drives execution, completion, and docs’ design is Cobra’s central architectural decision.

Tech Stack go.mod declares module github.com/spf13/cobra targeting Go 1.15 for broad compatibility, with a deliberately minimal dependency set: github.com/spf13/pflag (Cobra’s own POSIX-compliant flag-parsing fork, doing the actual flag work), github.com/cpuguy83/go-md2man/v2 (Markdown-to-man-page conversion for generated docs), github.com/inconshreveable/mousetrap (a Windows-only check that warns users who double-click the binary instead of running it from a terminal), and go.yaml.in/yaml/v3 (YAML doc generation). There is no runtime framework dependency beyond pflag - the library compiles straight into consumer code, and a Makefile plus a GitHub Actions workflow drive linting, testing, and doc generation in CI.

Code Quality The repository ships 11 _test.go files at the package root (command_test.go, args_test.go, completions_test.go, bash_completions_test.go, flag_groups_test.go, and more) plus a further test suite inside doc/ for the generated-docs package, covering command resolution, argument validation, flag groups, and every completion shell. Error handling is idiomatic Go - RunE/PreRunE/PersistentPreRunE variants return error rather than panicking, and Args validators (args.go) return descriptive errors on mismatch (ExactArgs, MinimumNArgs, OnlyValidArgs). Naming is consistent and exported identifiers are documented with godoc comments throughout; command.go is the one large file (2000+ lines) that centralizes most of the Command type’s behavior rather than splitting it across files, a defensible but monolithic choice for a struct this central.

API Design Cobra’s public API is declarative: a consumer builds cobra.Command{Use, Short, Long, RunE: ...} values and calls AddCommand/Execute, with almost no required boilerplate to get a working CLI with --help, -h, and command suggestions (‘did you mean…’) for free. Persistent and local flags cascade automatically from parent to child commands, and the same struct fields (Use, Short, Long, Example, ValidArgs) simultaneously drive --help output, shell completions, and generated docs, so documenting a command once documents it everywhere. The companion cobra-cli generator scaffolds new commands/projects, further lowering the barrier to a consistent project layout - this consistency is what most reviewers cite as Cobra’s strongest developer-experience trait.

Used by 60 apps in this directory

Go
72%
GPL 3.0

1Panel

Devops · Hosting Control Panel · Monitoring

36,573

The only open-source VPS control panel with native AI agent runtime — deploy websites, Docker stacks, and local LLMs from one web interface.

View details
91
Repo Health
76
Technical
67
Dependency
Built with
Go72%
Vue28%
Updated today
Rust
64%
Apache 2.0

agentgateway

AI Development · Developer Tools

4,420

An open source AI-native proxy that secures, observes, and governs agent-to-LLM, agent-to-tool, and agent-to-agent communication through MCP, A2A, and unified LLM routing.

View details
88
Repo Health
82
Technical
72
Dependency
Built with
Rust64%
Go24%
Updated yesterday
Python
90%
Apache 2.0

Apache Airflow

Data Engineering

46,530

Define, schedule, and monitor complex data workflows as Python code — with a powerful UI, 80+ provider integrations, and battle-tested scalability across thousands of production deployments.

View details
96
Repo Health
89
Technical
66
Dependency
Built with
Python90%
Updated today
TypeScript
51%
MIT

Anarlog

Note Taking · AI Assistants · Productivity

9,087

Anarlog is an open-source, local-first AI meeting notetaker that records, transcribes, and summarizes meetings entirely on your device — no cloud lock-in, no mandatory account, and every note saved as a plain markdown file you own forever.

View details
86
Repo Health
77
Technical
69
Dependency
Built with
TypeScript51%
Rust38%
Updated today
Go
60%
Apache 2.0

Apache Answer

Community

15,652

Open-source Q&A platform for communities, help centers, and knowledge bases with AI assistant and plugin extensibility

View details
85
Repo Health
78
Technical
69
Dependency
Built with
Go60%
TypeScript36%
Updated 2 days ago
Go
85%
Apache 2.0

Argo Workflows

Devops · Data Engineering

16,916

The most popular Kubernetes-native workflow engine for orchestrating containerized DAGs, ML pipelines, CI/CD, and parallel batch jobs at scale.

View details
96
Repo Health
90
Technical
70
Dependency
Built with
Go85%
TypeScript11%
Updated today
Go
86%
Apache 2.0

Authelia

Security · Authentication

28,626

OpenID Certified SSO and MFA portal for securing self-hosted web applications behind reverse proxies.

View details
91
Repo Health
81
Technical
77
Dependency
Built with
Go86%
TypeScript12%
Updated today
Python
54%
Other

authentik

Authentication · Security

24,980

The self-hosted Identity Provider that replaces Okta, Auth0, and Entra ID with a unified SSO platform supporting SAML, OAuth2/OIDC, LDAP, RADIUS, and WebAuthn.

View details
92
Repo Health
81
Technical
68
Dependency
Built with
Python54%
TypeScript33%
Updated today
Go
55%
Apache 2.0

Authgear

Authentication

1,989

Open-source, self-hostable authentication platform with passkeys, biometric login, SSO, MFA, and GraphQL admin API — a full Auth0/Clerk/Firebase alternative for SaaS and mobile apps.

View details
88
Repo Health
81
Technical
72
Dependency
Built with
Go55%
HTML26%
TypeScript17%
Updated yesterday

Join founders buildingwith open source

Opinionated takes, migration guides, cost-saving tips, and insights from the open source ecosystem.

Subscribe on Substack
Join 750+ subscribers

Search