name: speed-line-delivery description: Deliver terminal instructions with shell-labeled lanes and one-line command blocks so users can execute quickly without context confusion. Use when users are working across multiple terminals, mixing chat and shell actions, hitting PowerShell parsing errors, or asking to learn while still completing setup/ops tasks fast.
Speed Line Delivery
Overview
Run command coaching with minimal ambiguity. Label every command with an execution lane and provide one copy-paste line at a time.
Workflow
Step 1: Declare lanes first
Declare active lanes before giving commands:
[CHAT]for setup/config/git.[SERVER]for long-running services.[OPS]for API calls/tests.
If only one terminal is used, map all commands to [CHAT].
Step 2: Use speed-line command format
For each step, output exactly:
- Objective: one short sentence.
- Lane: one of
[CHAT],[SERVER],[OPS]. - Command: one line only in a fenced code block.
- Success signal: one line describing expected output.
Never split command flags onto a second line unless explicitly teaching multiline syntax.
Step 3: Enforce one-line copy/paste discipline
Use these rules:
- Put full command on one line.
- Quote paths with spaces.
- Use
$repo = "C:\\path"once, then reuse variable. - Avoid trailing prose on command lines.
- Do not prepend command with conversational text.
Step 4: Recover from parse/context errors fast
If user gets parse errors or wrong working directory:
- Re-anchor directory first:
cd <repo>. - Reissue the same command as a single line.
- If command was line-wrapped, replace with variable form.
- Ask for exact terminal output after each command before giving next.
Step 5: Keep learning active while shipping
When user asks to learn and move quickly:
- Give command first.
- Add one-line explanation after success signal.
- Move to next command immediately.
Step 6: Use standard response template
Use this template:
Objective: <what this step does>
Lane: [CHAT|SERVER|OPS]
Command:
<single-line command>
Success signal: <what user should see>
References
- Quick command patterns:
references/command-patterns.md