Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

interactive-shell交互式外壳

Agent Skill

interactive-shell 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,505

周安装

64

GitHub Stars

774

下载量

527
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:interactive-shell(交互式外壳)
来源仓库:https://github.com/dicklesworthstone/pi_agent_rust
仓库路径:skills/interactive-shell
安装命令:
npx skills add https://github.com/dicklesworthstone/pi_agent_rust --skill interactive-shell
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dicklesworthstone/pi_agent_rust --skill interactive-shell

简介

用于查找、检索和筛选相关信息。

  • 适合根据关键词、任务场景或来源线索快速定位候选结果。
  • 可结合来源仓库和原始 README 进一步核验具体用法。
  • 安装命令:npx skills add https://github.com/dicklesworthstone/pi_agent_rust --skill interactive-shell。
  • 建议确认权限范围、维护状态及是否会触发联网、命令执行或文件读写。

SKILL.md

Interactive Shell (Skill)

Last verified: 2026-01-18

Foreground vs Background Subagents

Pi has two ways to delegate work to other AI coding agents:

Foreground SubagentsDispatch SubagentsBackground Subagents
Toolinteractive_shellinteractive_shell (dispatch)subagent
VisibilityUser sees overlayUser sees overlay (or headless)Hidden from user
Agent modelPolls for statusNotified on completionFull output captured
Default agentpi (others if user requests)pi (others if user requests)Pi only
User controlCan take over anytimeCan take over anytimeNo intervention
Best forLong tasks needing supervisionFire-and-forget delegationsParallel tasks, structured delegation

Foreground subagents run in an overlay where the user watches (and can intervene). Use interactive_shell with mode: "hands-free" to monitor while receiving periodic updates, or mode: "dispatch" to be notified on completion without polling.

Dispatch subagents also use interactive_shell but with mode: "dispatch". The agent fires the session and moves on. When the session completes, the agent is woken up via triggerTurn with the output in context. Add background: true for headless execution (no overlay).

Background subagents run invisibly via the subagent tool. Pi-only, but captures full output and supports parallel execution.

When to Use Foreground Subagents

Use interactive_shell (foreground) when:

  • The task is long-running and the user should see progress
  • The user might want to intervene or guide the agent
  • You want hands-free monitoring with periodic status updates
  • You need a different agent's capabilities (only if user specifies)

Use subagent (background) when:

  • You need parallel execution of multiple tasks
  • You want full output capture for processing
  • The task is quick and deterministic
  • User doesn't need to see the work happening

Default Agent Choice

Default to pi for foreground subagents unless the user explicitly requests a different agent:

User saysAgent to use
"Run this in hands-free"pi
"Delegate this task"pi
"Use Claude to review this"claude
"Have Gemini analyze this"gemini
"Run aider to fix this"aider

Pi is the default because it's already available, has the same capabilities, and maintains consistency. Only use Claude, Gemini, Codex, or other agents when the user specifically asks for them.

Foreground Subagent Modes

Interactive (default)

User has full control, types directly into the agent.

interactive_shell({ command: 'pi' })

Interactive with Initial Prompt

Agent starts working immediately, user supervises.

interactive_shell({ command: 'pi "Review this codebase for security issues"' })

Dispatch (Fire-and-Forget) - NON-BLOCKING, NO POLLING

Agent fires a session and moves on. Notified automatically on completion via triggerTurn.

// Start session - returns immediately, no polling needed
interactive_shell({
  command: 'pi "Fix all TypeScript errors in src/"',
  mode: "dispatch",
  reason: "Fixing TS errors"
})
// Returns: { sessionId: "calm-reef", mode: "dispatch" }
// → Do other work. When session completes, you receive notification with output.

Dispatch defaults autoExitOnQuiet: true. The agent can still query the sessionId if needed, but doesn't have to.

Background Dispatch (Headless)

No overlay opens. Multiple headless dispatches can run concurrently:

interactive_shell({
  command: 'pi "Fix lint errors"',
  mode: "dispatch",
  background: true
})
// → No overlay. User can /attach to watch. Agent notified on completion.

Hands-Free (Foreground Subagent) - NON-BLOCKING

Agent works autonomously, returns immediately with sessionId. You query for status/output and kill when done.

// 1. Start session - returns immediately
interactive_shell({
  command: 'pi "Fix all TypeScript errors in src/"',
  mode: "hands-free",
  reason: "Fixing TS errors"
})
// Returns: { sessionId: "calm-reef", status: "running" }

// 2. Check status and get new output
interactive_shell({ sessionId: "calm-reef" })
// Returns: { status: "running", output: "...", runtime: 30000 }

// 3. When you see task is complete, kill session
interactive_shell({ sessionId: "calm-reef", kill: true })
// Returns: { status: "killed", output: "final output..." }

This is the primary pattern for foreground subagents - you delegate to pi (or another agent), query for progress, and decide when the task is done.

Hands-Free Workflow

Starting a Session

const result = interactive_shell({
  command: 'codex "Review this codebase"',
  mode: "hands-free"
})
// result.details.sessionId = "calm-reef"
// result.details.status = "running"

The user sees the overlay immediately. You get control back to continue working.

Querying Status

interactive_shell({ sessionId: "calm-reef" })

Returns:

  • status: "running" | "user-takeover" | "exited" | "killed" | "backgrounded"
  • output: Last 20 lines of rendered terminal (clean, no TUI animation noise)
  • runtime: Time elapsed in ms

Rate limited: Queries are limited to once every 60 seconds. If you query too soon, the tool will automatically wait until the limit expires before returning. The user is watching the overlay in real-time - you're just checking in periodically.

Ending a Session

interactive_shell({ sessionId: "calm-reef", kill: true })

Kill when you see the task is complete in the output. Returns final status and output.

Fire-and-Forget Tasks

For single-task delegations where you don't need multi-turn interaction, enable auto-exit so the session kills itself when the agent goes quiet:

interactive_shell({
  command: 'pi "Review this codebase for security issues. Save your findings to /tmp/security-review.md"',
  mode: "hands-free",
  reason: "Security review",
  handsFree: { autoExitOnQuiet: true }
})
// Session auto-kills after ~5s of quiet
// Read results from file:
// read("/tmp/security-review.md")

Instruct subagent to save results to a file since the session closes automatically.

Multi-Turn Sessions (default)

For back-and-forth interaction, leave auto-exit disabled (the default). Query status and kill manually when done:

interactive_shell({
  command: 'cursor-agent -f',
  mode: "hands-free",
  reason: "Interactive refactoring"
})

// Send follow-up prompts
interactive_shell({ sessionId: "calm-reef", input: "Now fix the tests\n" })

// Kill when done
interactive_shell({ sessionId: "calm-reef", kill: true })

Sending Input

interactive_shell({ sessionId: "calm-reef", input: "/help\n" })
interactive_shell({ sessionId: "calm-reef", inputKeys: ["ctrl+c"] })
interactive_shell({ sessionId: "calm-reef", inputPaste: "multi\nline\ncode" })
interactive_shell({ sessionId: "calm-reef", input: "y", inputKeys: ["enter"] })  // combine text + keys

Query Output

Status queries return rendered terminal output (what's actually on screen), not raw stream:

  • Default: 20 lines, 5KB max per query
  • No TUI animation noise (spinners, progress bars, etc.)
  • Configurable via outputLines (max: 200) and outputMaxChars (max: 50KB)
// Get more output when reviewing a session
interactive_shell({ sessionId: "calm-reef", outputLines: 50 })

// Get even more for detailed review
interactive_shell({ sessionId: "calm-reef", outputLines: 100, outputMaxChars: 30000 })

Incremental Reading

Use incremental: true to paginate through output without re-reading:

// First call: get first 50 lines
interactive_shell({ sessionId: "calm-reef", outputLines: 50, incremental: true })
// → { output: "...", hasMore: true }

// Next call: get next 50 lines (server tracks position)
interactive_shell({ sessionId: "calm-reef", outputLines: 50, incremental: true })
// → { output: "...", hasMore: true }

// Keep calling until hasMore: false
interactive_shell({ sessionId: "calm-reef", outputLines: 50, incremental: true })
// → { output: "...", hasMore: false }

The server tracks your read position - just keep calling with incremental: true to get the next chunk.

Reviewing Output

Query sessions to see progress. Increase limits when you need more context:

// Default: last 20 lines
interactive_shell({ sessionId: "calm-reef" })

// Get more lines when you need more context
interactive_shell({ sessionId: "calm-reef", outputLines: 50 })

// Get even more for detailed review
interactive_shell({ sessionId: "calm-reef", outputLines: 100, outputMaxChars: 30000 })

Sending Input to Active Sessions

Use the sessionId from updates to send input to a running hands-free session:

Basic Input

// Send text
interactive_shell({ sessionId: "shell-1", input: "/help\n" })

// Send text with keys
interactive_shell({ sessionId: "shell-1", input: "/model", inputKeys: ["enter"] })

// Navigate menus
interactive_shell({ sessionId: "shell-1", inputKeys: ["down", "down", "enter"] })

// Interrupt
interactive_shell({ sessionId: "shell-1", inputKeys: ["ctrl+c"] })

Named Keys

KeyDescription
up, down, left, rightArrow keys
enter, returnEnter/Return
escape, escEscape
tab, shift+tab (or btab)Tab / Back-tab
backspace, bspaceBackspace
delete, del, dcDelete
insert, icInsert
home, endHome/End
pageup, pgup, ppagePage Up
pagedown, pgdn, npagePage Down
f1-f12Function keys
kp0-kp9, kp/, kp*, kp-, kp+, kp., kpenterKeypad keys
ctrl+c, ctrl+d, ctrl+zControl sequences
ctrl+a through ctrl+zAll control keys

Note: ic/dc, ppage/npage, bspace are tmux-style aliases for compatibility.

Modifier Combinations

Supports ctrl+, alt+, shift+ prefixes (or shorthand c-, m-, s-):

// Cancel
inputKeys: ["ctrl+c"]

// Alt+Tab
inputKeys: ["alt+tab"]

// Ctrl+Alt+Delete
inputKeys: ["ctrl+alt+delete"]

// Shorthand syntax
inputKeys: ["c-c", "m-x", "s-tab"]

Hex Bytes (Advanced)

Send raw escape sequences:

inputHex: ["0x1b", "0x5b", "0x41"]  // ESC[A (up arrow)

Bracketed Paste

Paste multiline text without triggering autocompletion/execution:

inputPaste: "function foo() {\n  return 42;\n}"

Model Selection Example

// Step 1: Open model selector
interactive_shell({ sessionId: "shell-1", input: "/model", inputKeys: ["enter"] })

// Step 2: Filter and select (after ~500ms delay)
interactive_shell({ sessionId: "shell-1", input: "sonnet", inputKeys: ["enter"] })

// Or navigate with arrows:
interactive_shell({ sessionId: "shell-1", inputKeys: ["down", "down", "down", "enter"] })

Context Compaction

interactive_shell({ sessionId: "shell-1", input: "/compact", inputKeys: ["enter"] })

Changing Update Settings

Adjust timing during a session:

// Change max interval (fallback for on-quiet mode)
interactive_shell({ sessionId: "calm-reef", settings: { updateInterval: 120000 } })

// Change quiet threshold (how long to wait after output stops)
interactive_shell({ sessionId: "calm-reef", settings: { quietThreshold: 3000 } })

// Both at once
interactive_shell({ sessionId: "calm-reef", settings: { updateInterval: 30000, quietThreshold: 2000 } })

CLI Quick Reference

AgentInteractiveWith PromptHeadless (bash)Dispatch
claudeclaudeclaude "prompt"claude -p "prompt"mode: "dispatch"
geminigeminigemini -i "prompt"gemini "prompt"mode: "dispatch"
codexcodexcodex "prompt"codex exec "prompt"mode: "dispatch"
agentagentagent "prompt"agent -p "prompt"mode: "dispatch"
pipipi "prompt"pi -p "prompt"mode: "dispatch"

Gemini model: gemini -m gemini-3-flash-preview -i "prompt"

Prompt Packaging Rules

The reason parameter is UI-only - it's shown in the overlay header but NOT passed to the subprocess.

To give the agent an initial prompt, embed it in the command:

// WRONG - agent starts idle, reason is just UI text
interactive_shell({ command: 'claude', reason: 'Review the codebase' })

// RIGHT - agent receives the prompt
interactive_shell({ command: 'claude "Review the codebase"', reason: 'Code review' })

Handoff Options

Transfer (Ctrl+T) - Recommended

When the subagent finishes, the user presses Ctrl+T to transfer output directly to you:

[Subagent finishes work in overlay]
        ↓
[User presses Ctrl+T]
        ↓
[You receive: "Session output transferred (150 lines):

  Completing skill integration...
  Modified files:
  - skills.ts
  - agents/types/..."]

This is the cleanest workflow - the subagent's response becomes your context automatically.

Configuration: transferLines (default: 200), transferMaxChars (default: 20KB)

Tail Preview (default)

Last 30 lines included in tool result. Good for seeing errors/final status.

Snapshot to File

Write full transcript to ~/.pi/agent/cache/interactive-shell/snapshot-*.log:

interactive_shell({
  command: 'claude "Fix bugs"',
  handoffSnapshot: { enabled: true, lines: 200 }
})

Artifact Handoff (for complex tasks)

Instruct the delegated agent to write a handoff file:

Write your findings to .pi/delegation/claude-handoff.md including:
- What you did
- Files changed
- Any errors
- Next steps for the main agent

Safe TUI Capture

Never run TUI agents via bash - they hang even with --help. Use interactive_shell with timeout instead:

interactive_shell({
  command: "pi --help",
  mode: "hands-free",
  timeout: 5000  // Auto-kill after 5 seconds
})

The process is killed after timeout and captured output is returned in the handoff preview. This is useful for:

  • Getting CLI help from TUI applications
  • Capturing output from commands that don't exit cleanly
  • Any TUI command where you need quick output without user interaction

For pi CLI documentation, you can also read directly: /opt/homebrew/lib/node_modules/@mariozechner/pi-coding-agent/README.md

Background Session Management

// Background an active session (close overlay, keep running)
interactive_shell({ sessionId: "calm-reef", background: true })

// List all background sessions
interactive_shell({ listBackground: true })

// Reattach to a background session
interactive_shell({ attach: "calm-reef" })                    // interactive (blocking)
interactive_shell({ attach: "calm-reef", mode: "hands-free" })  // hands-free (poll)
interactive_shell({ attach: "calm-reef", mode: "dispatch" })    // dispatch (notified)

// Dismiss background sessions (kill running, remove exited)
interactive_shell({ dismissBackground: true })               // all
interactive_shell({ dismissBackground: "calm-reef" })        // specific

Quick Reference

Dispatch subagent (fire-and-forget, default to pi):

interactive_shell({
  command: 'pi "Implement the feature described in SPEC.md"',
  mode: "dispatch",
  reason: "Implementing feature"
})
// Returns immediately. You'll be notified when done.

Background dispatch (headless, no overlay):

interactive_shell({
  command: 'pi "Fix lint errors"',
  mode: "dispatch",
  background: true,
  reason: "Fixing lint"
})

Start foreground subagent (hands-free, default to pi):

interactive_shell({
  command: 'pi "Implement the feature described in SPEC.md"',
  mode: "hands-free",
  reason: "Implementing feature"
})
// Returns sessionId in updates, e.g., "shell-1"

Send input to active session:

// Text with enter
interactive_shell({ sessionId: "calm-reef", input: "/compact\n" })

// Text + named keys
interactive_shell({ sessionId: "calm-reef", input: "/model", inputKeys: ["enter"] })

// Menu navigation
interactive_shell({ sessionId: "calm-reef", inputKeys: ["down", "down", "enter"] })

Change update frequency:

interactive_shell({ sessionId: "calm-reef", settings: { updateInterval: 60000 } })

Foreground subagent (user requested different agent):

interactive_shell({
  command: 'claude "Review this code for security issues"',
  mode: "hands-free",
  reason: "Security review with Claude"
})

Background subagent:

subagent({ agent: "scout", task: "Find all TODO comments" })

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.41%
按下载量换算176

Claude

31.17%
按下载量换算164

Cursor

17.79%
按下载量换算94

Gemini CLI

8.69%
按下载量换算46

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/dicklesworthstone/pi_agent_rust --skill interactive-shell 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills