fix: remove redundant code in processing logic
Some checks failed
CI / build-and-test (push) Failing after -31m35s

This commit is contained in:
Hein
2026-04-30 16:04:04 +02:00
parent 537e65ea6d
commit 65715f7ad3
31 changed files with 2691 additions and 61 deletions

View File

@@ -56,7 +56,7 @@ export type NavItem = {
disabled?: boolean;
};
export type ShellPage = 'dashboard' | 'projects' | 'thoughts' | 'learnings' | 'skills' | 'guardrails' | 'files' | 'maintenance';
export type ShellPage = 'dashboard' | 'projects' | 'thoughts' | 'learnings' | 'plans' | 'skills' | 'guardrails' | 'files' | 'maintenance';
export type Project = {
id: string;
@@ -181,6 +181,24 @@ export type Learning = {
updated_at: string;
};
export type Plan = {
id: string;
title: string;
description: string;
status: 'draft' | 'active' | 'blocked' | 'completed' | 'cancelled' | 'superseded';
priority: 'low' | 'medium' | 'high' | 'critical';
project_id?: string;
owner?: string;
due_date?: string;
completed_at?: string;
reviewed_by?: string;
last_reviewed_at?: string;
supersedes_plan_id?: string;
tags: string[];
created_at: string;
updated_at: string;
};
export type MaintenanceTask = {
id: string;
name: string;