소스 정보
- 저장소
- debuglebowski/slayzone-chromium
- 최근 소스 활동
- 2026년 4월 10일 08:12
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/debuglebowski/slayzone-chromium --skill slay-pty명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | slay-pty |
| description | Interact with PTY terminal sessions via the slay CLI |
| trigger | auto |
PTY commands interact with terminal sessions managed by the SlayZone app — the actual terminal tabs you see in each task. Use these to read output, send input, and orchestrate AI coding agents programmatically.
All commands support ID prefix matching.
slay pty list [--json]
List active PTY sessions. Shows session ID, task ID, terminal mode, current state, and age.
slay pty buffer <id>
Dump the full terminal buffer content to stdout. Useful for reading what an AI agent has output without streaming.
slay pty follow <id> [--full]
Stream PTY output in real time. --full replays the existing buffer first before streaming new output. Streams until the session exits.
slay pty write <id> <data>
Send raw data directly to PTY stdin. No newline handling or encoding — sends exactly what you provide. Use for low-level control.
slay pty submit <id> [text] [--wait] [--no-wait] [--timeout <ms>]
High-level text submission with AI-mode awareness. If no text argument is given, reads from stdin (pipe-friendly). For AI modes like claude-code, internal newlines are encoded as Kitty shift-enter sequences (\x1b[13;2u) so multi-line text is submitted as a single input rather than being split into separate commands.
Wait behavior: By default, submit waits for the session to reach the attention state (= the AI CLI is ready for input) before sending. This is automatic for AI modes. Use --no-wait to send immediately (default for plain terminal modes). Timeout defaults to 60 seconds.
slay pty wait <id> [--state <state>] [--timeout <ms>] [--json]
Block until a session reaches a specific state. Default state is attention (AI ready for input), timeout is 60 seconds. Exit codes: 0 = reached state, 2 = timeout, 1 = session died.
slay pty kill <id> — terminate a PTY session.
Submit a prompt to a Claude Code session and wait for completion:
slay pty submit <id> "Fix the failing tests in src/auth.ts"
slay pty wait <id> --state attention --timeout 300000
slay pty buffer <id> # read the result
Pipe multi-line input:
cat prompt.md | slay pty submit <id>