gitextract_auczxnks/ ├── .codex/ │ ├── skills/ │ │ ├── commit/ │ │ │ └── SKILL.md │ │ ├── debug/ │ │ │ └── SKILL.md │ │ ├── land/ │ │ │ ├── SKILL.md │ │ │ └── land_watch.py │ │ ├── linear/ │ │ │ └── SKILL.md │ │ ├── pull/ │ │ │ └── SKILL.md │ │ └── push/ │ │ └── SKILL.md │ └── worktree_init.sh ├── .github/ │ ├── pull_request_template.md │ └── workflows/ │ ├── make-all.yml │ └── pr-description-lint.yml ├── LICENSE ├── NOTICE ├── README.md ├── SPEC.md └── elixir/ ├── .formatter.exs ├── .gitattributes ├── .gitignore ├── AGENTS.md ├── Makefile ├── README.md ├── WORKFLOW.md ├── config/ │ └── config.exs ├── docs/ │ ├── logging.md │ └── token_accounting.md ├── lib/ │ ├── mix/ │ │ └── tasks/ │ │ ├── pr_body.check.ex │ │ ├── specs.check.ex │ │ └── workspace.before_remove.ex │ ├── symphony_elixir/ │ │ ├── agent_runner.ex │ │ ├── cli.ex │ │ ├── codex/ │ │ │ ├── app_server.ex │ │ │ └── dynamic_tool.ex │ │ ├── config/ │ │ │ └── schema.ex │ │ ├── config.ex │ │ ├── http_server.ex │ │ ├── linear/ │ │ │ ├── adapter.ex │ │ │ ├── client.ex │ │ │ └── issue.ex │ │ ├── log_file.ex │ │ ├── orchestrator.ex │ │ ├── path_safety.ex │ │ ├── prompt_builder.ex │ │ ├── specs_check.ex │ │ ├── ssh.ex │ │ ├── status_dashboard.ex │ │ ├── tracker/ │ │ │ └── memory.ex │ │ ├── tracker.ex │ │ ├── workflow.ex │ │ ├── workflow_store.ex │ │ └── workspace.ex │ ├── symphony_elixir.ex │ └── symphony_elixir_web/ │ ├── components/ │ │ └── layouts.ex │ ├── controllers/ │ │ ├── observability_api_controller.ex │ │ └── static_asset_controller.ex │ ├── endpoint.ex │ ├── error_html.ex │ ├── error_json.ex │ ├── live/ │ │ └── dashboard_live.ex │ ├── observability_pubsub.ex │ ├── presenter.ex │ ├── router.ex │ └── static_assets.ex ├── mise.toml ├── mix.exs ├── priv/ │ └── static/ │ └── dashboard.css └── test/ ├── fixtures/ │ └── status_dashboard_snapshots/ │ ├── backoff_queue.evidence.md │ ├── backoff_queue.snapshot.txt │ ├── credits_unlimited.evidence.md │ ├── credits_unlimited.snapshot.txt │ ├── idle.evidence.md │ ├── idle.snapshot.txt │ ├── idle_with_dashboard_url.evidence.md │ ├── idle_with_dashboard_url.snapshot.txt │ ├── super_busy.evidence.md │ └── super_busy.snapshot.txt ├── mix/ │ └── tasks/ │ ├── pr_body_check_test.exs │ ├── specs_check_task_test.exs │ └── workspace_before_remove_test.exs ├── support/ │ ├── live_e2e_docker/ │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ ├── live_worker_entrypoint.sh │ │ └── symphony-live-worker.conf │ ├── snapshot_support.exs │ └── test_support.exs ├── symphony_elixir/ │ ├── app_server_test.exs │ ├── cli_test.exs │ ├── core_test.exs │ ├── dynamic_tool_test.exs │ ├── extensions_test.exs │ ├── live_e2e_test.exs │ ├── log_file_test.exs │ ├── observability_pubsub_test.exs │ ├── orchestrator_status_test.exs │ ├── specs_check_test.exs │ ├── ssh_test.exs │ ├── status_dashboard_snapshot_test.exs │ └── workspace_and_config_test.exs └── test_helper.exs