ai_work ディレクトリ整理ログ
2026-03-04 — ai_work 配下フォルダ整理
目的
ai_work 直下に散乱していたフォルダ・ファイルを整理し、管理しやすい構造へ再編成。 Obsidian Vault に入れるもの(ドキュメント)と入れないもの(実行コード)を明確に分離。
Before → After
直下フォルダ: 24個 → 9個
直下ファイル: 74個 → 2個(AGENTS.md + .gitignore)
新構成
c:\ai_work\
├── quartz-site\ ← Obsidian Vault(位置変更なし)
├── workspaces\ ← A-space / B-space / C-space(新設・統合)
├── tools\ ← 実行コード・ツール類(新設・統合)
│ ├── bots\ ← new_bot / discord-bots
│ ├── remotion\ ← remotion-studio
│ ├── ai-image\ ← AI画像生成
│ ├── anticrow\ ← 旧 anticrow 関連
│ ├── scripts\ ← restart_bot.ps1 等
│ └── agent\ ← エージェント関連
├── archive\ ← 一時ファイル・旧データ(新設)
│ ├── screenshots\
│ ├── notion\
│ ├── installers\
│ └── misc\
├── AGENTS.md
├── venv\
└── python310\
移動詳細
| 移動元 | 移動先 |
|---|---|
A-space/ B-space/ C-space/ | workspaces/ |
new_bot/ discord-bots/ | tools/bots/ |
remotion-studio/ | tools/remotion/ |
ai-image/ | tools/ai-image/ |
ComfyUI/ | tools/comfyui/ |
anticrow/ | tools/anticrow/ |
| 各種スクリプト | tools/scripts/ |
| スクリーンショット、旧ファイル等 | archive/ |
パス更新 — 全10ファイル
すべてのハードコードされたパスを grep_search で洗い出し、新しいパスに更新:
| ファイル | 更新箇所 |
|---|---|
task_manager.py | WORKER_SPACES |
multi_ide_client.py | WORKER_SPACES |
cogs/orchestrator.py(ローカル + VPS) | WORKSPACE_PRESETS |
agent_coordinator.py | TASK_PREAMBLE レポートパス |
dispatch_cli.py | docstring 内パス |
start_pipeline.ps1 | $BOT_DIR |
restart_bot.ps1 | $botDir |
AGENTS.md(メイン + 各ワークスペース) | ワーカーパス |
VPS運用情報.md | ソースコードパス + デプロイコマンド |
未完了
automation/フォルダ: プロセスロック中のため移動未完了 → 再起動後にtools/automation/へ移動
関連ドキュメント
- workspace_organization_guide — 新構造の運用ガイド