issy
Navigation — CLI Reference

CLI Reference

The issy CLI is your primary interface for managing issues from the terminal. All commands work with the .issy/issues/ directory in your project.

Commands

issy

Launch the web UI at http://localhost:1554 for browsing issues in the browser.

issy

issy init

Create the .issy/issues/ directory structure.

issy init              # Create empty directory
issy init --seed       # Create with a welcome issue

issy list

List issues in roadmap order (default).

issy list                     # Open issues only
issy list --all               # Include closed issues
issy list --priority high     # Filter by priority
issy list --scope small       # Filter by scope
issy list --type bug          # Filter by type
issy list --search "keyword"  # Fuzzy search
issy list --sort priority     # Sort by priority
issy list --sort created      # Sort by creation date
issy list --sort id           # Sort by ID

Filters:

FlagValues
--priorityhigh, medium, low
--scopesmall, medium, large
--typebug, improvement

Sort options:

ValueDescription
roadmapRoadmap order (default)
priorityBy priority level
createdBy creation date
updatedBy last update
idBy issue ID

issy next

Show the next issue to work on (first open issue in roadmap order).

issy next

Fuzzy search across issue titles and content.

issy search "dashboard"        # Search open issues
issy search "k8s" --all        # Include closed issues

issy read

View the full contents of an issue.

issy read 0001

issy create

Create a new issue. When other open issues exist, you must specify a position.

issy create --title "Fix login bug" --type bug --priority high --after 0002
issy create --title "Add dark mode" --type improvement --last --labels "ui, frontend"
issy create --title "Urgent fix" --first
issy create --title "Fix crash" --body "## Problem\n\nApp crashes on startup." --last

Required flags:

FlagDescription
--titleIssue title

Optional flags:

FlagDescription
--typebug or improvement
--priorityhigh, medium, or low
--scopesmall, medium, or large
--labelsComma-separated labels
--bodyIssue body content (markdown)

Position flags (required when open issues exist):

FlagDescription
--before <id>Insert before issue
--after <id>Insert after issue
--firstInsert at beginning
--lastInsert at end

issy update

Update an existing issue’s properties.

issy update 0001 --priority low
issy update 0001 --after 0003          # Reposition in roadmap
issy update 0001 --first               # Move to top
issy update 0001 --labels "api, backend"
issy update 0001 --body "New details"  # Replace body content

issy close

Close an issue.

issy close 0001

issy reopen

Reopen a closed issue. Position flags are required when other open issues exist.

issy reopen 0001 --last
issy reopen 0001 --after 0004

issy skill install

Install the AI skill for your coding assistant.

issy skill install

issy migrate

Migrate from .issues/ (v0.4.x format) to .issy/.

issy migrate

issy help

Show help information.

issy help

issy --version

Display the installed version.

issy --version