Documentation
¶
Index ¶
- func InitAICommand(rootCmd *cobra.Command)
- func InitCatCommand(rootCmd *cobra.Command)
- func InitCodeReviewCommand(rootCmd *cobra.Command)
- func InitCommitCommand(rootCmd *cobra.Command)
- func InitDaemonCommand(rootCmd *cobra.Command)
- func InitSecurityReviewCommand(rootCmd *cobra.Command)
- func ParseCommitMessage(input string) (string, error)
- func ParseReviewComments(input string) (string, error)
- func ParseSecurityReview(input string) (string, error)
- func ParseTaggedContent(input, tag string) (string, error)
- type CatCommandError
- type FileInfoJSON
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func InitAICommand ¶
func InitCatCommand ¶
InitCatCommand wires up the cat command
func InitCodeReviewCommand ¶
func InitCommitCommand ¶
func InitDaemonCommand ¶
func ParseCommitMessage ¶
func ParseReviewComments ¶
func ParseSecurityReview ¶
func ParseTaggedContent ¶
Types ¶
type CatCommandError ¶
CatCommandError is a custom error type for the cat command
func (*CatCommandError) Error ¶
func (e *CatCommandError) Error() string
type FileInfoJSON ¶
type FileInfoJSON struct { Filename string `json:"filename,omitempty"` RelativePath string `json:"relative_path"` FileType string `json:"file_type,omitempty"` Content string `json:"content"` FileSize int64 `json:"file_size,omitempty"` LastModified *time.Time `json:"last_modified,omitempty"` LineCount int `json:"line_count,omitempty"` MD5Checksum string `json:"md5_checksum,omitempty"` }
FileInfoJSON is a struct for JSON output that conditionally includes fields
Source Files
¶
Click to show internal directories.
Click to hide internal directories.