Some checks failed
Create Release / release (push) Has been cancelled
- Add CodeMirror editor with syntax highlighting for JavaScript and Python - Add 8 starter templates (4 JS, 4 Python) for common tool patterns - Add inline documentation panel with language-specific guidance - Add tool testing UI to run tools with sample inputs before saving - Add Python tool execution via backend API with 30s timeout - Add POST /api/v1/tools/execute endpoint for backend tool execution - Update Dockerfile to include Python 3 for tool execution - Bump version to 0.4.0
9 lines
277 B
TypeScript
9 lines
277 B
TypeScript
/**
|
|
* Tools components exports
|
|
*/
|
|
|
|
export { default as CodeEditor } from './CodeEditor.svelte';
|
|
export { default as ToolDocs } from './ToolDocs.svelte';
|
|
export { default as ToolEditor } from './ToolEditor.svelte';
|
|
export { default as ToolTester } from './ToolTester.svelte';
|