Merge branch 'AutoMaker-Org:main' into feat/claude-usage-clean

This commit is contained in:
Mohamad Yahia
2025-12-21 09:18:13 +04:00
committed by GitHub
183 changed files with 9233 additions and 2472 deletions

View File

@@ -4,14 +4,7 @@ import { cn } from "@/lib/utils";
import { ImageIcon, X, Loader2 } from "lucide-react";
import { Textarea } from "@/components/ui/textarea";
import { getElectronAPI } from "@/lib/electron";
import { useAppStore } from "@/store/app-store";
export interface FeatureImagePath {
id: string;
path: string; // Path to the temp file
filename: string;
mimeType: string;
}
import { useAppStore, type FeatureImagePath } from "@/store/app-store";
// Map to store preview data by image ID (persisted across component re-mounts)
export type ImagePreviewMap = Map<string, string>;

View File

@@ -1,6 +1,5 @@
import * as React from "react";
import { useEffect, useCallback, useRef } from "react";
import React, { useEffect, useCallback, useRef } from "react";
import { Button, buttonVariants } from "./button";
import { cn } from "@/lib/utils";
import type { VariantProps } from "class-variance-authority";

View File

@@ -10,7 +10,7 @@ import { useAppStore, Feature } from "@/store/app-store";
import { getElectronAPI } from "@/lib/electron";
import type { AutoModeEvent } from "@/types/electron";
import { pathsEqual } from "@/lib/utils";
import { getBlockingDependencies } from "@/lib/dependency-resolver";
import { getBlockingDependencies } from "@automaker/dependency-resolver";
import { BoardBackgroundModal } from "@/components/dialogs/board-background-modal";
import { RefreshCw } from "lucide-react";
import { useAutoMode } from "@/hooks/use-auto-mode";

View File

@@ -8,7 +8,7 @@ import {
TooltipTrigger,
} from "@/components/ui/tooltip";
import { AlertCircle, Lock, Hand, Sparkles } from "lucide-react";
import { getBlockingDependencies } from "@/lib/dependency-resolver";
import { getBlockingDependencies } from "@automaker/dependency-resolver";
interface CardBadgeProps {
children: React.ReactNode;

View File

@@ -12,7 +12,7 @@ import { getElectronAPI } from "@/lib/electron";
import { toast } from "sonner";
import { useAutoMode } from "@/hooks/use-auto-mode";
import { truncateDescription } from "@/lib/utils";
import { getBlockingDependencies } from "@/lib/dependency-resolver";
import { getBlockingDependencies } from "@automaker/dependency-resolver";
interface UseBoardActionsProps {
currentProject: { path: string; id: string } | null;

View File

@@ -1,6 +1,6 @@
import { useMemo, useCallback } from "react";
import { Feature, useAppStore } from "@/store/app-store";
import { resolveDependencies, getBlockingDependencies } from "@/lib/dependency-resolver";
import { resolveDependencies, getBlockingDependencies } from "@automaker/dependency-resolver";
type ColumnId = Feature["status"];

View File

@@ -1,4 +1,4 @@
import { AgentModel, ThinkingLevel } from "@/store/app-store";
import type { AgentModel, ThinkingLevel } from "@/store/app-store";
import {
Brain,
Zap,