**Git Commit Tracking** - Automatically capture git commit hash when claims/observations are ingested - Store in assertion metadata for temporal context and audit trails - Graceful degradation in non-git environments - Solves double-commit problem by capturing hash at ingestion time **Implementation** - walker/git.rs: get_current_commit_hash() utility function - bridge.rs: Accept optional git_commit parameter in all conversion functions - episteme/local: Store project_root, capture git hash during ingestion - 5 new tests for git hash tracking + metadata validation - All 1162 aphoria tests passing **Documentation Overhaul** - README: Added Observations vs Claims distinction, git tracking, dashboard - CLI Reference: New sections for git integration and ignore/exclusion system - Comprehensive ignore documentation: .aphoriaignore, inline comments, 4 methods - Enhanced verification engine docs with matching capabilities - DOCUMENTATION_UPDATES.md: Complete audit summary **Dashboard Separation** - Moved Aphoria-specific UI from stemedb-dashboard to aphoria-dashboard - Clean separation of concerns: StemeDB for core, Aphoria for security - Added dashboard documentation and setup guides Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
36 lines
1.2 KiB
TypeScript
36 lines
1.2 KiB
TypeScript
"use client";
|
|
|
|
export function ScansLoadingSkeleton() {
|
|
return (
|
|
<div className="space-y-4 animate-pulse">
|
|
{/* Scan form skeleton */}
|
|
<div className="rounded-lg border border-border bg-card p-4">
|
|
<div className="flex gap-4 items-end">
|
|
<div className="flex-1 space-y-2">
|
|
<div className="h-4 w-24 bg-muted rounded" />
|
|
<div className="h-10 bg-muted rounded" />
|
|
</div>
|
|
<div className="h-10 w-24 bg-muted rounded" />
|
|
</div>
|
|
</div>
|
|
|
|
{/* Scan list skeleton */}
|
|
<div className="space-y-3">
|
|
{[1, 2, 3].map((i) => (
|
|
<div key={i} className="rounded-lg border border-border bg-card p-4">
|
|
<div className="flex items-center justify-between mb-3">
|
|
<div className="h-5 w-40 bg-muted rounded" />
|
|
<div className="h-6 w-20 bg-muted rounded" />
|
|
</div>
|
|
<div className="flex gap-4">
|
|
<div className="h-4 w-32 bg-muted rounded" />
|
|
<div className="h-4 w-32 bg-muted rounded" />
|
|
<div className="h-4 w-32 bg-muted rounded" />
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|