スキル一覧に戻る
getnexar

clue-workspace

by getnexar

Workspace context manager for Claude Code

0🍴 0📅 2026年1月12日
GitHubで見るManusで実行

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

  1. Workspace isolation - All work stays within this directory tree
  2. Shared awareness - Goals, notes, and repo status are visible to all sessions
  3. Conflict prevention - Each session uses isolated branches/worktrees

Available Tools

NeedCommand
See workspace stateclue status
Track a thought/TODOclue note add "text"
Set session goalclue session goal -s <id> "text"
Manage repositoriesclue repo list / clue repo add <url>
Full workspace detailsclue 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 (.git suffix)
  • Worktrees live at workspace root: <repo>-<branch>/
  • Never modify bare clones directly

Instructions for Claude

When working in a clue workspace:

  1. Before modifying code:

    • Run clue status to check for other active sessions
    • Create a worktree to isolate your changes:
      git -C repos/<name>.git worktree add -b <branch> ../../<name>-<branch>
      
  2. When repos seem stale or missing:

    • Run clue repo scan to refresh repo tracking
    • Run clue repo list to see tracked repos
  3. To coordinate with other sessions:

    • Add notes: clue note add "working on X"
    • Check pinned notes for context from others
  4. 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

レビュー

💬

レビュー機能は近日公開予定です