mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-14 02:42:04 +08:00
feat: Add CodexLens Manager Page with tabbed interface for managing CodexLens features
feat: Implement ConflictTab component to display conflict resolution decisions in session detail feat: Create ImplPlanTab component to show implementation plan with modal viewer in session detail feat: Develop ReviewTab component to display review findings by dimension in session detail test: Add end-to-end tests for CodexLens Manager functionality including navigation, tab switching, and settings validation
This commit is contained in:
@@ -36,6 +36,7 @@ import {
|
||||
PromptHistoryPage,
|
||||
ExplorerPage,
|
||||
GraphExplorerPage,
|
||||
CodexLensManagerPage,
|
||||
} from '@/pages';
|
||||
|
||||
/**
|
||||
@@ -141,6 +142,10 @@ const routes: RouteObject[] = [
|
||||
path: 'settings/rules',
|
||||
element: <RulesManagerPage />,
|
||||
},
|
||||
{
|
||||
path: 'settings/codexlens',
|
||||
element: <CodexLensManagerPage />,
|
||||
},
|
||||
{
|
||||
path: 'help',
|
||||
element: <HelpPage />,
|
||||
@@ -206,6 +211,7 @@ export const ROUTES = {
|
||||
ENDPOINTS: '/settings/endpoints',
|
||||
INSTALLATIONS: '/settings/installations',
|
||||
SETTINGS_RULES: '/settings/rules',
|
||||
CODEXLENS_MANAGER: '/settings/codexlens',
|
||||
HELP: '/help',
|
||||
EXPLORER: '/explorer',
|
||||
GRAPH: '/graph',
|
||||
|
||||
Reference in New Issue
Block a user