소스 정보
- 저장소
- 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-browser명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | slay-browser |
| description | Control the task browser panel via the slay CLI |
| trigger | auto |
Browser commands control the browser panel embedded in each task's detail view. All commands require $SLAYZONE_TASK_ID to be set (automatic in task terminals).
Every command accepts --panel <state> (visible | hidden). navigate defaults to visible (auto-opens the panel), all other commands default to hidden (operate without showing the panel).
slay tasks browser navigate <url> [--panel <state>]
Navigate to a URL. This is the only command that auto-shows the browser panel. Use this to open pages for verification, testing, or reference.
slay tasks browser url [--panel <state>]
Print the current URL. Useful for checking where the browser is after navigation or redirects.
slay tasks browser screenshot [-o <path>] [--panel <state>]
Capture a screenshot. Returns the file path of the saved image. Use -o to copy the screenshot to a specific path; without it, prints the temp file path.
slay tasks browser content [--json] [--panel <state>]
Get the page's text content (truncated to 10k characters) and a list of interactive elements (links, buttons, inputs) as JSON. Useful for understanding page structure before clicking or typing.
slay tasks browser click <selector> [--panel <state>]
Click an element by CSS selector. Returns the tag name and text of the clicked element.
slay tasks browser type <selector> <text> [--panel <state>]
Type text into an input element by CSS selector.
slay tasks browser eval <code> [--panel <state>]
Execute JavaScript in the browser context and print the result. Strings are printed as-is, other values are pretty-printed as JSON.
A typical browser verification flow:
navigate to the URLcontent to inspect the page and find selectorsclick or type to interactscreenshot to capture the result