@agentforge-ai/cli 0.4.0 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/default/.env.example +11 -0
- package/dist/default/dashboard/app/components/DashboardLayout.tsx +245 -0
- package/dist/default/dashboard/app/components/ui/badge.tsx +26 -0
- package/dist/default/dashboard/app/components/ui/button.tsx +41 -0
- package/dist/default/dashboard/app/components/ui/card.tsx +44 -0
- package/dist/default/dashboard/app/components/ui/dialog.tsx +66 -0
- package/dist/default/dashboard/app/components/ui/input.tsx +21 -0
- package/dist/default/dashboard/app/components/ui/label.tsx +18 -0
- package/dist/default/dashboard/app/components/ui/select.tsx +75 -0
- package/dist/default/dashboard/app/components/ui/sheet.tsx +73 -0
- package/dist/default/dashboard/app/components/ui/switch.tsx +34 -0
- package/dist/default/dashboard/app/components/ui/table.tsx +60 -0
- package/dist/default/dashboard/app/components/ui/tabs.tsx +50 -0
- package/dist/default/dashboard/app/components/ui/tooltip.tsx +23 -0
- package/dist/default/dashboard/app/lib/utils.ts +6 -0
- package/dist/default/dashboard/app/main.tsx +35 -0
- package/dist/default/dashboard/app/routeTree.gen.ts +352 -0
- package/dist/default/dashboard/app/routes/__root.tsx +10 -0
- package/dist/default/dashboard/app/routes/agents.tsx +255 -0
- package/dist/default/dashboard/app/routes/chat.tsx +427 -0
- package/dist/default/dashboard/app/routes/connections.tsx +413 -0
- package/dist/default/dashboard/app/routes/cron.tsx +322 -0
- package/dist/default/dashboard/app/routes/files.tsx +203 -0
- package/dist/default/dashboard/app/routes/index.tsx +141 -0
- package/dist/default/dashboard/app/routes/projects.tsx +254 -0
- package/dist/default/dashboard/app/routes/sessions.tsx +272 -0
- package/dist/default/dashboard/app/routes/settings.tsx +583 -0
- package/dist/default/dashboard/app/routes/skills.tsx +252 -0
- package/dist/default/dashboard/app/routes/usage.tsx +181 -0
- package/dist/default/dashboard/app/styles/globals.css +93 -0
- package/dist/default/dashboard/index.html +13 -0
- package/dist/default/dashboard/package.json +37 -0
- package/dist/default/dashboard/postcss.config.js +6 -0
- package/dist/default/dashboard/tailwind.config.js +50 -0
- package/dist/default/dashboard/tsconfig.json +24 -0
- package/dist/default/dashboard/vite.config.ts +16 -0
- package/dist/default/package.json +5 -2
- package/dist/default/src/agent.ts +42 -2
- package/dist/index.js +135 -22
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/default/.env.example +11 -0
- package/templates/default/dashboard/app/components/DashboardLayout.tsx +245 -0
- package/templates/default/dashboard/app/components/ui/badge.tsx +26 -0
- package/templates/default/dashboard/app/components/ui/button.tsx +41 -0
- package/templates/default/dashboard/app/components/ui/card.tsx +44 -0
- package/templates/default/dashboard/app/components/ui/dialog.tsx +66 -0
- package/templates/default/dashboard/app/components/ui/input.tsx +21 -0
- package/templates/default/dashboard/app/components/ui/label.tsx +18 -0
- package/templates/default/dashboard/app/components/ui/select.tsx +75 -0
- package/templates/default/dashboard/app/components/ui/sheet.tsx +73 -0
- package/templates/default/dashboard/app/components/ui/switch.tsx +34 -0
- package/templates/default/dashboard/app/components/ui/table.tsx +60 -0
- package/templates/default/dashboard/app/components/ui/tabs.tsx +50 -0
- package/templates/default/dashboard/app/components/ui/tooltip.tsx +23 -0
- package/templates/default/dashboard/app/lib/utils.ts +6 -0
- package/templates/default/dashboard/app/main.tsx +35 -0
- package/templates/default/dashboard/app/routeTree.gen.ts +352 -0
- package/templates/default/dashboard/app/routes/__root.tsx +10 -0
- package/templates/default/dashboard/app/routes/agents.tsx +255 -0
- package/templates/default/dashboard/app/routes/chat.tsx +427 -0
- package/templates/default/dashboard/app/routes/connections.tsx +413 -0
- package/templates/default/dashboard/app/routes/cron.tsx +322 -0
- package/templates/default/dashboard/app/routes/files.tsx +203 -0
- package/templates/default/dashboard/app/routes/index.tsx +141 -0
- package/templates/default/dashboard/app/routes/projects.tsx +254 -0
- package/templates/default/dashboard/app/routes/sessions.tsx +272 -0
- package/templates/default/dashboard/app/routes/settings.tsx +583 -0
- package/templates/default/dashboard/app/routes/skills.tsx +252 -0
- package/templates/default/dashboard/app/routes/usage.tsx +181 -0
- package/templates/default/dashboard/app/styles/globals.css +93 -0
- package/templates/default/dashboard/index.html +13 -0
- package/templates/default/dashboard/package.json +37 -0
- package/templates/default/dashboard/postcss.config.js +6 -0
- package/templates/default/dashboard/tailwind.config.js +50 -0
- package/templates/default/dashboard/tsconfig.json +24 -0
- package/templates/default/dashboard/vite.config.ts +16 -0
- package/templates/default/package.json +5 -2
- package/templates/default/src/agent.ts +42 -2
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { cn } from "../../lib/utils";
|
|
3
|
+
|
|
4
|
+
export interface SwitchProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
5
|
+
checked?: boolean;
|
|
6
|
+
onCheckedChange?: (checked: boolean) => void;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export const Switch = React.forwardRef<HTMLButtonElement, SwitchProps>(
|
|
10
|
+
({ className, checked = false, onCheckedChange, ...props }, ref) => {
|
|
11
|
+
return (
|
|
12
|
+
<button
|
|
13
|
+
ref={ref}
|
|
14
|
+
role="switch"
|
|
15
|
+
aria-checked={checked}
|
|
16
|
+
onClick={() => onCheckedChange?.(!checked)}
|
|
17
|
+
className={cn(
|
|
18
|
+
"peer inline-flex h-6 w-11 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed disabled:opacity-50",
|
|
19
|
+
checked ? "bg-primary" : "bg-input",
|
|
20
|
+
className
|
|
21
|
+
)}
|
|
22
|
+
{...props}
|
|
23
|
+
>
|
|
24
|
+
<span
|
|
25
|
+
className={cn(
|
|
26
|
+
"pointer-events-none block h-5 w-5 rounded-full bg-background shadow-lg ring-0 transition-transform",
|
|
27
|
+
checked ? "translate-x-5" : "translate-x-0"
|
|
28
|
+
)}
|
|
29
|
+
/>
|
|
30
|
+
</button>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
);
|
|
34
|
+
Switch.displayName = "Switch";
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { cn } from "../../lib/utils";
|
|
3
|
+
|
|
4
|
+
export const Table = React.forwardRef<HTMLTableElement, React.HTMLAttributes<HTMLTableElement>>(
|
|
5
|
+
({ className, ...props }, ref) => (
|
|
6
|
+
<div className="relative w-full overflow-auto">
|
|
7
|
+
<table ref={ref} className={cn("w-full caption-bottom text-sm", className)} {...props} />
|
|
8
|
+
</div>
|
|
9
|
+
)
|
|
10
|
+
);
|
|
11
|
+
Table.displayName = "Table";
|
|
12
|
+
|
|
13
|
+
export const TableHeader = React.forwardRef<HTMLTableSectionElement, React.HTMLAttributes<HTMLTableSectionElement>>(
|
|
14
|
+
({ className, ...props }, ref) => (
|
|
15
|
+
<thead ref={ref} className={cn("[&_tr]:border-b", className)} {...props} />
|
|
16
|
+
)
|
|
17
|
+
);
|
|
18
|
+
TableHeader.displayName = "TableHeader";
|
|
19
|
+
|
|
20
|
+
export const TableBody = React.forwardRef<HTMLTableSectionElement, React.HTMLAttributes<HTMLTableSectionElement>>(
|
|
21
|
+
({ className, ...props }, ref) => (
|
|
22
|
+
<tbody ref={ref} className={cn("[&_tr:last-child]:border-0", className)} {...props} />
|
|
23
|
+
)
|
|
24
|
+
);
|
|
25
|
+
TableBody.displayName = "TableBody";
|
|
26
|
+
|
|
27
|
+
export const TableFooter = React.forwardRef<HTMLTableSectionElement, React.HTMLAttributes<HTMLTableSectionElement>>(
|
|
28
|
+
({ className, ...props }, ref) => (
|
|
29
|
+
<tfoot ref={ref} className={cn("border-t bg-muted/50 font-medium [&>tr]:last:border-b-0", className)} {...props} />
|
|
30
|
+
)
|
|
31
|
+
);
|
|
32
|
+
TableFooter.displayName = "TableFooter";
|
|
33
|
+
|
|
34
|
+
export const TableRow = React.forwardRef<HTMLTableRowElement, React.HTMLAttributes<HTMLTableRowElement>>(
|
|
35
|
+
({ className, ...props }, ref) => (
|
|
36
|
+
<tr ref={ref} className={cn("border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted", className)} {...props} />
|
|
37
|
+
)
|
|
38
|
+
);
|
|
39
|
+
TableRow.displayName = "TableRow";
|
|
40
|
+
|
|
41
|
+
export const TableHead = React.forwardRef<HTMLTableCellElement, React.ThHTMLAttributes<HTMLTableCellElement>>(
|
|
42
|
+
({ className, ...props }, ref) => (
|
|
43
|
+
<th ref={ref} className={cn("h-12 px-4 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0", className)} {...props} />
|
|
44
|
+
)
|
|
45
|
+
);
|
|
46
|
+
TableHead.displayName = "TableHead";
|
|
47
|
+
|
|
48
|
+
export const TableCell = React.forwardRef<HTMLTableCellElement, React.TdHTMLAttributes<HTMLTableCellElement>>(
|
|
49
|
+
({ className, ...props }, ref) => (
|
|
50
|
+
<td ref={ref} className={cn("p-4 align-middle [&:has([role=checkbox])]:pr-0", className)} {...props} />
|
|
51
|
+
)
|
|
52
|
+
);
|
|
53
|
+
TableCell.displayName = "TableCell";
|
|
54
|
+
|
|
55
|
+
export const TableCaption = React.forwardRef<HTMLTableCaptionElement, React.HTMLAttributes<HTMLTableCaptionElement>>(
|
|
56
|
+
({ className, ...props }, ref) => (
|
|
57
|
+
<caption ref={ref} className={cn("mt-4 text-sm text-muted-foreground", className)} {...props} />
|
|
58
|
+
)
|
|
59
|
+
);
|
|
60
|
+
TableCaption.displayName = "TableCaption";
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import * as TabsPrimitive from "@radix-ui/react-tabs";
|
|
3
|
+
import { cn } from "../../lib/utils";
|
|
4
|
+
|
|
5
|
+
export const Tabs = TabsPrimitive.Root;
|
|
6
|
+
|
|
7
|
+
export const TabsList = React.forwardRef<
|
|
8
|
+
React.ElementRef<typeof TabsPrimitive.List>,
|
|
9
|
+
React.ComponentPropsWithoutRef<typeof TabsPrimitive.List>
|
|
10
|
+
>(({ className, ...props }, ref) => (
|
|
11
|
+
<TabsPrimitive.List
|
|
12
|
+
ref={ref}
|
|
13
|
+
className={cn(
|
|
14
|
+
"inline-flex h-10 items-center justify-center rounded-md bg-muted p-1 text-muted-foreground",
|
|
15
|
+
className
|
|
16
|
+
)}
|
|
17
|
+
{...props}
|
|
18
|
+
/>
|
|
19
|
+
));
|
|
20
|
+
TabsList.displayName = "TabsList";
|
|
21
|
+
|
|
22
|
+
export const TabsTrigger = React.forwardRef<
|
|
23
|
+
React.ElementRef<typeof TabsPrimitive.Trigger>,
|
|
24
|
+
React.ComponentPropsWithoutRef<typeof TabsPrimitive.Trigger>
|
|
25
|
+
>(({ className, ...props }, ref) => (
|
|
26
|
+
<TabsPrimitive.Trigger
|
|
27
|
+
ref={ref}
|
|
28
|
+
className={cn(
|
|
29
|
+
"inline-flex items-center justify-center whitespace-nowrap rounded-sm px-3 py-1.5 text-sm font-medium ring-offset-background transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-background data-[state=active]:text-foreground data-[state=active]:shadow-sm",
|
|
30
|
+
className
|
|
31
|
+
)}
|
|
32
|
+
{...props}
|
|
33
|
+
/>
|
|
34
|
+
));
|
|
35
|
+
TabsTrigger.displayName = "TabsTrigger";
|
|
36
|
+
|
|
37
|
+
export const TabsContent = React.forwardRef<
|
|
38
|
+
React.ElementRef<typeof TabsPrimitive.Content>,
|
|
39
|
+
React.ComponentPropsWithoutRef<typeof TabsPrimitive.Content>
|
|
40
|
+
>(({ className, ...props }, ref) => (
|
|
41
|
+
<TabsPrimitive.Content
|
|
42
|
+
ref={ref}
|
|
43
|
+
className={cn(
|
|
44
|
+
"mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",
|
|
45
|
+
className
|
|
46
|
+
)}
|
|
47
|
+
{...props}
|
|
48
|
+
/>
|
|
49
|
+
));
|
|
50
|
+
TabsContent.displayName = "TabsContent";
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
|
3
|
+
import { cn } from "../../lib/utils";
|
|
4
|
+
|
|
5
|
+
export const TooltipProvider = TooltipPrimitive.Provider;
|
|
6
|
+
export const Tooltip = TooltipPrimitive.Root;
|
|
7
|
+
export const TooltipTrigger = TooltipPrimitive.Trigger;
|
|
8
|
+
|
|
9
|
+
export const TooltipContent = React.forwardRef<
|
|
10
|
+
React.ElementRef<typeof TooltipPrimitive.Content>,
|
|
11
|
+
React.ComponentPropsWithoutRef<typeof TooltipPrimitive.Content>
|
|
12
|
+
>(({ className, sideOffset = 4, ...props }, ref) => (
|
|
13
|
+
<TooltipPrimitive.Content
|
|
14
|
+
ref={ref}
|
|
15
|
+
sideOffset={sideOffset}
|
|
16
|
+
className={cn(
|
|
17
|
+
"z-50 overflow-hidden rounded-md border bg-popover px-3 py-1.5 text-sm text-popover-foreground shadow-md animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
|
|
18
|
+
className
|
|
19
|
+
)}
|
|
20
|
+
{...props}
|
|
21
|
+
/>
|
|
22
|
+
));
|
|
23
|
+
TooltipContent.displayName = "TooltipContent";
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import ReactDOM from "react-dom/client";
|
|
3
|
+
import { RouterProvider, createRouter } from "@tanstack/react-router";
|
|
4
|
+
import { ConvexProvider, ConvexReactClient } from "convex/react";
|
|
5
|
+
import { routeTree } from "./routeTree.gen";
|
|
6
|
+
import "./styles/globals.css";
|
|
7
|
+
|
|
8
|
+
// Create router
|
|
9
|
+
const router = createRouter({ routeTree });
|
|
10
|
+
|
|
11
|
+
// Type safety
|
|
12
|
+
declare module "@tanstack/react-router" {
|
|
13
|
+
interface Register {
|
|
14
|
+
router: typeof router;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
// Initialize Convex client
|
|
19
|
+
const convexUrl =
|
|
20
|
+
(import.meta as any).env?.VITE_CONVEX_URL ||
|
|
21
|
+
"https://hip-cardinal-943.convex.cloud";
|
|
22
|
+
const convex = new ConvexReactClient(convexUrl);
|
|
23
|
+
|
|
24
|
+
// Render
|
|
25
|
+
const rootElement = document.getElementById("root")!;
|
|
26
|
+
if (!rootElement.innerHTML) {
|
|
27
|
+
const root = ReactDOM.createRoot(rootElement);
|
|
28
|
+
root.render(
|
|
29
|
+
<React.StrictMode>
|
|
30
|
+
<ConvexProvider client={convex}>
|
|
31
|
+
<RouterProvider router={router} />
|
|
32
|
+
</ConvexProvider>
|
|
33
|
+
</React.StrictMode>
|
|
34
|
+
);
|
|
35
|
+
}
|
|
@@ -0,0 +1,352 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
|
|
3
|
+
// @ts-nocheck
|
|
4
|
+
|
|
5
|
+
// noinspection JSUnusedGlobalSymbols
|
|
6
|
+
|
|
7
|
+
// This file was automatically generated by TanStack Router.
|
|
8
|
+
// You should NOT make any changes in this file as it will be overwritten.
|
|
9
|
+
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
|
|
10
|
+
|
|
11
|
+
// Import Routes
|
|
12
|
+
|
|
13
|
+
import { Route as rootRoute } from './routes/__root'
|
|
14
|
+
import { Route as UsageImport } from './routes/usage'
|
|
15
|
+
import { Route as SkillsImport } from './routes/skills'
|
|
16
|
+
import { Route as SettingsImport } from './routes/settings'
|
|
17
|
+
import { Route as SessionsImport } from './routes/sessions'
|
|
18
|
+
import { Route as ProjectsImport } from './routes/projects'
|
|
19
|
+
import { Route as FilesImport } from './routes/files'
|
|
20
|
+
import { Route as CronImport } from './routes/cron'
|
|
21
|
+
import { Route as ConnectionsImport } from './routes/connections'
|
|
22
|
+
import { Route as ChatImport } from './routes/chat'
|
|
23
|
+
import { Route as AgentsImport } from './routes/agents'
|
|
24
|
+
import { Route as IndexImport } from './routes/index'
|
|
25
|
+
|
|
26
|
+
// Create/Update Routes
|
|
27
|
+
|
|
28
|
+
const UsageRoute = UsageImport.update({
|
|
29
|
+
id: '/usage',
|
|
30
|
+
path: '/usage',
|
|
31
|
+
getParentRoute: () => rootRoute,
|
|
32
|
+
} as any)
|
|
33
|
+
|
|
34
|
+
const SkillsRoute = SkillsImport.update({
|
|
35
|
+
id: '/skills',
|
|
36
|
+
path: '/skills',
|
|
37
|
+
getParentRoute: () => rootRoute,
|
|
38
|
+
} as any)
|
|
39
|
+
|
|
40
|
+
const SettingsRoute = SettingsImport.update({
|
|
41
|
+
id: '/settings',
|
|
42
|
+
path: '/settings',
|
|
43
|
+
getParentRoute: () => rootRoute,
|
|
44
|
+
} as any)
|
|
45
|
+
|
|
46
|
+
const SessionsRoute = SessionsImport.update({
|
|
47
|
+
id: '/sessions',
|
|
48
|
+
path: '/sessions',
|
|
49
|
+
getParentRoute: () => rootRoute,
|
|
50
|
+
} as any)
|
|
51
|
+
|
|
52
|
+
const ProjectsRoute = ProjectsImport.update({
|
|
53
|
+
id: '/projects',
|
|
54
|
+
path: '/projects',
|
|
55
|
+
getParentRoute: () => rootRoute,
|
|
56
|
+
} as any)
|
|
57
|
+
|
|
58
|
+
const FilesRoute = FilesImport.update({
|
|
59
|
+
id: '/files',
|
|
60
|
+
path: '/files',
|
|
61
|
+
getParentRoute: () => rootRoute,
|
|
62
|
+
} as any)
|
|
63
|
+
|
|
64
|
+
const CronRoute = CronImport.update({
|
|
65
|
+
id: '/cron',
|
|
66
|
+
path: '/cron',
|
|
67
|
+
getParentRoute: () => rootRoute,
|
|
68
|
+
} as any)
|
|
69
|
+
|
|
70
|
+
const ConnectionsRoute = ConnectionsImport.update({
|
|
71
|
+
id: '/connections',
|
|
72
|
+
path: '/connections',
|
|
73
|
+
getParentRoute: () => rootRoute,
|
|
74
|
+
} as any)
|
|
75
|
+
|
|
76
|
+
const ChatRoute = ChatImport.update({
|
|
77
|
+
id: '/chat',
|
|
78
|
+
path: '/chat',
|
|
79
|
+
getParentRoute: () => rootRoute,
|
|
80
|
+
} as any)
|
|
81
|
+
|
|
82
|
+
const AgentsRoute = AgentsImport.update({
|
|
83
|
+
id: '/agents',
|
|
84
|
+
path: '/agents',
|
|
85
|
+
getParentRoute: () => rootRoute,
|
|
86
|
+
} as any)
|
|
87
|
+
|
|
88
|
+
const IndexRoute = IndexImport.update({
|
|
89
|
+
id: '/',
|
|
90
|
+
path: '/',
|
|
91
|
+
getParentRoute: () => rootRoute,
|
|
92
|
+
} as any)
|
|
93
|
+
|
|
94
|
+
// Populate the FileRoutesByPath interface
|
|
95
|
+
|
|
96
|
+
declare module '@tanstack/react-router' {
|
|
97
|
+
interface FileRoutesByPath {
|
|
98
|
+
'/': {
|
|
99
|
+
id: '/'
|
|
100
|
+
path: '/'
|
|
101
|
+
fullPath: '/'
|
|
102
|
+
preLoaderRoute: typeof IndexImport
|
|
103
|
+
parentRoute: typeof rootRoute
|
|
104
|
+
}
|
|
105
|
+
'/agents': {
|
|
106
|
+
id: '/agents'
|
|
107
|
+
path: '/agents'
|
|
108
|
+
fullPath: '/agents'
|
|
109
|
+
preLoaderRoute: typeof AgentsImport
|
|
110
|
+
parentRoute: typeof rootRoute
|
|
111
|
+
}
|
|
112
|
+
'/chat': {
|
|
113
|
+
id: '/chat'
|
|
114
|
+
path: '/chat'
|
|
115
|
+
fullPath: '/chat'
|
|
116
|
+
preLoaderRoute: typeof ChatImport
|
|
117
|
+
parentRoute: typeof rootRoute
|
|
118
|
+
}
|
|
119
|
+
'/connections': {
|
|
120
|
+
id: '/connections'
|
|
121
|
+
path: '/connections'
|
|
122
|
+
fullPath: '/connections'
|
|
123
|
+
preLoaderRoute: typeof ConnectionsImport
|
|
124
|
+
parentRoute: typeof rootRoute
|
|
125
|
+
}
|
|
126
|
+
'/cron': {
|
|
127
|
+
id: '/cron'
|
|
128
|
+
path: '/cron'
|
|
129
|
+
fullPath: '/cron'
|
|
130
|
+
preLoaderRoute: typeof CronImport
|
|
131
|
+
parentRoute: typeof rootRoute
|
|
132
|
+
}
|
|
133
|
+
'/files': {
|
|
134
|
+
id: '/files'
|
|
135
|
+
path: '/files'
|
|
136
|
+
fullPath: '/files'
|
|
137
|
+
preLoaderRoute: typeof FilesImport
|
|
138
|
+
parentRoute: typeof rootRoute
|
|
139
|
+
}
|
|
140
|
+
'/projects': {
|
|
141
|
+
id: '/projects'
|
|
142
|
+
path: '/projects'
|
|
143
|
+
fullPath: '/projects'
|
|
144
|
+
preLoaderRoute: typeof ProjectsImport
|
|
145
|
+
parentRoute: typeof rootRoute
|
|
146
|
+
}
|
|
147
|
+
'/sessions': {
|
|
148
|
+
id: '/sessions'
|
|
149
|
+
path: '/sessions'
|
|
150
|
+
fullPath: '/sessions'
|
|
151
|
+
preLoaderRoute: typeof SessionsImport
|
|
152
|
+
parentRoute: typeof rootRoute
|
|
153
|
+
}
|
|
154
|
+
'/settings': {
|
|
155
|
+
id: '/settings'
|
|
156
|
+
path: '/settings'
|
|
157
|
+
fullPath: '/settings'
|
|
158
|
+
preLoaderRoute: typeof SettingsImport
|
|
159
|
+
parentRoute: typeof rootRoute
|
|
160
|
+
}
|
|
161
|
+
'/skills': {
|
|
162
|
+
id: '/skills'
|
|
163
|
+
path: '/skills'
|
|
164
|
+
fullPath: '/skills'
|
|
165
|
+
preLoaderRoute: typeof SkillsImport
|
|
166
|
+
parentRoute: typeof rootRoute
|
|
167
|
+
}
|
|
168
|
+
'/usage': {
|
|
169
|
+
id: '/usage'
|
|
170
|
+
path: '/usage'
|
|
171
|
+
fullPath: '/usage'
|
|
172
|
+
preLoaderRoute: typeof UsageImport
|
|
173
|
+
parentRoute: typeof rootRoute
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
// Create and export the route tree
|
|
179
|
+
|
|
180
|
+
export interface FileRoutesByFullPath {
|
|
181
|
+
'/': typeof IndexRoute
|
|
182
|
+
'/agents': typeof AgentsRoute
|
|
183
|
+
'/chat': typeof ChatRoute
|
|
184
|
+
'/connections': typeof ConnectionsRoute
|
|
185
|
+
'/cron': typeof CronRoute
|
|
186
|
+
'/files': typeof FilesRoute
|
|
187
|
+
'/projects': typeof ProjectsRoute
|
|
188
|
+
'/sessions': typeof SessionsRoute
|
|
189
|
+
'/settings': typeof SettingsRoute
|
|
190
|
+
'/skills': typeof SkillsRoute
|
|
191
|
+
'/usage': typeof UsageRoute
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
export interface FileRoutesByTo {
|
|
195
|
+
'/': typeof IndexRoute
|
|
196
|
+
'/agents': typeof AgentsRoute
|
|
197
|
+
'/chat': typeof ChatRoute
|
|
198
|
+
'/connections': typeof ConnectionsRoute
|
|
199
|
+
'/cron': typeof CronRoute
|
|
200
|
+
'/files': typeof FilesRoute
|
|
201
|
+
'/projects': typeof ProjectsRoute
|
|
202
|
+
'/sessions': typeof SessionsRoute
|
|
203
|
+
'/settings': typeof SettingsRoute
|
|
204
|
+
'/skills': typeof SkillsRoute
|
|
205
|
+
'/usage': typeof UsageRoute
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
export interface FileRoutesById {
|
|
209
|
+
__root__: typeof rootRoute
|
|
210
|
+
'/': typeof IndexRoute
|
|
211
|
+
'/agents': typeof AgentsRoute
|
|
212
|
+
'/chat': typeof ChatRoute
|
|
213
|
+
'/connections': typeof ConnectionsRoute
|
|
214
|
+
'/cron': typeof CronRoute
|
|
215
|
+
'/files': typeof FilesRoute
|
|
216
|
+
'/projects': typeof ProjectsRoute
|
|
217
|
+
'/sessions': typeof SessionsRoute
|
|
218
|
+
'/settings': typeof SettingsRoute
|
|
219
|
+
'/skills': typeof SkillsRoute
|
|
220
|
+
'/usage': typeof UsageRoute
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
export interface FileRouteTypes {
|
|
224
|
+
fileRoutesByFullPath: FileRoutesByFullPath
|
|
225
|
+
fullPaths:
|
|
226
|
+
| '/'
|
|
227
|
+
| '/agents'
|
|
228
|
+
| '/chat'
|
|
229
|
+
| '/connections'
|
|
230
|
+
| '/cron'
|
|
231
|
+
| '/files'
|
|
232
|
+
| '/projects'
|
|
233
|
+
| '/sessions'
|
|
234
|
+
| '/settings'
|
|
235
|
+
| '/skills'
|
|
236
|
+
| '/usage'
|
|
237
|
+
fileRoutesByTo: FileRoutesByTo
|
|
238
|
+
to:
|
|
239
|
+
| '/'
|
|
240
|
+
| '/agents'
|
|
241
|
+
| '/chat'
|
|
242
|
+
| '/connections'
|
|
243
|
+
| '/cron'
|
|
244
|
+
| '/files'
|
|
245
|
+
| '/projects'
|
|
246
|
+
| '/sessions'
|
|
247
|
+
| '/settings'
|
|
248
|
+
| '/skills'
|
|
249
|
+
| '/usage'
|
|
250
|
+
id:
|
|
251
|
+
| '__root__'
|
|
252
|
+
| '/'
|
|
253
|
+
| '/agents'
|
|
254
|
+
| '/chat'
|
|
255
|
+
| '/connections'
|
|
256
|
+
| '/cron'
|
|
257
|
+
| '/files'
|
|
258
|
+
| '/projects'
|
|
259
|
+
| '/sessions'
|
|
260
|
+
| '/settings'
|
|
261
|
+
| '/skills'
|
|
262
|
+
| '/usage'
|
|
263
|
+
fileRoutesById: FileRoutesById
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
export interface RootRouteChildren {
|
|
267
|
+
IndexRoute: typeof IndexRoute
|
|
268
|
+
AgentsRoute: typeof AgentsRoute
|
|
269
|
+
ChatRoute: typeof ChatRoute
|
|
270
|
+
ConnectionsRoute: typeof ConnectionsRoute
|
|
271
|
+
CronRoute: typeof CronRoute
|
|
272
|
+
FilesRoute: typeof FilesRoute
|
|
273
|
+
ProjectsRoute: typeof ProjectsRoute
|
|
274
|
+
SessionsRoute: typeof SessionsRoute
|
|
275
|
+
SettingsRoute: typeof SettingsRoute
|
|
276
|
+
SkillsRoute: typeof SkillsRoute
|
|
277
|
+
UsageRoute: typeof UsageRoute
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
const rootRouteChildren: RootRouteChildren = {
|
|
281
|
+
IndexRoute: IndexRoute,
|
|
282
|
+
AgentsRoute: AgentsRoute,
|
|
283
|
+
ChatRoute: ChatRoute,
|
|
284
|
+
ConnectionsRoute: ConnectionsRoute,
|
|
285
|
+
CronRoute: CronRoute,
|
|
286
|
+
FilesRoute: FilesRoute,
|
|
287
|
+
ProjectsRoute: ProjectsRoute,
|
|
288
|
+
SessionsRoute: SessionsRoute,
|
|
289
|
+
SettingsRoute: SettingsRoute,
|
|
290
|
+
SkillsRoute: SkillsRoute,
|
|
291
|
+
UsageRoute: UsageRoute,
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
export const routeTree = rootRoute
|
|
295
|
+
._addFileChildren(rootRouteChildren)
|
|
296
|
+
._addFileTypes<FileRouteTypes>()
|
|
297
|
+
|
|
298
|
+
/* ROUTE_MANIFEST_START
|
|
299
|
+
{
|
|
300
|
+
"routes": {
|
|
301
|
+
"__root__": {
|
|
302
|
+
"filePath": "__root.tsx",
|
|
303
|
+
"children": [
|
|
304
|
+
"/",
|
|
305
|
+
"/agents",
|
|
306
|
+
"/chat",
|
|
307
|
+
"/connections",
|
|
308
|
+
"/cron",
|
|
309
|
+
"/files",
|
|
310
|
+
"/projects",
|
|
311
|
+
"/sessions",
|
|
312
|
+
"/settings",
|
|
313
|
+
"/skills",
|
|
314
|
+
"/usage"
|
|
315
|
+
]
|
|
316
|
+
},
|
|
317
|
+
"/": {
|
|
318
|
+
"filePath": "index.tsx"
|
|
319
|
+
},
|
|
320
|
+
"/agents": {
|
|
321
|
+
"filePath": "agents.tsx"
|
|
322
|
+
},
|
|
323
|
+
"/chat": {
|
|
324
|
+
"filePath": "chat.tsx"
|
|
325
|
+
},
|
|
326
|
+
"/connections": {
|
|
327
|
+
"filePath": "connections.tsx"
|
|
328
|
+
},
|
|
329
|
+
"/cron": {
|
|
330
|
+
"filePath": "cron.tsx"
|
|
331
|
+
},
|
|
332
|
+
"/files": {
|
|
333
|
+
"filePath": "files.tsx"
|
|
334
|
+
},
|
|
335
|
+
"/projects": {
|
|
336
|
+
"filePath": "projects.tsx"
|
|
337
|
+
},
|
|
338
|
+
"/sessions": {
|
|
339
|
+
"filePath": "sessions.tsx"
|
|
340
|
+
},
|
|
341
|
+
"/settings": {
|
|
342
|
+
"filePath": "settings.tsx"
|
|
343
|
+
},
|
|
344
|
+
"/skills": {
|
|
345
|
+
"filePath": "skills.tsx"
|
|
346
|
+
},
|
|
347
|
+
"/usage": {
|
|
348
|
+
"filePath": "usage.tsx"
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
ROUTE_MANIFEST_END */
|