style: fix formatting with Prettier

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
SuperComboGamer
2025-12-21 20:31:57 -05:00
parent 584f5a3426
commit 8d578558ff
295 changed files with 9088 additions and 10546 deletions

View File

@@ -7,7 +7,7 @@ export interface AgentTaskInfo {
// Task list extracted from TodoWrite tool calls
todos: {
content: string;
status: "pending" | "in_progress" | "completed";
status: 'pending' | 'in_progress' | 'completed';
}[];
// Progress stats
@@ -15,7 +15,7 @@ export interface AgentTaskInfo {
lastToolUsed?: string;
// Phase info
currentPhase?: "planning" | "action" | "verification";
currentPhase?: 'planning' | 'action' | 'verification';
// Summary (if feature is completed)
summary?: string;
@@ -27,16 +27,16 @@ export interface AgentTaskInfo {
/**
* Default model used by the feature executor
*/
export const DEFAULT_MODEL = "claude-opus-4-5-20251101";
export const DEFAULT_MODEL = 'claude-opus-4-5-20251101';
/**
* Formats a model name for display
*/
export function formatModelName(model: string): string {
if (model.includes("opus")) return "Opus 4.5";
if (model.includes("sonnet")) return "Sonnet 4.5";
if (model.includes("haiku")) return "Haiku 4.5";
return model.split("-").slice(1, 3).join(" ");
if (model.includes('opus')) return 'Opus 4.5';
if (model.includes('sonnet')) return 'Sonnet 4.5';
if (model.includes('haiku')) return 'Haiku 4.5';
return model.split('-').slice(1, 3).join(' ');
}
/**
@@ -44,11 +44,13 @@ export function formatModelName(model: string): string {
* Looks for TodoWrite tool calls in the format:
* TodoWrite: [{"content": "...", "status": "..."}]
*/
function extractTodos(content: string): AgentTaskInfo["todos"] {
const todos: AgentTaskInfo["todos"] = [];
function extractTodos(content: string): AgentTaskInfo['todos'] {
const todos: AgentTaskInfo['todos'] = [];
// Look for TodoWrite tool inputs
const todoMatches = content.matchAll(/TodoWrite.*?(?:"todos"\s*:\s*)?(\[[\s\S]*?\](?=\s*(?:\}|$|🔧|📋|⚡|✅|❌)))/g);
const todoMatches = content.matchAll(
/TodoWrite.*?(?:"todos"\s*:\s*)?(\[[\s\S]*?\](?=\s*(?:\}|$|🔧|📋|⚡|✅|❌)))/g
);
for (const match of todoMatches) {
try {
@@ -61,7 +63,7 @@ function extractTodos(content: string): AgentTaskInfo["todos"] {
for (const item of parsed) {
if (item.content && item.status) {
// Check if this todo already exists (avoid duplicates)
if (!todos.some(t => t.content === item.content)) {
if (!todos.some((t) => t.content === item.content)) {
todos.push({
content: item.content,
status: item.status,
@@ -79,12 +81,12 @@ function extractTodos(content: string): AgentTaskInfo["todos"] {
// Also try to extract from markdown task lists
const markdownTodos = content.matchAll(/- \[([ xX])\] (.+)/g);
for (const match of markdownTodos) {
const isCompleted = match[1].toLowerCase() === "x";
const isCompleted = match[1].toLowerCase() === 'x';
const content = match[2].trim();
if (!todos.some(t => t.content === content)) {
if (!todos.some((t) => t.content === content)) {
todos.push({
content,
status: isCompleted ? "completed" : "pending",
status: isCompleted ? 'completed' : 'pending',
});
}
}
@@ -114,18 +116,18 @@ function getLastToolUsed(content: string): string | undefined {
/**
* Determines the current phase from the content
*/
function getCurrentPhase(content: string): "planning" | "action" | "verification" | undefined {
function getCurrentPhase(content: string): 'planning' | 'action' | 'verification' | undefined {
// Find the last phase marker
const planningIndex = content.lastIndexOf("📋");
const actionIndex = content.lastIndexOf("⚡");
const verificationIndex = content.lastIndexOf("✅");
const planningIndex = content.lastIndexOf('📋');
const actionIndex = content.lastIndexOf('⚡');
const verificationIndex = content.lastIndexOf('✅');
const maxIndex = Math.max(planningIndex, actionIndex, verificationIndex);
if (maxIndex === -1) return undefined;
if (maxIndex === verificationIndex) return "verification";
if (maxIndex === actionIndex) return "action";
return "planning";
if (maxIndex === verificationIndex) return 'verification';
if (maxIndex === actionIndex) return 'action';
return 'planning';
}
/**
@@ -147,13 +149,17 @@ function extractSummary(content: string): string | undefined {
}
// Look for completion markers and extract surrounding text
const completionMatch = content.match(/✓ (?:Feature|Verification|Task) (?:successfully|completed|verified)[^\n]*(?:\n[^\n]{1,200})?/i);
const completionMatch = content.match(
/✓ (?:Feature|Verification|Task) (?:successfully|completed|verified)[^\n]*(?:\n[^\n]{1,200})?/i
);
if (completionMatch) {
return completionMatch[0].trim();
}
// Look for "What was done" type sections
const whatWasDoneMatch = content.match(/(?:What was done|Changes made|Implemented)[^\n]*\n([\s\S]*?)(?=\n## [^#]|\n🔧|$)/i);
const whatWasDoneMatch = content.match(
/(?:What was done|Changes made|Implemented)[^\n]*\n([\s\S]*?)(?=\n## [^#]|\n🔧|$)/i
);
if (whatWasDoneMatch) {
return whatWasDoneMatch[1].trim();
}
@@ -165,11 +171,15 @@ function extractSummary(content: string): string | undefined {
* Calculates progress percentage based on phase and context
* Uses a more dynamic approach that better reflects actual progress
*/
function calculateProgress(phase: AgentTaskInfo["currentPhase"], toolCallCount: number, todos: AgentTaskInfo["todos"]): number {
function calculateProgress(
phase: AgentTaskInfo['currentPhase'],
toolCallCount: number,
todos: AgentTaskInfo['todos']
): number {
// If we have todos, primarily use them for progress calculation
if (todos.length > 0) {
const completedCount = todos.filter(t => t.status === "completed").length;
const inProgressCount = todos.filter(t => t.status === "in_progress").length;
const completedCount = todos.filter((t) => t.status === 'completed').length;
const inProgressCount = todos.filter((t) => t.status === 'in_progress').length;
// Weight: completed = 1, in_progress = 0.5, pending = 0
const progress = ((completedCount + inProgressCount * 0.5) / todos.length) * 90;
@@ -181,15 +191,15 @@ function calculateProgress(phase: AgentTaskInfo["currentPhase"], toolCallCount:
// Fallback: use phase-based progress with tool call scaling
let phaseProgress = 0;
switch (phase) {
case "planning":
case 'planning':
// Planning phase: 5-25%
phaseProgress = 5 + Math.min(toolCallCount * 1, 20);
break;
case "action":
case 'action':
// Action phase: 25-75% based on tool calls (logarithmic scaling)
phaseProgress = 25 + Math.min(Math.log2(toolCallCount + 1) * 10, 50);
break;
case "verification":
case 'verification':
// Verification phase: 75-95%
phaseProgress = 75 + Math.min(toolCallCount * 0.5, 20);
break;
@@ -247,7 +257,7 @@ export function getQuickStats(content: string): QuickStats {
const info = parseAgentContext(content);
return {
toolCalls: info.toolCallCount,
completedTasks: info.todos.filter(t => t.status === "completed").length,
completedTasks: info.todos.filter((t) => t.status === 'completed').length,
totalTasks: info.todos.length,
phase: info.currentPhase,
};