gitextract_aj30rg7u/ ├── .ai/ │ ├── agents.md │ ├── docs/ │ │ ├── .last_sync │ │ ├── architecture.md │ │ ├── changelog.md │ │ └── commands.md │ ├── flox/ │ │ └── manifest.toml │ ├── health-checks.json │ ├── recipes/ │ │ └── project/ │ │ ├── bootstrap-core-tools.md │ │ ├── install-rise-auto.md │ │ ├── installer-smoke-sh.md │ │ ├── release-core-toolchain.md │ │ ├── release-flow-registry.md │ │ ├── release-rise-registry.md │ │ └── release-seq-registry.md │ ├── repos.toml │ ├── tasks/ │ │ └── flow/ │ │ ├── bench-cli/ │ │ │ ├── main.mbt │ │ │ ├── moon.mod.json │ │ │ └── moon.pkg.json │ │ ├── dev-check/ │ │ │ ├── main.mbt │ │ │ ├── moon.mod.json │ │ │ └── moon.pkg.json │ │ ├── noop/ │ │ │ ├── main.mbt │ │ │ ├── moon.mod.json │ │ │ └── moon.pkg.json │ │ ├── pr-ready/ │ │ │ ├── main.mbt │ │ │ ├── moon.mod.json │ │ │ └── moon.pkg.json │ │ ├── regression-smoke/ │ │ │ ├── main.mbt │ │ │ ├── moon.mod.json │ │ │ └── moon.pkg.json │ │ └── release-preflight/ │ │ ├── main.mbt │ │ ├── moon.mod.json │ │ └── moon.pkg.json │ └── todos/ │ └── todos.json ├── .flox.disabled ├── .github/ │ └── workflows/ │ ├── canary.yml │ ├── nightly-validation.yml │ ├── pr-fast.yml │ └── release.yml ├── .gitignore ├── .goreleaser.yaml ├── .pi/ │ └── extensions/ │ └── test-extensibility.ts ├── AGENTS.md.bak ├── Cargo.toml ├── Support/ │ └── flow/ │ └── auth.toml ├── agents.md ├── bench/ │ ├── ffi_host_boundary/ │ │ ├── Cargo.toml │ │ └── src/ │ │ ├── bin/ │ │ │ └── rust_boundary_bench.rs │ │ └── lib.rs │ └── moon_ffi_boundary/ │ ├── main.mbt │ ├── moon.mod.json │ └── moon.pkg.template.json ├── build.rs ├── crates/ │ ├── ai_taskd_client/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── main.rs │ ├── flow_commit_scan/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── lib.rs │ ├── opentui-lite/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── lib.rs │ ├── seq_client/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── lib.rs │ └── seq_everruns_bridge/ │ ├── Cargo.toml │ └── src/ │ ├── lib.rs │ └── maple.rs ├── docs/ │ ├── ai-dev-layout.md │ ├── ai-run-task-fast-path.md │ ├── ai-task-fast-path-guide.md │ ├── ai-traces.md │ ├── anonymous-telemetry-contract.md │ ├── ascii-commit-visualization-pipeline.md │ ├── bench/ │ │ ├── cli-startup.md │ │ ├── moonbit-rust-ffi-boundary.md │ │ └── readme.md │ ├── ci-cd-runbook.md │ ├── codex-first-control-plane-roadmap.md │ ├── codex-fork-tasks.md │ ├── codex-maple-telemetry-runbook.md │ ├── codex-openai-session-resolver.md │ ├── commands/ │ │ ├── ai.md │ │ ├── clone.md │ │ ├── commit.md │ │ ├── commits.md │ │ ├── db.md │ │ ├── deploy.md │ │ ├── docs.md │ │ ├── domains.md │ │ ├── down.md │ │ ├── env.md │ │ ├── fast.md │ │ ├── global.md │ │ ├── install.md │ │ ├── invariants.md │ │ ├── jj.md │ │ ├── migrate.md │ │ ├── new.md │ │ ├── pr.md │ │ ├── publish.md │ │ ├── readme.md │ │ ├── recipe.md │ │ ├── release.md │ │ ├── repos.md │ │ ├── reviews-todo.md │ │ ├── seq-rpc.md │ │ ├── services.md │ │ ├── setup.md │ │ ├── skills.md │ │ ├── sync.md │ │ ├── tasks.md │ │ ├── up.md │ │ ├── upstream.md │ │ ├── url.md │ │ └── web.md │ ├── commits/ │ │ ├── .gitkeep │ │ └── readme.md │ ├── dependency-vendoring.md │ ├── dev-server-management.md │ ├── env-security-roadmap.md │ ├── everruns-maple-runbook.md │ ├── everruns-seq-bridge-integration.md │ ├── fast-commit-deep-review-loop.md │ ├── features.md │ ├── flow-toml-spec.md │ ├── how-api-expects-logs-errors-for-automatic-fixes.md │ ├── how-flow-daemon-manages-macos-services.md │ ├── how-to-make-a-project-flow-project.md │ ├── how-to-use-flow-ai-to-manage-claude-code-sessions.md │ ├── how-to-use-flow-to-deploy.md │ ├── how-to-use-flow-to-store-and-work-with-env.md │ ├── ideas.toml │ ├── index.mdx │ ├── install-script-latest-release-verification.md │ ├── jj-home-branch-workflow.md │ ├── jj-review-workspaces.md │ ├── jj-workspaces-for-parallel-work.md │ ├── local-domains-domainsd-cpp-spec.md │ ├── local-domains-no-random-ports.md │ ├── log-ingesting.md │ ├── moonbit-ai-tasks-implementation.md │ ├── moonbit-rust-boundary-refactor-plan.md │ ├── moving-repos.md │ ├── myflow-localhost-runbook.md │ ├── new-branch.md │ ├── new-pr.md │ ├── outdated-readme.md │ ├── pr-edit-watcher.md │ ├── private-fork-flow.md │ ├── private-mirror-sync-workflow.md │ ├── private-repo-fast.md │ ├── proxyx-design.md │ ├── read-stream-of-logs.md │ ├── rise-sandbox-feature-test-runbook.md │ ├── rise.md │ ├── rl-for-myflow-harbor.md │ ├── rl-myflow-harbor-task-specs.md │ ├── rl-signal-capture-runbook.md │ ├── run-repos.md │ ├── seq-agent-rpc-contract.md │ ├── session-history-mining.md │ ├── session-semantic-recovery-with-seq.md │ ├── set-env-with-hive.md │ ├── task-failure-hooks.md │ ├── usage-analytics-rollout.md │ ├── use-flow-to-write-software-better.md │ ├── vendor-code-intelligence.md │ ├── vendor-nix-inspiration.md │ └── vendor-optimization-loop.md ├── flow.py ├── flow.toml ├── install.sh ├── lib/ │ └── vendor-manifest/ │ ├── axum.toml │ ├── clap.toml │ ├── crossterm.toml │ ├── crypto_secretbox.toml │ ├── ctrlc.toml │ ├── futures.toml │ ├── hmac.toml │ ├── ignore.toml │ ├── notify-debouncer-mini.toml │ ├── notify.toml │ ├── portable-pty.toml │ ├── ratatui.toml │ ├── regex.toml │ ├── reqwest.toml │ ├── rmp-serde.toml │ ├── rusqlite.toml │ ├── serde.toml │ ├── sha1.toml │ ├── sha2.toml │ ├── tokio-stream.toml │ ├── tokio.toml │ ├── toml.toml │ ├── tower-http.toml │ ├── tracing-subscriber.toml │ ├── url.toml │ └── x25519-dalek.toml ├── license ├── pyproject.toml ├── readme.md ├── scripts/ │ ├── agents-switch.sh │ ├── ai-taskd-launchd.py │ ├── bench-ai-runtime.py │ ├── bench-cli-startup.py │ ├── bench-moonbit-rust-ffi.py │ ├── build_rl_runtime_dataset.py │ ├── cdn-nginx.conf │ ├── check_cli_startup_thresholds.py │ ├── check_release_tag_version.py │ ├── ci/ │ │ └── check-readme-case.sh │ ├── ci_blacksmith.py │ ├── ci_host_runner.py │ ├── ci_host_setup.sh │ ├── cli_startup_thresholds.json │ ├── codex-flow-wrapper │ ├── codex-jazz-wrapper │ ├── codex-skill-eval-launchd.py │ ├── codex_fork.py │ ├── deploy.sh │ ├── deps_check.py │ ├── generate_help_full_json.py │ ├── install-linux-hub.sh │ ├── install-macos-dev.sh │ ├── install.sh │ ├── myflow-commit-session-smoke.sh │ ├── package-release.sh │ ├── pre-push-guard.sh │ ├── publish-release.sh │ ├── release.sh │ ├── remote-hub-setup.sh │ ├── rl_signal_summary.py │ ├── run-health-checks.mjs │ ├── run-repos.sh │ ├── setup-github-ssh.sh │ ├── setup-release-host.sh │ ├── sync-cdn.sh │ ├── vendor/ │ │ ├── apply-trims.sh │ │ ├── bench_iteration.py │ │ ├── check-upstream.sh │ │ ├── important-crates.txt │ │ ├── inhouse-crate.sh │ │ ├── materialize-all.sh │ │ ├── offenders.sh │ │ ├── optimize_loop.sh │ │ ├── rough_edges_audit.py │ │ ├── sync-all.sh │ │ ├── sync-crate.sh │ │ ├── trim-hooks.sh │ │ ├── typesense_code_index.py │ │ ├── update-deps.sh │ │ └── vendor-repo.sh │ └── verify-install-latest-release.sh ├── spec/ │ └── tracing-flow.md ├── src/ │ ├── activity_log.rs │ ├── agent_setup.rs │ ├── agents.rs │ ├── ai.rs │ ├── ai_context.rs │ ├── ai_everruns.rs │ ├── ai_server.rs │ ├── ai_taskd.rs │ ├── ai_tasks.rs │ ├── ai_test.rs │ ├── analytics.rs │ ├── archive.rs │ ├── ask.rs │ ├── auth.rs │ ├── base_tool.rs │ ├── bin/ │ │ ├── ai_taskd_client.rs │ │ └── lin.rs │ ├── branches.rs │ ├── changes.rs │ ├── cli.rs │ ├── code.rs │ ├── codex_memory.rs │ ├── codex_runtime.rs │ ├── codex_skill_eval.rs │ ├── codex_telemetry.rs │ ├── codex_text.rs │ ├── codexd.rs │ ├── commit.rs │ ├── commits.rs │ ├── config.rs │ ├── daemon.rs │ ├── daemon_snapshot.rs │ ├── db.rs │ ├── deploy.rs │ ├── deploy_setup.rs │ ├── deps.rs │ ├── discover.rs │ ├── docs.rs │ ├── doctor.rs │ ├── domains.rs │ ├── env.rs │ ├── env_setup.rs │ ├── explain_commits.rs │ ├── ext.rs │ ├── features.rs │ ├── fish_install.rs │ ├── fish_trace.rs │ ├── fix.rs │ ├── fixup.rs │ ├── flox.rs │ ├── gh_release.rs │ ├── git_guard.rs │ ├── gitignore_policy.rs │ ├── hash.rs │ ├── health.rs │ ├── help_full.json │ ├── help_search.rs │ ├── history.rs │ ├── hive.rs │ ├── home.rs │ ├── http_client.rs │ ├── hub.rs │ ├── indexer.rs │ ├── info.rs │ ├── init.rs │ ├── install.rs │ ├── invariants.rs │ ├── jazz_state.rs │ ├── jazz_state_stub.rs │ ├── jj.rs │ ├── json_parse.rs │ ├── latest.rs │ ├── lib.rs │ ├── lifecycle.rs │ ├── lmstudio.rs │ ├── log_server.rs │ ├── log_store.rs │ ├── logs.rs │ ├── macos.rs │ ├── main.rs │ ├── notify.rs │ ├── opentui_prompt.rs │ ├── otp.rs │ ├── palette.rs │ ├── parallel.rs │ ├── path_hygiene.rs │ ├── pr_edit.rs │ ├── processes.rs │ ├── project_snapshot.rs │ ├── projects.rs │ ├── proxy/ │ │ ├── mod.rs │ │ ├── server.rs │ │ ├── summary.rs │ │ └── trace.rs │ ├── publish.rs │ ├── push.rs │ ├── recipe.rs │ ├── registry.rs │ ├── release.rs │ ├── release_signing.rs │ ├── repo_capsule.rs │ ├── repos.rs │ ├── reviews_todo.rs │ ├── rl_signals.rs │ ├── running.rs │ ├── screen.rs │ ├── sealer_crypto.rs │ ├── secret_redact.rs │ ├── secrets.rs │ ├── seq_client.rs │ ├── seq_rpc.rs │ ├── server.rs │ ├── servers.rs │ ├── servers_tui.rs │ ├── services.rs │ ├── setup.rs │ ├── skills.rs │ ├── ssh.rs │ ├── ssh_keys.rs │ ├── start.rs │ ├── storage.rs │ ├── supervisor.rs │ ├── sync.rs │ ├── task_failure_agents.rs │ ├── task_match.rs │ ├── tasks.rs │ ├── terminal.rs │ ├── todo.rs │ ├── tools.rs │ ├── trace.rs │ ├── traces.rs │ ├── traces_stub.rs │ ├── undo.rs │ ├── upgrade.rs │ ├── upstream.rs │ ├── url_inspect.rs │ ├── usage.rs │ ├── vcs.rs │ ├── watchers.rs │ ├── web.rs │ └── workflow.rs ├── test-extension.md ├── tests/ │ ├── deps.ts │ └── test_log_server.ts ├── tools/ │ └── domainsd-cpp/ │ ├── domainsd.cpp │ ├── install-macos-launchd.sh │ ├── readme.md │ └── uninstall-macos-launchd.sh └── vendor.lock.toml