- app/agents/: new Agents page showing per-agent status + workspace files - app/knowledge/: Knowledge base viewer - app/api/tiger/: proxy routes for cron, file-tasks, file-projects, keys, agents - components/agent-strip.tsx: agent status bar for dashboard home - components/command-bar.tsx: command palette - components/digest-card.tsx + schedule-card.tsx: weekly digest + cron schedule - components/status-footer.tsx: system status footer - tasks page: dual-source (TASKS.md JSON block + SQLite) with fallback - projects page: PROJECTS.md reader with kanban board integration
11 lines
364 B
TypeScript
11 lines
364 B
TypeScript
import { NextResponse } from 'next/server';
|
|
import { bridgeGet } from '@/lib/bridge';
|
|
export const dynamic = 'force-dynamic';
|
|
export async function GET() {
|
|
try {
|
|
const result = await bridgeGet('/tiger/cron');
|
|
return NextResponse.json(result);
|
|
} catch (err: any) {
|
|
return NextResponse.json({ ok: false, error: err.message }, { status: 502 });
|
|
}
|
|
}
|