소스 정보
- 저장소
- tabtin-ai/TabTin
- 최근 소스 활동
- 2026년 8월 22일 12:25
- 감지된 SKILL.md 언어
- 영어
- 스타
- 189
- 포크
- 47
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tabtin-ai/TabTin --skill spacelayout-operator명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | spacelayout-operator |
| description | Manage context-space tabs, groups, and pane layouts. |
| metadata | {"version":"0.1.0","tabtin":{"category":"developer","displayName":"Space Layout Operator","tags":["layout","workspace","tabs"]}} |
Use this skill when the task requires managing the user's workspace layout — opening, closing, or rearranging context tabs and split-pane groups.
| Tool | Purpose |
|---|---|
list_context_space | List all tabs, groups, and layout state for a project |
set_active_context_tab | Activate a specific tab (bring it to focus) |
close_context_tab | Close a tab and get the next active tab |
restore_context_group | Ungroup a split-pane group back into individual tabs |
assign_pane_content | Place a tab's content into a specific pane |
split_pane_with_tab | Split an existing pane and insert a tab beside it |
move_pane | Move a pane to a new position within a group |
dock_pane | Dock a pane to a group edge (left/right/top/bottom) |
tabKey.groupId.paneId.list_context_space with the spaceId.tabs[] for all open tabs, groups[] for split-pane arrangements, activeTabKey for the focused tab.set_active_context_tab with spaceId and tabKey.paneId to focus a specific pane within a group.To display two tabs side by side:
list_context_space to get current tabs and their tabKeys.split_pane_with_tab — pick an existing paneId, choose side: "right" (or "left", "top", "bottom"), and provide the tabKey to place in the new pane.move_pane — reorder panes within a group by specifying sourcePaneId, targetPaneId, and side.dock_pane — push a pane to the edge of a group (e.g., dock to "bottom" for a console-like layout).close_context_tab to close tabs that are no longer needed.restore_context_group to flatten a group back into separate tabs.list_context_space first to get valid tabKey, groupId, and paneId values — never guess these identifiers.tabKey must refer to a tab that is not already assigned to another pane in the same group.nextActiveTabKey in the response to know which tab is now focused.spaceId.split_pane_with_tab for building layouts from scratch; use move_pane and dock_pane for rearranging existing layouts.restore_context_group is non-destructive — it preserves all tab content, only flattening the visual layout.