go/docs/cmd/dev/issues/index.md
Snider 9add6cf2ee refactor(cli): restructure cmd packages into subdirectories
- Move CLI commands into subdirectories matching command hierarchy:
  dev/, go/, php/, build/, ci/, sdk/, pkg/, vm/, docs/, setup/, doctor/, test/, ai/
- Create shared/ package for common styles and utilities
- Add new `core ai` root command with claude subcommand
- Update package declarations and imports across all files
- Create commands.go entry points for each package
- Remove GUI-related files (moved to core-gui repo)

This makes the filesystem structure match the CLI command structure,
improving context capture and code organization.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 18:02:43 +00:00

1.2 KiB

core dev issues

List open issues across all repositories.

Fetches open issues from GitHub for all repos in the registry. Requires the gh CLI to be installed and authenticated.

Usage

core dev issues [flags]

Flags

Flag Description
--registry Path to repos.yaml (auto-detected if not specified)
--assignee Filter by assignee (use @me for yourself)
--limit Max issues per repo (default 10)

Examples

# List all open issues
core dev issues

# Show issues assigned to you
core dev issues --assignee @me

# Limit to 5 issues per repo
core dev issues --limit 5

# Filter by specific assignee
core dev issues --assignee username

Output

core-php (3 issues)
  #42  Add retry logic to HTTP client       bug
  #38  Update documentation for v2 API      docs
  #35  Support custom serializers           enhancement

core-tenant (1 issue)
  #12  Workspace isolation bug              bug, critical

Requirements

  • GitHub CLI (gh) must be installed
  • Must be authenticated: gh auth login

See Also