Versions in this module Expand all Collapse all v1 v1.0.2 Jan 23, 2026 v1.0.1 Jan 23, 2026 Changes in this version + const LabelAutoReported + const LabelBug + const LabelDatabase + const LabelDocumentation + const LabelEnhancement + const LabelExport + const LabelFileHandler + const LabelMCP + const LabelREPL + const LabelStorage + type Client struct + func NewClient(config Config) *Client + func NewDefaultClient() *Client + func (c *Client) AddComment(issueNumber int, body string) error + func (c *Client) CreateIssue(req IssueCreateRequest) (*Issue, error) + func (c *Client) FindDuplicates(errorKeywords string) ([]Issue, error) + func (c *Client) IsAuthenticated() bool + func (c *Client) IsDuplicate(title string, errorMessage string) (*Issue, error) + func (c *Client) SearchIssues(query string, state string, limit int) ([]Issue, error) + type CommentRequest struct + Body string + type Config struct + Owner string + Repo string + func DefaultConfig() Config + type Issue struct + Body string + ClosedAt string + CommentsURL string + CreatedAt string + HTMLURL string + Labels []string + Number int + State string + Title string + URL string + UpdatedAt string + type IssueCreateRequest struct + Body string + Labels []string + Title string + type IssueSearchResult struct + Issues []Issue + TotalCount int