From e2f98cf600c3816c2f80b9f04a38eb2caa8f4a04 Mon Sep 17 00:00:00 2001 From: alib8b8 Date: Tue, 7 Jul 2026 15:41:17 +0000 Subject: [PATCH] feat: add llm-box plugin Terminal-first workflow automation engine for Claude Code. Features: - Generate YAML workflows from plain English descriptions - 20+ built-in nodes (fetch_url, http_request, execute, json_parse, etc.) - 15+ LLM providers (Ollama, DeepSeek, OpenAI-compatible, and more) - Built-in MCP server mode - 3 slash commands: /create-workflow, /run-workflow, /list-nodes - 2 skills: workflow + setup Security: - SSRF protection on URL fetching - Path traversal protection on file operations - Command injection prevention - Safe mode available --- plugins/llm-box.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 plugins/llm-box.json diff --git a/plugins/llm-box.json b/plugins/llm-box.json new file mode 100644 index 0000000..5102d9d --- /dev/null +++ b/plugins/llm-box.json @@ -0,0 +1,25 @@ +{ + "name": "llm-box", + "source": { + "source": "git", + "url": "https://github.com/alib8b8/llm-box.git" + }, + "description": "Terminal-first workflow automation engine. Generate and execute YAML workflows from plain English descriptions. Features 20+ built-in nodes, 15+ LLM providers, and MCP server mode.", + "version": "0.3.0", + "author": { + "username": "alib8b8", + "name": "alib8b8" + }, + "category": "development", + "tags": [ + "skills", + "commands", + "mcp-servers", + "workflow", + "automation", + "cli", + "yaml", + "llm" + ], + "license": "MIT" +}