.
├── cli/
│   └── src/
│       ├── acp/
│       ├── agent/
│       ├── commands/
│       ├── components/
│       │   └── settings/
│       │       ├── hooks/
│       │       └── subpages/
│       ├── constants/
│       ├── context/
│       ├── controllers/
│       ├── hooks/
│       └── utils/
├── proto/
│   ├── dirac/
│   └── host/
├── src/
│   ├── core/
│   │   ├── api/
│   │   │   ├── adapters/
│   │   │   ├── providers/
│   │   │   ├── transform/
│   │   │   └── utils/
│   │   ├── assistant-message/
│   │   ├── commands/
│   │   ├── context/
│   │   │   ├── context-management/
│   │   │   ├── context-tracking/
│   │   │   └── instructions/
│   │   │       └── user-instructions/
│   │   ├── controller/
│   │   │   ├── browser/
│   │   │   ├── checkpoints/
│   │   │   ├── commands/
│   │   │   ├── file/
│   │   │   ├── grpc-recorder/
│   │   │   ├── models/
│   │   │   ├── slash/
│   │   │   ├── state/
│   │   │   ├── task/
│   │   │   ├── ui/
│   │   │   ├── web/
│   │   │   └── worktree/
│   │   ├── hooks/
│   │   ├── ignore/
│   │   ├── locks/
│   │   ├── mentions/
│   │   ├── permissions/
│   │   ├── prompts/
│   │   │   └── system-prompt/
│   │   │       ├── registry/
│   │   │       ├── sections/
│   │   │       ├── templates/
│   │   │       └── tools/
│   │   ├── slash-commands/
│   │   ├── storage/
│   │   │   └── utils/
│   │   ├── task/
│   │   │   ├── tools/
│   │   │   │   ├── handlers/
│   │   │   │   │   └── edit-file/
│   │   │   │   ├── subagent/
│   │   │   │   ├── types/
│   │   │   │   └── utils/
│   │   │   ├── types/
│   │   │   └── utils/
│   │   ├── webview/
│   │   └── workspace/
│   │       └── utils/
│   ├── exports/
│   ├── hosts/
│   │   ├── external/
│   │   └── vscode/
│   │       ├── hostbridge/
│   │       │   ├── client/
│   │       │   ├── diff/
│   │       │   ├── env/
│   │       │   ├── testing/
│   │       │   ├── window/
│   │       │   └── workspace/
│   │       ├── review/
│   │       └── terminal/
│   ├── integrations/
│   │   ├── checkpoints/
│   │   ├── claude-code/
│   │   ├── diagnostics/
│   │   ├── editor/
│   │   ├── github-copilot/
│   │   ├── misc/
│   │   ├── notifications/
│   │   ├── openai-codex/
│   │   └── terminal/
│   │       └── standalone/
│   ├── packages/
│   ├── services/
│   │   ├── banner/
│   │   ├── browser/
│   │   ├── error/
│   │   │   └── providers/
│   │   ├── feature-flags/
│   │   │   └── providers/
│   │   ├── glob/
│   │   ├── logging/
│   │   ├── ripgrep/
│   │   ├── search/
│   │   ├── symbol-index/
│   │   ├── telemetry/
│   │   │   ├── events/
│   │   │   └── providers/
│   │   │       └── opentelemetry/
│   │   ├── temp/
│   │   ├── tree-sitter/
│   │   │   └── queries/
│   │   └── uri/
│   ├── shared/
│   │   ├── clients/
│   │   ├── dirac/
│   │   ├── internal/
│   │   ├── messages/
│   │   ├── multi-root/
│   │   ├── providers/
│   │   ├── remote-config/
│   │   ├── services/
│   │   │   ├── config/
│   │   │   ├── feature-flags/
│   │   │   └── worker/
│   │   ├── storage/
│   │   └── utils/
│   ├── standalone/
│   ├── types/
│   └── utils/
└── webview-ui/
    ├── .storybook/
    ├── public/
    │   └── fonts/
    └── src/
        ├── app/
        │   ├── store/
        │   └── styles/
        ├── assets/
        ├── config/
        ├── context/
        ├── entities/
        │   ├── task/
        │   │   └── store/
        │   └── user/
        │       └── store/
        ├── features/
        │   ├── chat/
        │   │   ├── components/
        │   │   │   ├── ChatRow/
        │   │   │   │   ├── ChatRowContent/
        │   │   │   │   └── ToolOutput/
        │   │   │   ├── ChatView/
        │   │   │   │   ├── components/
        │   │   │   │   │   ├── layout/
        │   │   │   │   │   └── messages/
        │   │   │   │   ├── context/
        │   │   │   │   ├── hooks/
        │   │   │   │   ├── shared/
        │   │   │   │   ├── types/
        │   │   │   │   └── utils/
        │   │   │   ├── TaskHeader/
        │   │   │   │   └── buttons/
        │   │   │   └── auto-approve-menu/
        │   │   ├── store/
        │   │   └── utils/
        │   ├── dirac-rules/
        │   │   └── components/
        │   ├── history/
        │   │   ├── components/
        │   │   │   └── HistoryView/
        │   │   └── store/
        │   ├── settings/
        │   │   ├── components/
        │   │   │   ├── SettingsView/
        │   │   │   ├── common/
        │   │   │   ├── providers/
        │   │   │   ├── sections/
        │   │   │   └── utils/
        │   │   └── store/
        │   └── worktrees/
        │       └── components/
        ├── lib/
        └── shared/
            ├── api/
            ├── hooks/
            ├── lib/
            └── ui/
                └── hooks/
