TubeCLI System Guide — for Claude Code tubecli, community, for Claude Code, ide skills, CLI management, REST API integration, AI agent deployment, skill management, workflow templating

v1.0.0

关于此技能

Perfect for AI Agents needing advanced workflow automation and management capabilities via CLI or REST API. TubeCLI System Guide is a headless CLI system for managing AI agents, skills, and workflows. It simplifies AI agent management and workflow automation for developers.

功能特性

Manage AI agents using CLI commands
Run skills and workflows via REST API
Initialize workspace with default skills and agents
Create and delete AI agents
List and show skills and workflows
Start and status check of API server

# 核心主题

tubecreate tubecreate
[65]
[0]
更新于: 3/30/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
65
Canonical Locale
en
Detected Body Locale
en

Perfect for AI Agents needing advanced workflow automation and management capabilities via CLI or REST API. TubeCLI System Guide is a headless CLI system for managing AI agents, skills, and workflows. It simplifies AI agent management and workflow automation for developers.

核心价值

Empowers agents to manage AI workflows, skills, and agents using a headless CLI system, providing features like workflow templates, node execution, and REST API server integration, all leveraging JSON workflow files and supporting various node types.

适用 Agent 类型

Perfect for AI Agents needing advanced workflow automation and management capabilities via CLI or REST API.

赋予的主要能力 · TubeCLI System Guide

Automating AI workflow execution using JSON files
Managing AI agents and their assigned skills
Debugging workflows through the CLI or REST API interface

! 使用限制与门槛

  • Requires Python environment for installation
  • Needs initialization of the workspace before use
  • Dependent on specific AI models and libraries for node execution

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

评审后的下一步

先决定动作,再继续看上游仓库材料

Killer-Skills 的主价值不应该停在“帮你打开仓库说明”,而是先帮你判断这项技能是否值得安装、是否应该回到可信集合复核,以及是否已经进入工作流落地阶段。

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

TubeCLI System Guide 是什么?

Perfect for AI Agents needing advanced workflow automation and management capabilities via CLI or REST API. TubeCLI System Guide is a headless CLI system for managing AI agents, skills, and workflows. It simplifies AI agent management and workflow automation for developers.

如何安装 TubeCLI System Guide?

运行命令:npx killer-skills add tubecreate/tubecli。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

TubeCLI System Guide 适用于哪些场景?

典型场景包括:Automating AI workflow execution using JSON files、Managing AI agents and their assigned skills、Debugging workflows through the CLI or REST API interface。

TubeCLI System Guide 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

TubeCLI System Guide 有哪些限制?

Requires Python environment for installation;Needs initialization of the workspace before use;Dependent on specific AI models and libraries for node execution。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add tubecreate/tubecli。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    TubeCLI System Guide 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

TubeCLI System Guide

安装 TubeCLI System Guide,这是一款面向AI agent workflows and automation的 AI Agent Skill。查看评审结论、使用场景与安装路径。

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

TubeCLI — AI Agent Operating Guide

1. System Overview

TubeCLI is a headless CLI system for managing AI agents, skills (workflow templates), and workflows. AI agents can use this system via CLI commands or REST API.

Architecture

tubecli (Click CLI)
├── agent  — Manage AI agents (create, list, delete)
├── skill  — Manage & run skills (workflow templates)
├── workflow — Run workflow JSON files
├── api    — Start REST API server
└── init   — Initialize workspace

Key Concepts

  • Agent: An AI entity with name, description, system prompt, persona, and assigned skills
  • Skill: A reusable workflow template (DAG of connected nodes)
  • Workflow: A directed acyclic graph (DAG) of nodes connected by ports
  • Node: An execution unit with typed input/output ports (text, json, file, any)

2. Installation

bash
1cd tubecli 2pip install -e . 3tubecli init

3. CLI Commands

Initialize

bash
1tubecli init # Creates data dirs, installs default skills, creates default agent

Agents

bash
1tubecli agent create "Agent Name" --description "desc" --model "qwen:latest" 2tubecli agent list 3tubecli agent show <agent_id_or_name> 4tubecli agent delete <agent_id>

Skills

bash
1tubecli skill list 2tubecli skill show "AI Summarizer" 3tubecli skill run "AI Summarizer" --input "Text to summarize" 4tubecli skill run "Batch Command Runner"

Workflows

bash
1tubecli workflow list 2tubecli workflow run workflow.json --input "input text"

API Server

bash
1tubecli api start --port 5295 2tubecli api status

4. REST API Reference

Base URL: http://localhost:5295

MethodEndpointDescription
GET/api/v1/healthHealth check
GET/api/v1/agentsList agents
POST/api/v1/agentsCreate agent
GET/api/v1/agents/{id}Get agent
PUT/api/v1/agents/{id}Update agent
DELETE/api/v1/agents/{id}Delete agent
GET/api/v1/skillsList skills
POST/api/v1/skillsCreate skill
DELETE/api/v1/skills/{id}Delete skill
POST/api/v1/workflows/runExecute workflow
GET/api/v1/nodesList node types

5. Workflow JSON Format

json
1{ 2 "name": "My Workflow", 3 "nodes": [ 4 {"id": "input1", "type": "text_input", "config": {"text": "Hello"}}, 5 {"id": "ai1", "type": "ai_node", "config": {"model": "qwen:latest"}}, 6 {"id": "out1", "type": "output", "config": {"print": true}} 7 ], 8 "connections": [ 9 {"from_node_id": "input1", "from_port_id": "content", "to_node_id": "ai1", "to_port_id": "prompt"}, 10 {"from_node_id": "ai1", "from_port_id": "response", "to_node_id": "out1", "to_port_id": "data"} 11 ] 12}

6. Available Node Types

TypeNameInputsOutputsDescription
text_input📝 Text Inputcontent, linesStatic text
loop🔄 Loopitemscurrent_item, index, totalIterate list
python_code🐍 Python Codetext_input, json_inputresultExecute Python
api_request🌐 API Requesturl, bodyresponse, status_codeHTTP request
run_command💻 Run Commandcommandstdout, exit_codeShell command
ai_node🧠 AI Inferenceprompt, contextresponseAI model call
output📤 Outputdatafile_pathDisplay/save results

7. Agent JSON Schema

json
1{ 2 "id": "uuid", 3 "name": "Agent Name", 4 "description": "What this agent does", 5 "system_prompt": "You are...", 6 "allowed_skills": ["skill_id_1", "skill_id_2"], 7 "model": "qwen:latest", 8 "persona": {}, 9 "routine": {}, 10 "cloud_api_keys": {"gemini": "", "openai": "", "claude": "", "deepseek": ""} 11}

8. Creating Custom Skills

To create a custom skill, POST to /api/v1/skills or use the skill manager:

json
1{ 2 "name": "My Custom Skill", 3 "description": "What it does", 4 "skill_type": "Skill", 5 "workflow_data": { 6 "nodes": [...], 7 "connections": [...] 8 } 9}

9. Common Workflow Patterns

Pattern: Input → AI → Output

json
1{ 2 "nodes": [ 3 {"id": "in", "type": "text_input", "config": {"text": "..."}}, 4 {"id": "ai", "type": "ai_node", "config": {}}, 5 {"id": "out", "type": "output", "config": {}} 6 ], 7 "connections": [ 8 {"from_node_id": "in", "from_port_id": "content", "to_node_id": "ai", "to_port_id": "prompt"}, 9 {"from_node_id": "ai", "from_port_id": "response", "to_node_id": "out", "to_port_id": "data"} 10 ] 11}

Pattern: Loop → Command → Output

json
1{ 2 "nodes": [ 3 {"id": "list", "type": "text_input", "config": {"text": "cmd1\ncmd2"}}, 4 {"id": "loop", "type": "loop", "config": {}}, 5 {"id": "exec", "type": "run_command", "config": {}}, 6 {"id": "out", "type": "output", "config": {}} 7 ], 8 "connections": [ 9 {"from_node_id": "list", "from_port_id": "lines", "to_node_id": "loop", "to_port_id": "items"}, 10 {"from_node_id": "loop", "from_port_id": "current_item", "to_node_id": "exec", "to_port_id": "command"}, 11 {"from_node_id": "exec", "from_port_id": "stdout", "to_node_id": "out", "to_port_id": "data"} 12 ] 13}

相关技能

寻找 TubeCLI System Guide 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具