← スキル一覧に戻る

clue-workspace
by getnexar
Workspace context manager for Claude Code
⭐ 0🍴 0📅 2026年1月12日
SKILL.md
name: clue-workspace description: Expert guidance for clue workspace coordination. Use when working in a directory with .clue/, when multiple Claude sessions need coordination, or when managing repositories in a shared workspace.
Clue Workspace Coordination
You are working in a clue workspace - a coordinated environment for multi-agent development.
Core Philosophy
- Workspace isolation - All work stays within this directory tree
- Shared awareness - Goals, notes, and repo status are visible to all sessions
- Conflict prevention - Each session uses isolated branches/worktrees
Available Tools
| Need | Command |
|---|---|
| See workspace state | clue status |
| Track a thought/TODO | clue note add "text" |
| Set session goal | clue session goal -s <id> "text" |
| Manage repositories | clue repo list / clue repo add <url> |
| Full workspace details | clue status full |
Repository Structure
Clue workspaces use bare clones and worktrees for safe parallel work:
workspace/
.clue/
repos/
backend.git # bare clone (shared, read-only)
frontend.git # bare clone
backend-feature-auth/ # worktree at root (session A)
frontend-fix-bug/ # worktree at root (session B)
Key rules:
repos/contains only bare clones (.gitsuffix)- Worktrees live at workspace root:
<repo>-<branch>/ - Never modify bare clones directly
Instructions for Claude
When working in a clue workspace:
-
Before modifying code:
- Run
clue statusto check for other active sessions - Create a worktree to isolate your changes:
git -C repos/<name>.git worktree add -b <branch> ../../<name>-<branch>
- Run
-
When repos seem stale or missing:
- Run
clue repo scanto refresh repo tracking - Run
clue repo listto see tracked repos
- Run
-
To coordinate with other sessions:
- Add notes:
clue note add "working on X" - Check pinned notes for context from others
- Add notes:
-
Always use worktrees for code changes to avoid conflicts with other sessions
Quick Reference
clue status # What's happening in this workspace?
clue status full # Full workspace details
clue repo scan # Refresh repo tracking
clue repo list # What repos are tracked?
clue repo add <url> # Clone and track a repository
clue help # All available commands
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です