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.pyWORKER_SPACES
multi_ide_client.pyWORKER_SPACES
cogs/orchestrator.py(ローカル + VPS)WORKSPACE_PRESETS
agent_coordinator.pyTASK_PREAMBLE レポートパス
dispatch_cli.pydocstring 内パス
start_pipeline.ps1$BOT_DIR
restart_bot.ps1$botDir
AGENTS.md(メイン + 各ワークスペース)ワーカーパス
VPS運用情報.mdソースコードパス + デプロイコマンド

未完了

  • automation/ フォルダ: プロセスロック中のため移動未完了 → 再起動後に tools/automation/ へ移動

関連ドキュメント