Uses of Record Class
ai.tabforge.workshop.model.Finding
Packages that use Finding
Package
Description
Abstract base classes and interfaces for Workshop sub-agents.
Domain model for the Claude Architect Workshop MCP server.
Orchestration engine — the agentic loop that coordinates all sub-agents.
-
Uses of Finding in ai.tabforge.workshop.agent
Methods in ai.tabforge.workshop.agent with parameters of type Finding -
Uses of Finding in ai.tabforge.workshop.model
Methods in ai.tabforge.workshop.model that return FindingModifier and TypeMethodDescriptionEscalationRequest.triggeringFinding()Returns the value of thetriggeringFindingrecord component.Methods in ai.tabforge.workshop.model that return types with arguments of type FindingModifier and TypeMethodDescriptionReviewReport.criticalFindings()Returns only CRITICAL findings — used byOrchestratorAgent#escalate().AgentResult.findings()Returns the value of thefindingsrecord component.ReviewReport.findings()Returns the value of thefindingsrecord component.ReviewReport.findingsByPriority()Returns findings sorted by severity (CRITICAL first) then by confidence descending.Methods in ai.tabforge.workshop.model with parameters of type FindingModifier and TypeMethodDescriptionstatic StringEscalationRequest.standardQuestion(Finding finding) Standard escalation question for a CRITICAL finding.static StringEscalationRequest.uncertaintyQuestion(Finding finding) Uncertainty escalation question for a CRITICAL finding with 0.70–0.84 confidence.Constructors in ai.tabforge.workshop.model with parameters of type FindingModifierConstructorDescriptionEscalationRequest(String reviewId, Finding triggeringFinding, String question, List<HumanDecision.DecisionType> availableOptions, String escalatedAt, String confidenceNote) Creates an instance of aEscalationRequestrecord class.Constructor parameters in ai.tabforge.workshop.model with type arguments of type FindingModifierConstructorDescriptionAgentResult(String agentName, List<Finding> findings, int inputTokens, int outputTokens, long durationMs, String errorMessage, int retryCount) Creates an instance of aAgentResultrecord class.ReviewReport(String reviewId, String projectPath, String startedAt, String completedAt, ReviewReport.ReviewStatus status, Severity overallRisk, boolean safeToMerge, List<Finding> findings, Map<String, AgentSummary> agentSummaries, List<HumanDecision> humanDecisions) Creates an instance of aReviewReportrecord class. -
Uses of Finding in ai.tabforge.workshop.orchestrator
Methods in ai.tabforge.workshop.orchestrator that return types with arguments of type FindingModifier and TypeMethodDescriptionAgentResultAggregator.aggregate(List<AgentResult> results) Merges all findings from every agent result into one deduplicated, sorted list ready to be stored in aReviewReport.Methods in ai.tabforge.workshop.orchestrator with parameters of type Finding