ソース情報
- リポジトリ
- 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コマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies
Use when you have a written implementation plan to execute in a separate session with review checkpoints
SOC 職業分類に基づく
SKILL.md を表示中
| 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.