← スキル一覧に戻る

ac-workspace-manager
by adaptationio
⭐ 0🍴 0📅 2026年1月24日
SKILL.md
name: ac-workspace-manager description: Manage git worktrees for isolated development. Use when creating isolated workspaces, managing parallel development, handling worktree lifecycle, or merging completed work.
AC Workspace Manager
Manage git worktrees for isolated autonomous development.
Purpose
Provides workspace isolation using git worktrees, enabling parallel development and safe rollback without affecting the main branch.
Quick Start
from scripts.workspace_manager import WorkspaceManager
manager = WorkspaceManager(project_dir)
worktree = await manager.create_worktree("feature-auth")
await manager.merge_completed(worktree)
Worktree Strategy
main branch (stable)
│
├── .worktrees/
│ ├── build-001/ ← Isolated worktree
│ ├── build-002/ ← Another build
│ └── build-003/ ← Parallel work
│
└── project files
Workflow
- Create: New worktree from main branch
- Develop: All changes in isolated workspace
- Review: Review changes before merge
- Merge: Merge back to main
- Cleanup: Remove worktree
API
# Create new worktree
worktree = await manager.create_worktree("build-001")
# Get current worktree
current = await manager.get_current_worktree()
# List all worktrees
worktrees = await manager.list_worktrees()
# Merge completed work
await manager.merge_completed(worktree)
# Cleanup worktree
await manager.cleanup_worktree(worktree)
Integration
- Used by:
ac-session-managerfor session isolation - Uses:
ac-checkpoint-managerfor rollback points
API Reference
See scripts/workspace_manager.py for full implementation.
スコア
総合スコア
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
レビュー
💬
レビュー機能は近日公開予定です