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

winsmuxwinsmux 搜索

Agent Skill

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

总安装

367

周安装

15

GitHub Stars

24

下载量

119
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sora-bluesky/winsmux --skill winsmux

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 支持基于关键词、任务场景或来源线索进行信息检索与筛选。
  • 通过命令行工具调用,可直接集成到宿主环境中使用。
  • 安装命令:npx skills add https://github.com/sora-bluesky/winsmux --skill winsmux。
  • 使用前请确认权限范围、维护状态及是否涉及联网或文件操作。

SKILL.md

winsmux

Cross-pane AI agent communication on Windows. Use psmux-bridge for all pane interactions.

Communication Modes

Identify the mode before communicating with a pane.

ModeConditionRule
Agent ModePeer has winsmux skill (Claude Code, skill-enabled Codex)DO NOT POLL. Reply arrives in YOUR pane via [psmux-bridge from:...]
Non-Agent ModeCodex CLI (no skill), plain shell, dev serverPOLL REQUIRED. You must read periodically to check status

Agent Mode -- send your message, press Enter, and move on. The reply appears directly in your pane. Do not sleep, poll, or loop.

Non-Agent Mode -- after sending a task, enter the POLL loop (see Commander Orchestration below). Read the target pane at intervals to detect completion, approval prompts, or errors.

The ONLY reasons to read a target pane in Agent Mode:

  • Before interacting (enforced by Read Guard)
  • After typing to verify text landed before pressing Enter

Core Commands

CommandDescriptionExample
psmux-bridge listShow all panes with target, pid, command, size, labelpsmux-bridge list
psmux-bridge read <target> [lines]Read last N lines (default 50), sets Read Guard markpsmux-bridge read codex 100
psmux-bridge type <target> <text>Type literal text (no Enter), requires Read Guardpsmux-bridge type codex "hello"
psmux-bridge send <target> <text>Recommended. Send tagged message + auto Enter in one steppsmux-bridge send codex "review src/auth.ts"
psmux-bridge message <target> <text>Type text with sender header (no Enter -- use send instead)psmux-bridge message codex "review src/auth.ts"
psmux-bridge keys <target> <key>...Send special keys, requires Read Guardpsmux-bridge keys codex Enter
psmux-bridge name <target> <label>Label a panepsmux-bridge name %3 codex
psmux-bridge resolve <label>Print pane ID for a labelpsmux-bridge resolve codex
psmux-bridge idPrint this pane's IDpsmux-bridge id
psmux-bridge wait <channel> [timeout]Block until signal received (default 120s timeout)psmux-bridge wait builder-1-done 60
psmux-bridge signal <channel>Send signal to unblock a waiting processpsmux-bridge signal builder-1-done
psmux-bridge watch <label> [sil] [to]Block until pane output is silent (default 10s silence)psmux-bridge watch builder-1 10 120
psmux-bridge focus <target>Switch pane focuspsmux-bridge focus codex
psmux-bridge ime-input <target>Open GUI dialog for IME text input, send to panepsmux-bridge ime-input codex
psmux-bridge image-paste <target>Save clipboard image to file, send path to panepsmux-bridge image-paste codex
psmux-bridge clipboard-paste <target>Paste clipboard text to panepsmux-bridge clipboard-paste codex
psmux-bridge vault set <key> [value]Store a credential securely (DPAPI)psmux-bridge vault set OPENAI_API_KEY
psmux-bridge vault get <key>Retrieve a stored credentialpsmux-bridge vault get OPENAI_API_KEY
psmux-bridge vault inject <pane>Inject all credentials as $env: vars into a panepsmux-bridge vault inject builder
psmux-bridge vault listList stored credential keyspsmux-bridge vault list
psmux-bridge profile [name] [agents]Show or register Windows Terminal dropdown profilepsmux-bridge profile mysetup builder:codex
psmux-bridge doctorRun environment diagnosticspsmux-bridge doctor

For full parameter details, see psmux-bridge CLI Reference.

Read Guard

The CLI enforces read-before-act. You cannot type, keys, or message to a pane unless you have read it first.

  1. psmux-bridge read <target> -- sets the mark
  2. psmux-bridge type/keys/message <target> -- checks the mark; errors if missing
  3. After a successful write, the mark is cleared -- you must read again before the next interaction

If you skip the read:

PS> psmux-bridge type codex "hello"
error: must read the pane before interacting. Run: psmux-bridge read codex

Read-Act-Read Cycle

Every interaction follows read -> act -> read.

Sending a message to an agent (Agent Mode):

psmux-bridge read codex 20                    # 1. READ -- satisfy Read Guard
psmux-bridge message codex "Please review src/auth.ts"
                                              # 2. MESSAGE -- auto-prepends sender info
psmux-bridge read codex 20                    # 3. READ -- verify text landed
psmux-bridge keys codex Enter                 # 4. KEYS -- submit
# STOP. Do NOT poll. The agent replies into YOUR pane.

Approving a prompt (Non-Agent pane):

psmux-bridge read worker 10                   # 1. READ -- see the prompt
psmux-bridge type worker "y"                  # 2. TYPE
psmux-bridge read worker 10                   # 3. READ -- verify
psmux-bridge keys worker Enter                # 4. KEYS -- submit
psmux-bridge read worker 20                   # 5. READ -- see the result

Message Protocol

The message command auto-prepends a structured header:

[psmux-bridge from:claude pane:%4 at:s:w.p -- load the winsmux skill to reply]

Fields: who sent it (from), reply-to pane (pane), session/window/pane coordinates (at).

When you receive this header, reply using psmux-bridge message to the pane ID from the header.

Commander Orchestration

When you are the commander orchestrating builder/reviewer/researcher/monitor panes, load the management protocol:

  • Orchestra Management Protocol -- roles, workflow cycle, pipeline operation, multi-builder coordination, POLL/auto-approve, researcher/reviewer protocols, prohibitions
  • Agent Selection Guide -- which CLI to assign for each task type, approval-free flags, known limitations

Key rules (read the full protocol for details):

  1. Never write code yourself -- delegate to builders
  2. Never skip reconnaissance -- send researcher before builders
  3. Never let agents idle -- pipeline operation, assign next task within 10 seconds
  4. Never skip POLL -- always poll after BUILD and REVIEW
  5. Split by file boundary -- each builder gets explicit, non-overlapping files

Examples

Example 1: Agent-to-Agent Communication

# Label yourself
psmux-bridge name (psmux-bridge id) claude

# Discover panes
psmux-bridge list

# Send a message (Read-Act-Read)
psmux-bridge read codex 20
psmux-bridge message codex "What is the test coverage for src/auth.ts?"
psmux-bridge read codex 20
psmux-bridge keys codex Enter
# STOP -- reply arrives in your pane (Agent Mode)

The receiving agent sees:

[psmux-bridge from:claude pane:%4 at:s:w.p -- load the winsmux skill to reply] What is the test coverage for src/auth.ts?

And replies:

psmux-bridge read %4 20
psmux-bridge message %4 "87% line coverage. Missing OAuth refresh path (lines 142-168)."
psmux-bridge read %4 20
psmux-bridge keys %4 Enter

Example 2: Commander Orchestration Cycle

# 1. PLAN -- decide task
# "Implement rate limiting middleware"

# 2. BUILD -- instruct builder
psmux-bridge read builder 20
psmux-bridge message builder "Implement rate limiting middleware in src/middleware/rate-limit.ts. Use sliding window, 100 req/min per IP."
psmux-bridge read builder 20
psmux-bridge keys builder Enter

# 3. POLL -- wait for builder (10s intervals, max 12 rounds)
Start-Sleep 10
psmux-bridge read builder 20
# ... repeat until completion detected ...

# 4. REVIEW -- send to reviewer
psmux-bridge read reviewer 20
psmux-bridge message reviewer "Review uncommitted changes via git diff HEAD. Focus: security, performance, tests."
psmux-bridge read reviewer 20
psmux-bridge keys reviewer Enter

# 5. POLL -- wait for reviewer
Start-Sleep 10
psmux-bridge read reviewer 50
# ... repeat until completion detected ...

# 6. JUDGE -- LGTM received
# 7. COMMIT
git add src/middleware/rate-limit.ts
git commit -m "feat: add rate limiting middleware"

# 8. NEXT -- proceed to next task

Troubleshooting

ProblemCauseSolution
error: must read the pane before interactingRead Guard not satisfiedRun psmux-bridge read <target> first
invalid targetLabel not found or pane ID wrongRun psmux-bridge list to verify panes; re-label with psmux-bridge name
psmux: command not foundpsmux not installed or not in PATHInstall psmux; verify with psmux -V
Message sent but no reply (Agent Mode)Peer does not have winsmux skill loadedSwitch to Non-Agent Mode with POLL
POLL times out after 120 secondsBuilder/reviewer stuck or erroredRead last 20 lines, report state to user
Auto-approve triggered on dangerous commandPattern not caughtAdd pattern to dangerous-command list; report to user
psmux-bridge doctor shows warningsEnvironment misconfiguredFix reported issues (TMUX_PANE, WINSMUX_AGENT_NAME, etc.)

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.8%
按下载量换算44

Claude

31.72%
按下载量换算38

Cursor

17.75%
按下载量换算21

Gemini CLI

9.49%
按下载量换算11

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills