chore: initialize repository baseline

Import the existing Electron + React + TypeScript app as the version-control
baseline before the scanner rework (C# input/capture sidecar, resolution-anchored
layout profiles, OCR preprocessing, eval harness, rescan-merge, GOOD interop).

Housekeeping in this commit:
- Remove orphaned temp_inputhelper_block.ts (duplicate of the input-helper script).
- Ignore .claude/scheduled_tasks.lock local session state.
- Add .gitattributes to normalize line endings (LF in repo).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
AzuTear
2026-07-05 20:31:01 +02:00
commit e76d88e0c7
147 changed files with 26220 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { AlertTriangle, BadgeCheck, Lock, Sparkles, Trash2 } from "lucide-react";
import type { ArtifactVerdict } from "../../types/domain";
export const verdictMeta: Record<ArtifactVerdict, { label: string; className: string; icon: JSX.Element }> = {
keep: { label: "Keep", className: "pill keep", icon: <Lock size={14} /> },
maybe_level: { label: "Test level", className: "pill maybe", icon: <Sparkles size={14} /> },
character_specific: { label: "Character-specific", className: "pill specific", icon: <BadgeCheck size={14} /> },
trash_candidate: { label: "Trash candidate", className: "pill trash", icon: <Trash2 size={14} /> },
needs_review: { label: "Needs review", className: "pill review", icon: <AlertTriangle size={14} /> },
};