Stats
Actions
Tags
From tachikoma
Use when the user asks to run Cline CLI in non-interactive mode or references Cline for AI-assisted coding or task-based development.
How this skill is triggered — by the user, by Claude, or both
Slash command
/tachikoma:cline-cliThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
1. Verify installation: `command -v cline`
command -v clineAskUserQuestion before using -y, --yolo or --auto-approve-all.-m, --model <model> - Model to use for the task-p, --plan - Run in plan mode (read-only)-a, --act - Run in act mode-y, --yolo - Enable yolo mode (auto-approve actions)--auto-approve-all - Enable auto-approve all actions--reasoning-effort <none|low|medium|high|xhigh> - Reasoning effort-c, --cwd <path> - Working directory--continue - Resume the most recent task-T, --taskId <id> - Resume an existing task by ID2>/dev/null to all cline commands to suppress stderr noise. Only show stderr if the user explicitly requests it or if debugging is needed.| Use case | Command pattern |
|---|---|
| Run task directly | cline "your prompt" 2>/dev/null |
| Plan mode only (read-only) | cline -p "your prompt" 2>/dev/null |
| Act mode | cline -a "your prompt" 2>/dev/null |
| Yolo mode (auto-approve) | cline -y "prompt" 2>/dev/null |
| Continue most recent task | cline --continue 2>/dev/null |
| Resume specific task | cline --taskId <id> 2>/dev/null |
| List task history | cline history |
| Use specific model | cline -m <model> "prompt" 2>/dev/null |
| Mode | Description | Use Case |
|---|---|---|
-p, --plan | Read-only, no changes | Planning, analysis |
-a, --act | Act mode | Making changes |
-y, --yolo | Auto-approve all actions | Full access, no confirmation |
# Run a task directly
cline "Fix the login bug" 2>/dev/null
# Plan only mode
cline -p "Design the new API endpoint" 2>/dev/null
# Yolo mode with auto-approve
cline -y "Refactor the utils module" 2>/dev/null
# Continue most recent task
cline --continue 2>/dev/null
# If redirection fails, wrap in bash -lc
bash -lc 'cline "prompt" 2>/dev/null'
cline command, immediately use AskUserQuestion to confirm next steps, collect clarifications, or decide whether to resume with --continue.cline --version or a cline command exits non-zero; request direction before retrying.--yolo, --auto-approve-all) ask the user for permission using AskUserQuestion unless it was already given.AskUserQuestion.Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub ansatzx/cyberbrain --plugin tachikoma