- 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
977 B
TypeScript
28 lines
977 B
TypeScript
import { scenario as simpleQuery } from './simple-query';
|
|
import { scenario as searchEmbeddings } from './search-embeddings';
|
|
import { scenario as createNode } from './create-node';
|
|
import { scenario as hardModeQuery } from './hard-mode-query';
|
|
import { scenario as updateNode } from './update-node';
|
|
import { scenario as createEdge } from './create-edge';
|
|
import { scenario as queryDimensions } from './query-dimensions';
|
|
import { scenario as getDimension } from './get-dimension';
|
|
import { scenario as dimensionLifecycle } from './dimension-lifecycle';
|
|
import { scenario as youtubeExtract } from './youtube-extract';
|
|
import { scenario as websiteExtract } from './website-extract';
|
|
import { scenario as paperExtract } from './paper-extract';
|
|
|
|
export const scenarios = [
|
|
simpleQuery,
|
|
searchEmbeddings,
|
|
createNode,
|
|
updateNode,
|
|
createEdge,
|
|
queryDimensions,
|
|
getDimension,
|
|
dimensionLifecycle,
|
|
hardModeQuery,
|
|
youtubeExtract,
|
|
websiteExtract,
|
|
paperExtract,
|
|
];
|