Integrazione Terminale

BugToMe dal tuo Terminale

Gestisci bug, ticket e sprint direttamente dalla riga di comando. Il modo piu veloce per interagire con BugToMe.

Cos'e BugToMe CLI?

Una potente interfaccia a riga di comando per interagire con BugToMe senza lasciare il terminale

BugToMe CLI e uno strumento Node.js costruito con oclif che ti da il controllo completo del tuo workflow di bug tracking dal terminale. Autenticati una volta, poi gestisci ticket, progetti, sprint e report con comandi veloci e scriptabili.

Come funziona

Your Terminal

Shell / Scripts

bugtome CLI

Node.js / oclif

BugToMe

REST API

Setup in 3 passi

Operativo in meno di 2 minuti

1

Installa la CLI

Installa BugToMe CLI globalmente con npm o npx:

Terminal
npm install -g bugtome-cli

Or use npx without installing:

Terminal
npx bugtome-cli --help
2

Autenticati

Fai login con le credenziali del tuo account BugToMe:

Terminal
bugtome login
Suggerimento: La tua sessione viene salvata localmente. Devi fare login solo una volta per macchina.
3

Imposta la tua organizzazione

Configura l'organizzazione attiva per i tuoi comandi:

Terminal
bugtome config set-org my-organization

Esegui bugtome whoami per confermare che il setup sia completo.

Comandi Disponibili

Controllo completo del tuo workflow dal terminale

Autenticazione

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

Configurazione

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

Ticket

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

Progetti

1 commands
bugtome projects List all projects in the organization

Sprint

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

Report

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

Altro

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

Esempi Pratici

Workflow comuni con BugToMe CLI

Crea e assegna un ticket

Crea rapidamente un nuovo ticket bug e assegnalo a te stesso

Terminal
# Create a new ticket
bugtome tickets create

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

# Add a comment
bugtome tickets comment TKT-42

Gestione sprint

Lista i ticket aperti e aggiungili allo sprint attivo

Terminal
# List active sprints
bugtome sprints list

# Show sprint details
bugtome sprints show SPR-3

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

# Activate the sprint
bugtome sprints activate SPR-3

Esporta e analizza

Esporta i ticket e genera un report con analisi AI

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

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

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

# View organization stats
bugtome stats

Pronto a lavorare piu velocemente dal terminale?

Registrati ora e installa BugToMe CLI in pochi secondi.