pmat 3.15.0

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Bug report CLI handler (GH-81)
// Toyota Way: Kaizen - continuous improvement through feedback
//
// Split into submodules via include!():
//   - bug_report_handler_commands.rs: handle_bug_report, create_github_issue, capture helpers
//   - bug_report_handler_tests.rs: unit tests

use anyhow::{Context, Result};
use std::process::Command;

use crate::services::error_capture::{
    clear_error, generate_issue_markdown, load_error, CapturedError,
};

include!("bug_report_handler_commands.rs");
include!("bug_report_handler_tests.rs");