Design Review Panel - robbiemu/aclarai GitHub Wiki
This panel provides a central place to review what aclarai has done β or is scheduled to do β across all tiers. It shows claim metadata, automation state, file-level job status, and lets the user pause/resume processing.
It does not replace Obsidianβs Markdown views β it overlays structure and status without interfering with editing workflows.
graph TD
A[π File / Block Index] --> B[π Claim Detail View]
D[π§ Claim Explorer] --> B
C[βοΈ Automation Status + Controls]
This is a panel-based layout: select a file/block β inspect claim metadata β see or control automation status.
Shows recent files, extracted blocks, and processing state.
At the top of the interface:
[ π File View ] [ π Claim Explorer ]
The default view shows the file/block index. Clicking Claim Explorer activates is (section 4).
File / Block ID | Type | Status | Last Run |
---|---|---|---|
log123.json |
Tier 1 | β Complete | 5 min ago |
conv-alpha-summary.md |
Tier 2 | β³ Queued | β |
CUDA error.md |
Tier 3 | β Embedded | 2 hours ago |
User can click any row to inspect its content or metadata.
When a block is selected, show:
-
The original Markdown block
-
Metadata:
-
entailed_score
,coverage_score
,decontextualization_score
-
aclarai:id
andver=
- Linked concepts
-
-
Link status:
SUPPORTS_CONCEPT β [[Concept]]
- Graph edge exists: β / β
Actions (if allowed):
- [Trigger reprocessing]
- [Unlink concept]
- [View in Obsidian]
Shows whether aclarai is running in live mode, paused, or selectively disabled.
Setting | State | Source |
---|---|---|
Automation | β Running | config.yaml |
Claimify | β Enabled | agent toggle |
Concept refresh | β Skipped | paused flag |
[ βΈοΈ Pause Automation ]
- Sets
.aclarai_pause
flag in vault root - Disables all job scheduling except manual actions
- Button toggles to:
[ βΆοΈ Resume Automation ]
Each scheduled job shows last run time and next scheduled run:
Job | Last Run | Next Run | Status |
---|---|---|---|
Vault Sync | 2 min ago | 58 min | β OK |
Concept Embedding Refresh | Yesterday | Tonight 3 AM | β OK |
Claim Linking | β | β | β Paused |
- Pulls state from
.aclarai_pause
,settings/aclarai.config.yaml
, and runtime job registry - Should support job-specific pause overrides (e.g.,
scheduler.claim_linking.enabled: false
) - Displays Vault-relative paths for links to Markdown blocks
You're absolutely right β thanks for calling that out.
Given the actual structure of design_review_panel.md
(as provided), here's the properly integrated update, including:
- β An updated mermaid diagram
- β Correct insertion as section 4
- β Sequential and structural consistency
Replace the existing diagram at the top with:
graph TD
A[1. π File / Block Index] --> B[2. π Claim Detail View]
D[4. π§ Claim Explorer] --> B
C[3. βοΈ Automation Status + Controls]
This mode offers a searchable, cross-file view of all extracted claims β useful for identifying failed evaluations, low-quality scores, or topics of interest.
At the top of the interface:
[ π File View ] [ π Claim Explorer ]
The default view shows the file/block index (Section 1). Clicking Claim Explorer activates the global view.
A simple text box lets users filter the claim list by:
- Text content (e.g., "GPT-4")
- Score values (e.g., "null", "0.67")
- Planned keywords:
-
failed
: show claims with any null score -
low
: show claims with low geomean -
concept:<term>
(future)
-
Example:
[ π filter claims... _______ ]
Filtered claims appear as a scrollable list, each line showing:
"OpenAI released GPT-4 in 2023."
entailed: 0.92 | coverage: 0.84 | decontextualized: 0.87
"It increased rapidly."
entailed: null | coverage: 0.67 | decontextualized: 0.42
Clicking any row navigates to its full detail view (same as selecting a block).