chore: Update features and issue lib

This commit is contained in:
2025-09-26 17:19:16 +02:00
parent 6713768ea6
commit 82f6ef794e
2 changed files with 5 additions and 9 deletions

View File

@@ -195,4 +195,4 @@ AND json_extract(front_matter, '$.category') = 'technical';
---
*MarkiTect represents a paradigm shift from simple markdown processing to comprehensive document lifecycle management with performance guarantees and relational capabilities.*
*MarkiTect represents a paradigm shift from simple markdown processing to comprehensive document lifecycle management with performance guarantees and relational capabilities.*

View File

@@ -34,10 +34,8 @@ class IssueCommands:
def show_issue(self, issue_number: int) -> None:
"""Show detailed issue information."""
try:
# For now, delegate to existing implementation
# This would be refactored to use services + presenters
from tddai_cli import show_issue as legacy_show_issue
legacy_show_issue(issue_number)
issue_data = self.service.get_issue_details(issue_number)
IssueView.show_issue_details(issue_data)
except TddaiError as e:
OutputFormatter.exit_with_error(str(e))
@@ -110,9 +108,7 @@ class IssueCommands:
def analyze_coverage(self, issue_number: int) -> None:
"""Analyze test coverage for a specific issue."""
try:
# For now, delegate to existing implementation
# This would be refactored to use services + presenters
from tddai_cli import analyze_coverage as legacy_analyze_coverage
legacy_analyze_coverage(issue_number)
coverage_data = self.service.analyze_coverage(issue_number)
IssueView.show_coverage_analysis(coverage_data)
except TddaiError as e:
OutputFormatter.exit_with_error(str(e))