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で見る