Terminal Integration

CloseYourIt from your Terminal

Manage bugs, tickets, and sprints directly from the command line. The fastest way to interact with CloseYourIt.

What is CloseYourIt CLI?

A powerful command-line interface to interact with CloseYourIt without leaving your terminal

CloseYourIt CLI is a Node.js tool built with oclif that gives you full control of your bug tracking workflow from the terminal. Authenticate once, then manage tickets, projects, sprints and reports with fast, scriptable commands.

How it works

Your Terminal

Shell / Scripts

closeyourit CLI

Node.js / oclif

CloseYourIt

REST API

Setup in 3 steps

Get up and running in under 2 minutes

1

Install the CLI

Install CloseYourIt CLI globally with npm or npx:

Terminal
npm install -g closeyourit-cli

Or use npx without installing:

Terminal
npx closeyourit-cli --help
2

Authenticate

Login with your CloseYourIt account credentials:

Terminal
closeyourit login
Tip: Your session is saved locally. You only need to login once per machine.
3

Set your organization

Configure the active organization for your commands:

Terminal
closeyourit config set-org my-organization

Run closeyourit whoami to confirm your setup is complete.

Available Commands

Full control of your workflow from the terminal

Authentication

3 commands
closeyourit login Authenticate with your CloseYourIt account
closeyourit logout Sign out from your account
closeyourit whoami Display current authenticated user

Configuration

2 commands
closeyourit config show Show current CLI configuration
closeyourit config set-org [ORG_SLUG] Set the active organization

Tickets

10 commands
closeyourit tickets list [--status] [--priority] [--project] List tickets with optional filters
closeyourit tickets create Create a new ticket interactively
closeyourit tickets show [TICKET_ID] Show ticket details
closeyourit tickets update [TICKET_ID] Update ticket fields
closeyourit tickets delete [TICKET_ID] Delete a ticket
closeyourit tickets search [QUERY] Full-text search in tickets
closeyourit tickets comment [TICKET_ID] Add a comment to a ticket
closeyourit tickets complete [TICKET_ID] Mark a ticket as complete
closeyourit tickets take [TICKET_ID] Assign a ticket to yourself
closeyourit tickets export [--format csv|json] Export tickets to CSV or JSON

Projects

3 commands
closeyourit projects list List all projects in the organization
closeyourit projects create Create a new project
closeyourit projects generate-token --project [PROJECT_ID] Generate an API token for a project (used by widgets and external integrations)

Sprints

7 commands
closeyourit sprints list List all sprints
closeyourit sprints show [SPRINT_ID] Show sprint details
closeyourit sprints activate [SPRINT_ID] Activate a sprint
closeyourit sprints complete [SPRINT_ID] Complete an active sprint
closeyourit sprints cancel [SPRINT_ID] Cancel a sprint
closeyourit sprints add-ticket [SPRINT_ID] [TICKET_ID] Add a ticket to a sprint
closeyourit sprints remove-ticket [SPRINT_ID] [TICKET_ID] Remove a ticket from a sprint

Reports

6 commands
closeyourit reports list List all reports
closeyourit reports show [REPORT_ID] Show report details
closeyourit reports create Create a new report
closeyourit reports analyze [REPORT_ID] AI analysis of a report
closeyourit reports convert [REPORT_ID] Convert report to ticket
closeyourit reports reject [REPORT_ID] Reject a report

Other

3 commands
closeyourit members List organization members
closeyourit orgs List your organizations
closeyourit stats Show organization statistics

Practical Examples

Common workflows with CloseYourIt CLI

Create and assign a ticket

Quickly create a new bug ticket and assign it to yourself

Terminal
# Create a new ticket
closeyourit tickets create

# List your tickets and take ownership
closeyourit tickets list --status open
closeyourit tickets take TKT-42

# Add a comment
closeyourit tickets comment TKT-42

Sprint management

List open tickets and add them to the active sprint

Terminal
# List active sprints
closeyourit sprints list

# Show sprint details
closeyourit sprints show SPR-3

# Add tickets to sprint
closeyourit sprints add-ticket SPR-3 TKT-42
closeyourit sprints add-ticket SPR-3 TKT-55

# Activate the sprint
closeyourit sprints activate SPR-3

Export and analyze

Export tickets and generate a report with AI analysis

Terminal
# Export all open tickets to CSV
closeyourit tickets export --format csv

# Search for critical bugs
closeyourit tickets search "authentication" --priority critical

# Create and analyze a report
closeyourit reports create
closeyourit reports analyze RPT-7

# View organization stats
closeyourit stats

Ready to work faster from your terminal?

Sign up now and install CloseYourIt CLI in seconds.