look-at
Observe what the user is currently viewing (screen context). Use when the user says "look at my screen" or you need to verify what they're viewing.
来源信息
- 仓库
- mbailey/show-me
- 最近来源活动
- 2026年8月20日 23:35
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 2
- 分支
- 1
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
文件资源管理器
2 个文件正在显示 SKILL.md
SKILL.md
来源说明 · 只读预览- name
- look-at
- description
- Observe what the user is currently viewing (screen context). Use when the user says "look at my screen" or you need to verify what they're viewing.
# /show-me:look-at
Capture what the user is currently viewing with tmux hierarchy and pane content.
## Targets
- (none) — Current pane content
- `%<id>` — Specific pane by ID
- `%1,%2,%3` — Multiple panes
- `window` — All panes in current window
## Options
- `-l, --lines N` — Lines of scrollback
- `-H, --hierarchy` — Hierarchy only (no content)
- `-p, --preserve-blanks` — Keep exact spacing
## Implementation
Run via the Bash tool. `look-at` is on PATH (Claude Code adds plugin `bin/` to PATH automatically; for other Agent Skill runtimes, the user must put `bin/look-at` on PATH themselves, e.g. via a symlink into `~/.local/bin`).
```bash
look-at [options] [target]
```
在 GitHub 查看