diff --git a/home/common/programs/aoe/config.toml b/home/common/programs/aoe/config.toml index 7728162..80484f0 100644 --- a/home/common/programs/aoe/config.toml +++ b/home/common/programs/aoe/config.toml @@ -2,12 +2,17 @@ default_profile = "default" [acp] allow_agent_install = false +allowed_agents = [] auto_stop_idle_secs = 0 +compaction_reminder = false +compaction_reminder_percent = 75 default_agent = "claude" max_concurrent_workers = 5 node_path = "" +offer_structured_in_new_session = false rate_limit_auto_resume = false replay_events = 0 +restrict_agents = false show_tool_durations = true silent_orphan_grace_secs = 120 @@ -53,18 +58,27 @@ volume_ignores_strategy = "anonymous" [session] agent_status_hooks = true +auto_resume_on_restart = true auto_stop_idle_secs = 0 click_action = "live_send" confirm_before_quit = false confirm_delete = false +conversation_summary = false default_attach_mode = "tmux" delete_to_trash = false +favorites_first = true +inherit_host_environment = false live_send_exit_chord = "C-q" live_send_leader = "C-b" +live_send_on_view_switch = false merge_hooks_into_selected_agent = true mouse_capture = true +opencode_preassign_session_id = false +prevent_sleep_idle_grace_minutes = 15 +prevent_sleep_when_active = false restart_wake_message = "wake up: pick up what you were doing" row_tag = "none" +show_session_colors = true show_tips = true smart_rename = true smart_rename_agent = "" @@ -83,6 +97,9 @@ synclaude = "claude" kimiclaude = "kimiclaude" synclaude = "synclaude" +[skills] +auto_propagate = false + [sound] enabled = false @@ -101,6 +118,7 @@ name = "" clipboard = "auto" mouse = "auto" status_bar = "auto" +vt_live = true [updates] auto_update_plugins = false diff --git a/home/yolo/services.nix b/home/yolo/services.nix index 1094cce..bef048b 100644 --- a/home/yolo/services.nix +++ b/home/yolo/services.nix @@ -56,7 +56,7 @@ in }; Service = { Type = "simple"; - WorkingDirectory = "%h/tea/yolo/rev"; + WorkingDirectory = "%h/tea/rev"; # nodejs_26, not pkgs.nodejs: rev's package.json sets engines >=26 and # the nixpkgs default is 24. ExecStart = "${pkgs.nodejs_26}/bin/node server/index.ts"; @@ -80,7 +80,7 @@ in }; Service = { Type = "simple"; - WorkingDirectory = "%h/tea/yolo/rev"; + WorkingDirectory = "%h/tea/rev"; ExecStart = "${pkgs.bun}/bin/bun scripts/deploy-webhook.ts"; EnvironmentFile = "%h/.config/rev/deploy.env"; Environment = [ "PATH=${toolPath}" ]; @@ -103,11 +103,11 @@ in Unit = { Description = "Start the Friday hour log in a tmux session"; Documentation = [ "https://git.naps.pt/yolo/agent-skills" ]; - ConditionPathIsDirectory = "%h/tea/yolo/agent-skills"; + ConditionPathIsDirectory = "%h/tea/agent-skills"; }; Service = { Type = "oneshot"; - ExecStart = "%h/tea/yolo/agent-skills/bin/hourlog-session.sh"; + ExecStart = "%h/tea/agent-skills/bin/hourlog-session.sh"; Environment = [ "PATH=${toolPath}" ]; # This unit may be what starts the tmux server; the default cgroup kill # would take it back down as soon as ExecStart returns. @@ -119,11 +119,11 @@ in Unit = { Description = "Start the weekly agent-skills review in a tmux session"; Documentation = [ "https://git.naps.pt/yolo/agent-skills" ]; - ConditionPathIsDirectory = "%h/tea/yolo/agent-skills"; + ConditionPathIsDirectory = "%h/tea/agent-skills"; }; Service = { Type = "oneshot"; - ExecStart = "%h/tea/yolo/agent-skills/bin/week-review-session.sh"; + ExecStart = "%h/tea/agent-skills/bin/week-review-session.sh"; Environment = [ "PATH=${toolPath}" ]; KillMode = "process"; };