- Remove entire workflow system (API routes, services, tools, components) - Add guides system from main ra-h repo (for external agent integration) - Update pane types: 'workflows' → 'guides' throughout - Update LeftToolbar to show guides icon instead of workflows - Update SettingsModal with GuidesViewer tab - Add GuidesPane for browsing guides in main UI - Clean up prompts to remove workflow references - Update tool registry to remove workflow tools - Add gray-matter package for frontmatter parsing Guides are essential for RA-H Light as they help external agents (via MCP) understand the knowledge base context and usage patterns. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
28 lines
793 B
TypeScript
28 lines
793 B
TypeScript
import { NextRequest, NextResponse } from 'next/server';
|
|
import { readGuide } from '@/services/guides/guideService';
|
|
|
|
export const runtime = 'nodejs';
|
|
|
|
export async function GET(
|
|
_request: NextRequest,
|
|
{ params }: { params: Promise<{ name: string }> }
|
|
) {
|
|
try {
|
|
const { name } = await params;
|
|
const guide = readGuide(name);
|
|
if (!guide) {
|
|
return NextResponse.json(
|
|
{ success: false, error: `Guide "${name}" not found` },
|
|
{ status: 404 }
|
|
);
|
|
}
|
|
return NextResponse.json({ success: true, data: guide });
|
|
} catch (error) {
|
|
console.error('[API /guides/[name]] error:', error);
|
|
return NextResponse.json(
|
|
{ success: false, error: error instanceof Error ? error.message : 'Failed to read guide' },
|
|
{ status: 500 }
|
|
);
|
|
}
|
|
}
|