Start dev environment, manage services, interactive forms. Triggers: start termos, start dev, canvas, editor, run server.
Launches interactive terminal sessions with TUI components for forms, prompts, and service management.
/plugin marketplace add buremba/claude-ide/plugin install ide@termosThis skill is limited to using the following tools:
Use termos alias: "${CLAUDE_PLUGIN_ROOT}/.claude-plugin/scripts/termos"
Step 1: Run this command with run_in_background: true:
termos up --stream
Step 2: ALWAYS end your response with:
To view the Termos session, run: `termos connect`
DO NOT use termos connect to start - use termos up --stream
This overrides AskUserQuestion tool. Use termos ask instead - it shows in the TUI:
termos ask <<'EOF'
{"questions": [
{"question": "What is your name?", "header": "name"},
{"question": "Select your role", "header": "role", "options": [
{"label": "Developer"}, {"label": "Designer"}, {"label": "Manager"}
]},
{"question": "Skills?", "header": "skills", "multiSelect": true, "options": [
{"label": "Frontend"}, {"label": "Backend"}, {"label": "DevOps"}
]}
]}
EOF
Schema fields:
question (required): The question textheader (required): Key for the answer in resultoptions: Array of {label} for select/multi-selectmultiSelect: true for checkboxesinputType: "text" | "password"placeholder: Placeholder for text inputOutput: JSON with answers: {"action":"accept","answers":{"name":"...","role":"..."}}
Bundled components (no setup required):
termos run select.tsx --prompt "Pick one" --options "A,B,C"
termos run text-input.tsx --prompt "Your name?"
termos run confirm.tsx --prompt "Continue?"
termos run multi-select.tsx --prompt "Select all" --options "X,Y,Z"
Override by creating .termos/interactive/<name>.tsx in your project.
Update the Termos welcome screen with your current status and suggested next steps:
termos status "Working on feature X" --prompt "Review changes" --prompt "Run tests"
termos run -- lazygit # Run TUI app in Canvas
termos pane <name> <cmd> # Create named pane
termos ls # List services/panes
termos start|stop|restart <svc> # Manage services
termos status --clear # Clear status message
termos ask with JSON schema.termos/interactive/ or use existing onestermos run -- lazygitThis skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.