feat(lib): bundle MCP servers from .common/lib into factory/lib/
Copies source (no node_modules, dist, .tasks, .wiki, __pycache__) for: - projects-meta-mcp v2.25.0 (TypeScript/Node) - wiki-graph v0.3.1 (TypeScript/Node) - interns-mcp v0.3.3 (Python/FastMCP) .gitignore: exclude lib build artefacts (node_modules, dist, .venv, __pycache__, *.pyc) bootstrap.ps1: add MCP build step — npm install+build for TS servers, venv+pip for Python Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
25
lib/wiki-graph/src/index.ts
Normal file
25
lib/wiki-graph/src/index.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
export { extractLinks, type WikiLink } from './parser.js';
|
||||
export {
|
||||
buildSlugIndex,
|
||||
resolveTarget,
|
||||
type FileRef,
|
||||
type ResolveResult,
|
||||
type SlugIndex,
|
||||
} from './resolver.js';
|
||||
export {
|
||||
listPages,
|
||||
readPageContent,
|
||||
DEFAULT_EXCLUDE,
|
||||
type PageFile,
|
||||
type ListOptions,
|
||||
} from './corpus.js';
|
||||
export {
|
||||
WikiGraph,
|
||||
buildGraph,
|
||||
buildGraphFromParsed,
|
||||
buildGraphFromDir,
|
||||
type ParsedPage,
|
||||
type GraphStats,
|
||||
type OrphanReport,
|
||||
} from './graph.js';
|
||||
export { GraphCache } from './cache.js';
|
||||
Reference in New Issue
Block a user