Module: Kward::ConfigFiles
- Defined in:
- lib/kward/config_files.rb
Overview
Resolves Kward configuration, cache, memory, prompt, skill, and plugin paths, and reads/writes the JSON config file used by the CLI and RPC server.
This module is the configuration boundary, not a runtime settings cache.
Most methods read the filesystem each time so CLI commands and RPC reloads can
observe edits made outside the process. Callers that need caching should own
invalidation explicitly, as Client#reload_config does for provider state.
Keep path decisions here. Higher-level code should ask ConfigFiles for
config, prompt, skill, plugin, cache, memory, and session locations instead of
reconstructing ~/.kward paths independently.
Defined Under Namespace
Classes: ConfigError, PromptTemplate, Skill
Constant Summary collapse
- MAX_SKILL_FILE_BYTES =
100_000- MAX_PROMPT_FILE_BYTES =
32 * 1024
- DEFAULT_OVERLAY_SETTINGS =
{ "alignment" => "center", "width" => "maximum" }.freeze
- PROJECT_BROWSER_ICON_THEMES =
%w[off nerd-font].freeze
- DEFAULT_PERSONAS =
{ "characters" => [ { "key" => "kward", "label" => "Kward", "instruction" => "Your name is Kward, the grim Andruid - robotic keeper of the Forest of Code, protecting the nature of good engineering principles. Speak like an old druid, be suspicious of everyone, but with good intent." } ], "default" => "kward" }.freeze
- OVERLAY_ALIGNMENTS =
%w[left center right].freeze
- OVERLAY_WIDTHS =
%w[capped maximum].freeze
Class Method Summary collapse
-
.active_persona_label(workspace_root:, model: nil, config: read_config) ⇒ Object
Returns the label of the persona selected by default/workspace/model rules.
- .add_persona_entry(entries, layer, value, name: nil) ⇒ Object
-
.agents_prompt(config: read_config) ⇒ String?
Reads global principle instructions from the config directory.
-
.cache_dir ⇒ String
Directory containing reusable local caches.
- .canonical_workspace_root(path) ⇒ Object
- .character_entries(raw) ⇒ Object
- .character_entry(entry) ⇒ Object
- .code_search_cache_dir ⇒ Object
-
.composer_busy_help?(config = read_config) ⇒ Boolean
Returns whether the composer should show busy-state keyboard help.
-
.composer_tab_keybindings(config = read_config) ⇒ Object
Returns the configured tab keybinding family, or auto when unset/invalid.
- .config_agents_path ⇒ Object
-
.config_dir ⇒ String
Directory that contains Kward's user config and adjacent prompt/skill data.
-
.config_path ⇒ String
Expanded JSON config file path.
- .config_principles_path ⇒ Object
-
.config_value(config, *keys) ⇒ Object
Returns the first present non-empty string value among several config keys.
- .crew_character_labels(personas) ⇒ Object
- .crew_characters(personas) ⇒ Object
-
.default_config ⇒ Hash
Returns a fresh default config suitable for first-run persistence.
-
.delete_config_key(key, path = config_path) ⇒ Object
Removes a top-level config key when it exists.
-
.diff_view(config = read_config) ⇒ Object
Returns the integrated diff viewer display mode.
-
.editor_auto_close_pairs?(config = read_config) ⇒ Boolean
Returns whether the built-in TUI editor should auto-close typed pairs.
-
.editor_auto_indent?(config = read_config) ⇒ Boolean
Returns whether the built-in TUI editor should auto-indent new lines.
-
.editor_bar_cursor?(config = read_config) ⇒ Boolean
Returns whether editable built-in TUI editor buffers should use a bar cursor.
-
.editor_line_numbers(config = read_config) ⇒ Object
Returns the built-in TUI editor line-number display mode.
-
.editor_mode(config = read_config) ⇒ Object
Returns the built-in TUI editor keymap mode.
-
.editor_soft_wrap?(config = read_config) ⇒ Boolean
Returns whether the built-in TUI editor should soft-wrap long lines.
-
.ekwsh_config_path ⇒ String
Embedded-shell YAML config path.
-
.enforce_workspace_agents_file?(config = read_config) ⇒ Boolean
Returns whether workspace AGENTS.md contents should be injected directly instead of a compact read-when-relevant instruction.
-
.ensure_default_config!(path = config_path) ⇒ Object
Performs ensure default config for configuration file and path handling.
- .extract_character_instruction(definition) ⇒ Object
- .extract_character_label(definition) ⇒ Object
-
.include_config_principles?(config = read_config) ⇒ Boolean
Returns whether config-directory principles are included in normal system prompt assembly.
- .inside_directory?(path, base) ⇒ Boolean
- .lifecycle_hooks_config(workspace_root = Dir.pwd) ⇒ Object
-
.mcp_servers(config = read_config) ⇒ Object
Returns configured MCP stdio servers, or an empty config when absent.
- .memory_core_path ⇒ Object
-
.memory_dir ⇒ String
Directory containing structured memory files.
- .memory_events_path ⇒ Object
- .memory_soft_path ⇒ Object
- .merge_hook_maps(left, right) ⇒ Object
- .merge_hooks_config(config, workspace_config) ⇒ Object
- .model_catalog_cache_path(provider_id) ⇒ Object
- .named_character_values(personas) ⇒ Object
- .normalize_ekwsh_aliases(values) ⇒ Object
- .normalize_ekwsh_config(data) ⇒ Object
- .normalize_ekwsh_env(values) ⇒ Object
- .normalize_ekwsh_shell(value) ⇒ Object
- .normalize_positive_integer(value, default) ⇒ Object
- .openrouter_models_cache_path ⇒ Object
-
.overlay_settings(config = read_config) ⇒ Hash
Returns validated overlay settings with defaults for missing or invalid values.
-
.permission_policy(config = read_config) ⇒ Object
Builds the opt-in model-tool permission policy from persisted configuration.
- .persona_entries(workspace_root:, model: nil, reasoning_effort: nil, now: Time.now, config: read_config, include_reasoning: true) ⇒ Object
- .persona_label_for_key(value, labels) ⇒ Object
-
.persona_prompt(workspace_root, model: nil, reasoning_effort: nil, now: Time.now, config: read_config) ⇒ String?
Builds persona prompt text from default, workspace, model, reasoning, time-of-day, weekday, and suffix config entries.
-
.plugin_dir ⇒ String
Trusted user plugin directory.
-
.plugin_paths ⇒ Array<String>
Finds trusted plugin files and package entrypoints.
- .presence(value) ⇒ Object
-
.project_browser_icon_theme(config = read_config) ⇒ Object
Returns the project browser icon theme, or off when unset or invalid.
- .project_browser_state_path ⇒ Object
-
.project_skills_trusted?(config = read_config) ⇒ Boolean
Returns whether project-level Agent Skills should be loaded from the workspace.
- .prompt_history_path(cwd, config_dir: self.config_dir, kind: "prompt") ⇒ Object
- .prompt_source_signature(path) ⇒ Object
- .prompt_template_registry ⇒ Object
-
.prompt_templates(reserved_commands: []) ⇒ Array<PromptTemplate>
Lists prompt templates exposed as slash commands.
-
.read_config(path = config_path) ⇒ Hash
Reads the JSON config file.
- .read_ekwsh_config(path = ekwsh_config_path) ⇒ Object
- .read_prompt_file(path, label) ⇒ Object
-
.read_skill_file(name, relative_path = nil, workspace_root: Dir.pwd) ⇒ String
Reads a skill file by skill name and optional relative path.
- .read_trusted_workspace_hooks ⇒ Object
- .read_trusted_workspace_hooks_config(workspace_root = Dir.pwd) ⇒ Object
- .replacement_system_prompt?(config = read_config) ⇒ Boolean
- .resolved_persona_text(value, characters: {}) ⇒ Object
-
.sandbox_policy(workspace_root, config = read_config) ⇒ Object
Builds the user-controlled command sandbox policy for a workspace.
-
.session_auto_resume_enabled?(config = read_config) ⇒ Boolean
Returns whether new frontends should resume the last active session automatically.
-
.skills(workspace_root: Dir.pwd) ⇒ Array<Skill>
Lists configured skills discovered under the config directory.
- .skills_registry(workspace_root: Dir.pwd) ⇒ Object
- .skip_config=(value) ⇒ Object
- .skip_config? ⇒ Boolean
-
.system_prompt_file(config = read_config) ⇒ Object
Returns the replacement system prompt text when configured.
-
.system_prompt_file_path(config = read_config) ⇒ Object
Returns the configured replacement system prompt path, or nil when normal prompt assembly should be used.
-
.system_prompt_sources_fingerprint ⇒ Object
Returns a lightweight fingerprint for config-owned prompt sources.
- .time_of_day_bucket(now) ⇒ Object
-
.transport_config(transport_id, config = read_config) ⇒ Object
Returns the private configuration namespace for one transport.
- .trust_workspace_hooks!(workspace_root = Dir.pwd) ⇒ Object
- .trusted_workspace_hooks_path ⇒ Object
- .untrust_workspace_hooks!(workspace_root = Dir.pwd) ⇒ Object
- .update_check_cache_path ⇒ Object
-
.update_config(values, path = config_path) ⇒ Object
Merges top-level config values and writes the updated config privately.
-
.update_nested_config(section, values, path = config_path) ⇒ Object
Merges values into a one-level nested config section and writes privately.
-
.update_overlay_settings(values) ⇒ Object
Validates and persists terminal overlay settings.
-
.web_search_config(config = read_config) ⇒ Object
Returns the nested web-search config object, or an empty config when absent.
- .weekday_name(now) ⇒ Object
- .workspace_agents_file?(workspace_root) ⇒ Boolean
- .workspace_agents_path(workspace_root) ⇒ Object
- .workspace_agents_prompt(workspace_root) ⇒ Object
-
.workspace_guardrails_enabled?(config = read_config) ⇒ Boolean
Returns whether file tools must stay inside the active workspace root.
- .workspace_hooks_digest(workspace_root = Dir.pwd) ⇒ Object
- .workspace_hooks_path(root = Dir.pwd) ⇒ Object
- .workspace_hooks_trusted?(workspace_root = Dir.pwd) ⇒ Boolean
-
.write_config(config, path = config_path) ⇒ Object
Writes config JSON using private file permissions.
Class Method Details
.active_persona_label(workspace_root:, model: nil, config: read_config) ⇒ Object
Returns the label of the persona selected by default/workspace/model rules.
690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 |
# File 'lib/kward/config_files.rb', line 690 def active_persona_label(workspace_root:, model: nil, config: read_config) personas = config["personas"] return nil unless personas.is_a?(Hash) labels = crew_character_labels(personas) active_label = persona_label_for_key(personas["default"], labels) unless personas["default"].nil? workspaces = personas["workspaces"] if workspaces.is_a?(Hash) root = canonical_workspace_root(workspace_root) workspaces.each do |path, key| next unless canonical_workspace_root(path) == root active_label = persona_label_for_key(key, labels) break end end models = personas["models"] if models.is_a?(Hash) && !model.to_s.empty? && models.key?(model.to_s) active_label = persona_label_for_key(models[model.to_s], labels) end active_label end |
.add_persona_entry(entries, layer, value, name: nil) ⇒ Object
809 810 811 812 813 814 |
# File 'lib/kward/config_files.rb', line 809 def add_persona_entry(entries, layer, value, name: nil) text = presence(value) return unless text entries << { layer: layer.to_s, name: name.to_s, prompt: text } end |
.agents_prompt(config: read_config) ⇒ String?
Reads global principle instructions from the config directory.
PRINCIPLES.md is preferred. AGENTS.md remains a backwards-compatible
alias for existing installations.
604 605 606 607 608 609 610 611 |
# File 'lib/kward/config_files.rb', line 604 def agents_prompt(config: read_config) return nil unless include_config_principles?(config) path = config_principles_path return read_prompt_file(path, "Kward principles file") if File.exist?(path) read_prompt_file(config_agents_path, "Kward AGENTS.md alias") end |
.cache_dir ⇒ String
Returns directory containing reusable local caches.
97 98 99 |
# File 'lib/kward/config_files.rb', line 97 def cache_dir File.join(config_dir, "cache") end |
.canonical_workspace_root(path) ⇒ Object
804 805 806 807 |
# File 'lib/kward/config_files.rb', line 804 def canonical_workspace_root(path) = File.(path.to_s.empty? ? Dir.pwd : path.to_s) File.directory?() ? File.realpath() : end |
.character_entries(raw) ⇒ Object
856 857 858 859 860 861 862 863 864 865 |
# File 'lib/kward/config_files.rb', line 856 def character_entries(raw) case raw when Hash raw.map { |key, definition| [key, definition] } when Array raw.filter_map { |entry| character_entry(entry) } else [] end end |
.character_entry(entry) ⇒ Object
867 868 869 870 871 872 873 874 875 876 |
# File 'lib/kward/config_files.rb', line 867 def character_entry(entry) return nil unless entry.is_a?(Hash) if entry.length == 1 && entry.keys.first.is_a?(String) [entry.keys.first, entry.values.first] else key = entry["key"] || entry[:key] || entry["id"] || entry[:id] || entry["name"] || entry[:name] key.to_s.empty? ? nil : [key, entry] end end |
.code_search_cache_dir ⇒ Object
187 188 189 |
# File 'lib/kward/config_files.rb', line 187 def code_search_cache_dir File.join(cache_dir, "code_search") end |
.composer_busy_help?(config = read_config) ⇒ Boolean
Returns whether the composer should show busy-state keyboard help.
458 459 460 461 |
# File 'lib/kward/config_files.rb', line 458 def composer_busy_help?(config = read_config) composer = config["composer"].is_a?(Hash) ? config["composer"] : {} composer["busy_help"] != false end |
.composer_tab_keybindings(config = read_config) ⇒ Object
Returns the configured tab keybinding family, or auto when unset/invalid.
464 465 466 467 468 |
# File 'lib/kward/config_files.rb', line 464 def composer_tab_keybindings(config = read_config) composer = config["composer"].is_a?(Hash) ? config["composer"] : {} value = composer["tab_keybindings"].to_s.downcase %w[auto ctrl alt].include?(value) ? value : "auto" end |
.config_agents_path ⇒ Object
663 664 665 |
# File 'lib/kward/config_files.rb', line 663 def config_agents_path File.join(config_dir, "AGENTS.md") end |
.config_dir ⇒ String
Directory that contains Kward's user config and adjacent prompt/skill
data. Defaults to ~/.kward, or the directory of KWARD_CONFIG_PATH.
84 85 86 87 88 89 |
# File 'lib/kward/config_files.rb', line 84 def config_dir config_path = ENV["KWARD_CONFIG_PATH"] return File.(File.dirname(config_path)) if config_path && !config_path.empty? File.("~/.kward") end |
.config_path ⇒ String
Returns expanded JSON config file path.
92 93 94 |
# File 'lib/kward/config_files.rb', line 92 def config_path File.(ENV["KWARD_CONFIG_PATH"] || File.join(config_dir, "config.json")) end |
.config_principles_path ⇒ Object
659 660 661 |
# File 'lib/kward/config_files.rb', line 659 def config_principles_path File.join(config_dir, "PRINCIPLES.md") end |
.config_value(config, *keys) ⇒ Object
Returns the first present non-empty string value among several config keys.
427 428 429 430 431 432 433 |
# File 'lib/kward/config_files.rb', line 427 def config_value(config, *keys) keys.each do |key| text = presence(config[key]) return text if text end nil end |
.crew_character_labels(personas) ⇒ Object
822 823 824 825 826 |
# File 'lib/kward/config_files.rb', line 822 def crew_character_labels(personas) named_character_values(personas) do |_key, definition| extract_character_label(definition) end end |
.crew_characters(personas) ⇒ Object
816 817 818 819 820 |
# File 'lib/kward/config_files.rb', line 816 def crew_characters(personas) named_character_values(personas) do |_key, definition| extract_character_instruction(definition) end end |
.default_config ⇒ Hash
Returns a fresh default config suitable for first-run persistence.
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
# File 'lib/kward/config_files.rb', line 117 def default_config { "personas" => JSON.parse(JSON.generate(DEFAULT_PERSONAS)), "memory" => { "enabled" => false, "auto_summary" => false }, "composer" => { "busy_help" => true, "tab_keybindings" => "auto" }, "editor" => { "mode" => "modern", "auto_indent" => true, "auto_close_pairs" => true, "soft_wrap" => true, "bar_cursor" => true, "line_numbers" => "absolute", "diff_view" => "auto" }, "overlay" => DEFAULT_OVERLAY_SETTINGS.dup, "project_browser" => { "icons" => "off" }, "web_search" => { "enabled" => true, "provider" => "auto", "allow_model_providers" => false }, "updates" => { "check" => true }, "sessions" => { "auto_resume" => false }, "skills" => { "trust_project" => false }, "enforce_workspace_agents_file" => false, "system_prompt" => { "include_principles" => true }, "mcpServers" => {}, "transports" => {}, "tools" => { "workspace_guardrails" => true }, "permissions" => { "enabled" => false, "mode" => "ask" }, "sandbox" => { "mode" => "off", "network" => "deny", "writable_roots" => [], "protect_git_metadata" => true } } end |
.delete_config_key(key, path = config_path) ⇒ Object
Removes a top-level config key when it exists.
418 419 420 421 422 423 424 |
# File 'lib/kward/config_files.rb', line 418 def delete_config_key(key, path = config_path) config = read_config(path) existed = config.key?(key.to_s) config.delete(key.to_s) write_config(config, path) if existed existed end |
.diff_view(config = read_config) ⇒ Object
Returns the integrated diff viewer display mode.
507 508 509 510 |
# File 'lib/kward/config_files.rb', line 507 def diff_view(config = read_config) editor = config["editor"].is_a?(Hash) ? config["editor"] : {} DiffViewMode.normalize(editor["diff_view"]) end |
.editor_auto_close_pairs?(config = read_config) ⇒ Boolean
Returns whether the built-in TUI editor should auto-close typed pairs.
483 484 485 486 |
# File 'lib/kward/config_files.rb', line 483 def editor_auto_close_pairs?(config = read_config) editor = config["editor"].is_a?(Hash) ? config["editor"] : {} editor["auto_close_pairs"] != false end |
.editor_auto_indent?(config = read_config) ⇒ Boolean
Returns whether the built-in TUI editor should auto-indent new lines.
477 478 479 480 |
# File 'lib/kward/config_files.rb', line 477 def editor_auto_indent?(config = read_config) editor = config["editor"].is_a?(Hash) ? config["editor"] : {} editor["auto_indent"] != false end |
.editor_bar_cursor?(config = read_config) ⇒ Boolean
Returns whether editable built-in TUI editor buffers should use a bar cursor.
495 496 497 498 |
# File 'lib/kward/config_files.rb', line 495 def (config = read_config) editor = config["editor"].is_a?(Hash) ? config["editor"] : {} editor["bar_cursor"] != false end |
.editor_line_numbers(config = read_config) ⇒ Object
Returns the built-in TUI editor line-number display mode.
501 502 503 504 |
# File 'lib/kward/config_files.rb', line 501 def editor_line_numbers(config = read_config) editor = config["editor"].is_a?(Hash) ? config["editor"] : {} EditorMode.normalize_line_numbers(editor["line_numbers"]) end |
.editor_mode(config = read_config) ⇒ Object
Returns the built-in TUI editor keymap mode.
471 472 473 474 |
# File 'lib/kward/config_files.rb', line 471 def editor_mode(config = read_config) editor = config["editor"].is_a?(Hash) ? config["editor"] : {} EditorMode.normalize(editor["mode"]) end |
.editor_soft_wrap?(config = read_config) ⇒ Boolean
Returns whether the built-in TUI editor should soft-wrap long lines.
489 490 491 492 |
# File 'lib/kward/config_files.rb', line 489 def editor_soft_wrap?(config = read_config) editor = config["editor"].is_a?(Hash) ? config["editor"] : {} editor["soft_wrap"] != false end |
.ekwsh_config_path ⇒ String
Returns embedded-shell YAML config path.
102 103 104 |
# File 'lib/kward/config_files.rb', line 102 def ekwsh_config_path File.join(config_dir, "ekwsh.yml") end |
.enforce_workspace_agents_file?(config = read_config) ⇒ Boolean
Returns whether workspace AGENTS.md contents should be injected directly instead of a compact read-when-relevant instruction.
549 550 551 |
# File 'lib/kward/config_files.rb', line 549 def enforce_workspace_agents_file?(config = read_config) config["enforce_workspace_agents_file"] == true end |
.ensure_default_config!(path = config_path) ⇒ Object
Performs ensure default config for configuration file and path handling.
178 179 180 181 182 183 184 185 |
# File 'lib/kward/config_files.rb', line 178 def ensure_default_config!(path = config_path) path = File.(path) return false if skip_config? && path == config_path return false if File.exist?(path) write_config(default_config, path) true end |
.extract_character_instruction(definition) ⇒ Object
884 885 886 887 888 889 890 891 892 893 |
# File 'lib/kward/config_files.rb', line 884 def extract_character_instruction(definition) return nil if definition.nil? if definition.is_a?(Hash) value = definition["instruction"] || definition[:instruction] return presence(value) end presence(definition) end |
.extract_character_label(definition) ⇒ Object
878 879 880 881 882 |
# File 'lib/kward/config_files.rb', line 878 def extract_character_label(definition) return nil unless definition.is_a?(Hash) presence(definition["label"] || definition[:label]) end |
.include_config_principles?(config = read_config) ⇒ Boolean
Returns whether config-directory principles are included in normal system prompt assembly. Replacement prompt files bypass all assembled sections.
615 616 617 618 619 620 |
# File 'lib/kward/config_files.rb', line 615 def include_config_principles?(config = read_config) settings = config["system_prompt"] return true unless settings.is_a?(Hash) settings["include_principles"] != false end |
.inside_directory?(path, base) ⇒ Boolean
975 976 977 |
# File 'lib/kward/config_files.rb', line 975 def inside_directory?(path, base) PathGuard.inside?(path, base) end |
.lifecycle_hooks_config(workspace_root = Dir.pwd) ⇒ Object
267 268 269 270 271 272 273 |
# File 'lib/kward/config_files.rb', line 267 def lifecycle_hooks_config(workspace_root = Dir.pwd) config = read_config workspace_config = read_trusted_workspace_hooks_config(workspace_root) return config if workspace_config.empty? merge_hooks_config(config, workspace_config) end |
.mcp_servers(config = read_config) ⇒ Object
Returns configured MCP stdio servers, or an empty config when absent.
569 570 571 572 |
# File 'lib/kward/config_files.rb', line 569 def mcp_servers(config = read_config) value = config["mcpServers"] || config.dig("mcp", "servers") value.is_a?(Hash) ? value : {} end |
.memory_core_path ⇒ Object
222 223 224 |
# File 'lib/kward/config_files.rb', line 222 def memory_core_path File.join(memory_dir, "core.json") end |
.memory_dir ⇒ String
Returns directory containing structured memory files.
218 219 220 |
# File 'lib/kward/config_files.rb', line 218 def memory_dir File.join(config_dir, "memory") end |
.memory_events_path ⇒ Object
230 231 232 |
# File 'lib/kward/config_files.rb', line 230 def memory_events_path File.join(memory_dir, "events.jsonl") end |
.memory_soft_path ⇒ Object
226 227 228 |
# File 'lib/kward/config_files.rb', line 226 def memory_soft_path File.join(memory_dir, "soft.jsonl") end |
.merge_hook_maps(left, right) ⇒ Object
323 324 325 326 327 328 329 330 331 |
# File 'lib/kward/config_files.rb', line 323 def merge_hook_maps(left, right) left = left.is_a?(Hash) ? left : {} right = right.is_a?(Hash) ? right : {} merged = JSON.parse(JSON.generate(left)) right.each do |event, entries| merged[event.to_s] = Array(merged[event.to_s]) + Array(entries) end merged end |
.merge_hooks_config(config, workspace_config) ⇒ Object
317 318 319 320 321 |
# File 'lib/kward/config_files.rb', line 317 def merge_hooks_config(config, workspace_config) merged = JSON.parse(JSON.generate(config || {})) merged["hooks"] = merge_hook_maps(merged["hooks"], workspace_config["hooks"] || workspace_config[:hooks]) merged end |
.model_catalog_cache_path(provider_id) ⇒ Object
195 196 197 198 199 200 |
# File 'lib/kward/config_files.rb', line 195 def model_catalog_cache_path(provider_id) provider = provider_id.to_s.gsub(/[^a-z0-9_-]/i, "_") raise ArgumentError, "Provider id must be a non-empty string" if provider.empty? File.join(cache_dir, "models", "#{provider}.json") end |
.named_character_values(personas) ⇒ Object
847 848 849 850 851 852 853 854 |
# File 'lib/kward/config_files.rb', line 847 def named_character_values(personas) character_entries(personas["characters"] || personas["crew"]).each_with_object({}) do |(key, definition), mapping| value = yield(key, definition) next if value.to_s.empty? mapping[key.to_s] = value end end |
.normalize_ekwsh_aliases(values) ⇒ Object
383 384 385 386 387 388 389 390 391 392 393 394 |
# File 'lib/kward/config_files.rb', line 383 def normalize_ekwsh_aliases(values) return {} unless values.is_a?(Hash) values.each_with_object({}) do |(name, command), result| name = name.to_s command = command.to_s.strip next unless Ekwsh.valid_alias_name?(name) next if command.empty? result[name] = command end end |
.normalize_ekwsh_config(data) ⇒ Object
343 344 345 346 347 348 349 350 351 352 353 354 |
# File 'lib/kward/config_files.rb', line 343 def normalize_ekwsh_config(data) data = data.transform_keys(&:to_s) if data.is_a?(Hash) settings = data.is_a?(Hash) ? data : {} { shell: normalize_ekwsh_shell(settings["shell"]), timeout_seconds: normalize_positive_integer(settings["timeout_seconds"], Ekwsh::DEFAULT_TIMEOUT_SECONDS), max_output_bytes: normalize_positive_integer(settings["max_output_bytes"], Ekwsh::DEFAULT_MAX_OUTPUT_BYTES), history_limit: normalize_positive_integer(settings["history_limit"], Ekwsh::DEFAULT_HISTORY_LIMIT), env: normalize_ekwsh_env(settings["env"]), aliases: normalize_ekwsh_aliases(settings["aliases"]) } end |
.normalize_ekwsh_env(values) ⇒ Object
371 372 373 374 375 376 377 378 379 380 381 |
# File 'lib/kward/config_files.rb', line 371 def normalize_ekwsh_env(values) return {} unless values.is_a?(Hash) values.each_with_object({}) do |(key, value), result| key = key.to_s next unless key.match?(/\A[A-Za-z_][A-Za-z0-9_]*\z/) next if value.nil? result[key] = value.to_s end end |
.normalize_ekwsh_shell(value) ⇒ Object
356 357 358 359 360 361 362 |
# File 'lib/kward/config_files.rb', line 356 def normalize_ekwsh_shell(value) shell = value.to_s.strip return Ekwsh::DEFAULT_SHELL if shell.empty? return shell if shell.start_with?("/") && File.executable?(shell) Ekwsh::DEFAULT_SHELL end |
.normalize_positive_integer(value, default) ⇒ Object
364 365 366 367 368 369 |
# File 'lib/kward/config_files.rb', line 364 def normalize_positive_integer(value, default) integer = Integer(value) integer.positive? ? integer : default rescue ArgumentError, TypeError default end |
.openrouter_models_cache_path ⇒ Object
191 192 193 |
# File 'lib/kward/config_files.rb', line 191 def openrouter_models_cache_path File.join(cache_dir, "openrouter_models.json") end |
.overlay_settings(config = read_config) ⇒ Hash
Returns validated overlay settings with defaults for missing or invalid values.
440 441 442 443 444 445 446 447 448 |
# File 'lib/kward/config_files.rb', line 440 def (config = read_config) = config["overlay"].is_a?(Hash) ? config["overlay"] : {} settings = DEFAULT_OVERLAY_SETTINGS.dup alignment = ["alignment"].to_s width = ["width"].to_s settings["alignment"] = alignment if OVERLAY_ALIGNMENTS.include?(alignment) settings["width"] = width if OVERLAY_WIDTHS.include?(width) settings end |
.permission_policy(config = read_config) ⇒ Object
Builds the opt-in model-tool permission policy from persisted configuration.
519 520 521 |
# File 'lib/kward/config_files.rb', line 519 def (config = read_config) Permissions::Policy.from_config(config) end |
.persona_entries(workspace_root:, model: nil, reasoning_effort: nil, now: Time.now, config: read_config, include_reasoning: true) ⇒ Object
716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 |
# File 'lib/kward/config_files.rb', line 716 def persona_entries(workspace_root:, model: nil, reasoning_effort: nil, now: Time.now, config: read_config, include_reasoning: true) personas = config["personas"] return [] unless personas.is_a?(Hash) characters = crew_characters(personas) entries = [] active_persona = { layer: "default", value: personas["default"], name: nil } workspaces = personas["workspaces"] if workspaces.is_a?(Hash) root = canonical_workspace_root(workspace_root) workspaces.each do |path, key| if canonical_workspace_root(path) == root active_persona = { layer: "workspace", value: key, name: path } break end end end models = personas["models"] if models.is_a?(Hash) && !model.to_s.empty? && models.key?(model.to_s) active_persona = { layer: "model", value: models[model.to_s], name: model.to_s } end add_persona_entry( entries, active_persona.fetch(:layer), resolved_persona_text(active_persona.fetch(:value), characters: characters), name: active_persona[:name] ) modifiers = personas["persona_modifiers"] if modifiers.is_a?(Hash) if include_reasoning reasoning = modifiers["reasoning"] add_persona_entry(entries, "reasoning", reasoning[reasoning_effort.to_s]) if reasoning.is_a?(Hash) && !reasoning_effort.to_s.empty? end time_of_day = modifiers["time_of_day"] bucket = time_of_day_bucket(now) add_persona_entry(entries, "time_of_day", time_of_day[bucket], name: bucket) if time_of_day.is_a?(Hash) weekday = modifiers["weekday"] day = weekday_name(now) add_persona_entry(entries, "weekday", weekday[day], name: day) if weekday.is_a?(Hash) add_persona_entry(entries, "suffix", modifiers["suffix"]) end entries end |
.persona_label_for_key(value, labels) ⇒ Object
840 841 842 843 844 845 |
# File 'lib/kward/config_files.rb', line 840 def persona_label_for_key(value, labels) key = value.to_s.strip return nil if key.empty? presence(labels[key]) end |
.persona_prompt(workspace_root, model: nil, reasoning_effort: nil, now: Time.now, config: read_config) ⇒ String?
Builds persona prompt text from default, workspace, model, reasoning, time-of-day, weekday, and suffix config entries.
Persona resolution is intentionally data-driven so users can edit config without plugin code. Keep new persona selectors additive and deterministic; prompt construction depends on stable ordering.
680 681 682 683 684 685 686 687 |
# File 'lib/kward/config_files.rb', line 680 def persona_prompt(workspace_root, model: nil, reasoning_effort: nil, now: Time.now, config: read_config) text = persona_entries(workspace_root: workspace_root, model: model, reasoning_effort: reasoning_effort, now: now, config: config).map do |entry| entry[:prompt] end.join("\n\n") return nil if text.empty? text end |
.plugin_dir ⇒ String
Returns trusted user plugin directory.
916 917 918 |
# File 'lib/kward/config_files.rb', line 916 def plugin_dir File.("~/.kward/plugins") end |
.plugin_paths ⇒ Array<String>
Finds trusted plugin files and package entrypoints.
Plugins are intentionally loaded only from ~/.kward/plugins, not from a
workspace or custom KWARD_CONFIG_PATH directory.
926 927 928 929 930 931 932 933 934 935 936 |
# File 'lib/kward/config_files.rb', line 926 def plugin_paths plugins_root = plugin_dir return [] unless Dir.exist?(plugins_root) paths = Dir.glob(File.join(plugins_root, "*.rb")) paths.concat(Dir.glob(File.join(plugins_root, "*", "plugin.rb"))) paths.sort rescue StandardError => e warn "Warning: skipping Kward plugins in #{plugins_root}: #{e.}" [] end |
.presence(value) ⇒ Object
979 980 981 982 |
# File 'lib/kward/config_files.rb', line 979 def presence(value) text = value.to_s text.empty? ? nil : text end |
.project_browser_icon_theme(config = read_config) ⇒ Object
Returns the project browser icon theme, or off when unset or invalid.
451 452 453 454 455 |
# File 'lib/kward/config_files.rb', line 451 def project_browser_icon_theme(config = read_config) browser = config["project_browser"].is_a?(Hash) ? config["project_browser"] : {} theme = browser["icons"].to_s PROJECT_BROWSER_ICON_THEMES.include?(theme) ? theme : "off" end |
.project_browser_state_path ⇒ Object
206 207 208 |
# File 'lib/kward/config_files.rb', line 206 def project_browser_state_path File.join(cache_dir, "project_browser_state.json") end |
.project_skills_trusted?(config = read_config) ⇒ Boolean
Returns whether project-level Agent Skills should be loaded from the workspace.
536 537 538 539 |
# File 'lib/kward/config_files.rb', line 536 def project_skills_trusted?(config = read_config) skills = config["skills"].is_a?(Hash) ? config["skills"] : {} skills["trust_project"] == true end |
.prompt_history_path(cwd, config_dir: self.config_dir, kind: "prompt") ⇒ Object
210 211 212 213 214 215 |
# File 'lib/kward/config_files.rb', line 210 def prompt_history_path(cwd, config_dir: self.config_dir, kind: "prompt") key = Digest::SHA256.hexdigest(canonical_workspace_root(cwd))[0, 24] return File.join(config_dir, "history", "#{key}.jsonl") if kind.to_s == "prompt" File.join(config_dir, "history", kind.to_s, "#{key}.jsonl") end |
.prompt_source_signature(path) ⇒ Object
780 781 782 783 784 785 786 787 |
# File 'lib/kward/config_files.rb', line 780 def prompt_source_signature(path) return "#{path}:missing" unless File.exist?(path) stat = File.stat(path) "#{path}:#{stat.size}:#{stat.mtime.to_f}" rescue StandardError "#{path}:unavailable" end |
.prompt_template_registry ⇒ Object
967 968 969 970 971 972 973 |
# File 'lib/kward/config_files.rb', line 967 def prompt_template_registry Prompts::Templates.new( config_dir: config_dir, template_class: PromptTemplate, markdown_parser: ->(path) { Frontmatter.markdown_parts(path) } ) end |
.prompt_templates(reserved_commands: []) ⇒ Array<PromptTemplate>
Lists prompt templates exposed as slash commands.
942 943 944 |
# File 'lib/kward/config_files.rb', line 942 def prompt_templates(reserved_commands: []) prompt_template_registry.prompt_templates(reserved_commands: reserved_commands) end |
.read_config(path = config_path) ⇒ Hash
Reads the JSON config file.
Missing files are treated as an empty config. Invalid JSON raises a user-facing error that includes the file path. This method does not merge defaults; callers should apply feature-specific defaults at the point where behavior is decided.
243 244 245 246 247 248 249 250 251 252 253 254 |
# File 'lib/kward/config_files.rb', line 243 def read_config(path = config_path) path = File.(path) return {} if skip_config? && path == config_path return {} unless File.exist?(path) config = JSON.parse(File.read(path)) return config if config.is_a?(Hash) raise ConfigError.new(path: path, format: "JSON", detail: "top-level value must be an object") rescue JSON::ParserError => e raise ConfigError.new(path: path, format: "JSON", detail: e.) end |
.read_ekwsh_config(path = ekwsh_config_path) ⇒ Object
333 334 335 336 337 338 339 340 341 |
# File 'lib/kward/config_files.rb', line 333 def read_ekwsh_config(path = ekwsh_config_path) path = File.(path) return normalize_ekwsh_config(nil) unless File.exist?(path) data = YAML.safe_load(File.read(path), permitted_classes: [], aliases: false) normalize_ekwsh_config(data) rescue Psych::SyntaxError => e raise "Invalid ekwsh YAML config: #{path}: #{e.}" end |
.read_prompt_file(path, label) ⇒ Object
789 790 791 792 793 794 795 796 797 798 799 800 801 802 |
# File 'lib/kward/config_files.rb', line 789 def read_prompt_file(path, label) return nil unless File.exist?(path) size = File.size(path) if size > MAX_PROMPT_FILE_BYTES warn "Warning: skipping #{label} #{path}: file too large (#{size} bytes; limit is #{MAX_PROMPT_FILE_BYTES} bytes)" return nil end File.read(path) rescue StandardError => e warn "Warning: skipping #{label} #{path}: #{e.}" nil end |
.read_skill_file(name, relative_path = nil, workspace_root: Dir.pwd) ⇒ String
Reads a skill file by skill name and optional relative path.
951 952 953 |
# File 'lib/kward/config_files.rb', line 951 def read_skill_file(name, relative_path = nil, workspace_root: Dir.pwd) skills_registry(workspace_root: workspace_root).read_skill_file(name, relative_path) end |
.read_trusted_workspace_hooks ⇒ Object
310 311 312 313 314 315 |
# File 'lib/kward/config_files.rb', line 310 def read_trusted_workspace_hooks config = read_config(trusted_workspace_hooks_path) config.is_a?(Hash) ? config : {} rescue ConfigError {} end |
.read_trusted_workspace_hooks_config(workspace_root = Dir.pwd) ⇒ Object
275 276 277 278 279 280 |
# File 'lib/kward/config_files.rb', line 275 def read_trusted_workspace_hooks_config(workspace_root = Dir.pwd) path = workspace_hooks_path(workspace_root) return {} unless workspace_hooks_trusted?(workspace_root) read_config(path) end |
.replacement_system_prompt?(config = read_config) ⇒ Boolean
643 644 645 |
# File 'lib/kward/config_files.rb', line 643 def replacement_system_prompt?(config = read_config) !system_prompt_file_path(config).nil? end |
.resolved_persona_text(value, characters: {}) ⇒ Object
828 829 830 831 832 833 834 835 836 837 838 |
# File 'lib/kward/config_files.rb', line 828 def resolved_persona_text(value, characters: {}) return nil if value.nil? key = value.to_s.strip return nil if key.empty? text = characters[key.to_s] return text unless text.to_s.empty? value end |
.sandbox_policy(workspace_root, config = read_config) ⇒ Object
Builds the user-controlled command sandbox policy for a workspace.
524 525 526 527 528 529 530 531 532 533 |
# File 'lib/kward/config_files.rb', line 524 def sandbox_policy(workspace_root, config = read_config) sandbox = config["sandbox"].is_a?(Hash) ? config["sandbox"] : {} Sandbox::Policy.new( mode: sandbox.fetch("mode", "off"), network: sandbox.fetch("network", "deny"), workspace_root: workspace_root, writable_roots: sandbox.fetch("writable_roots", []), protect_git_metadata: sandbox.fetch("protect_git_metadata", true) ) end |
.session_auto_resume_enabled?(config = read_config) ⇒ Boolean
Returns whether new frontends should resume the last active session automatically.
542 543 544 545 |
# File 'lib/kward/config_files.rb', line 542 def session_auto_resume_enabled?(config = read_config) sessions = config["sessions"].is_a?(Hash) ? config["sessions"] : {} sessions["auto_resume"] == true end |
.skills(workspace_root: Dir.pwd) ⇒ Array<Skill>
Lists configured skills discovered under the config directory.
911 912 913 |
# File 'lib/kward/config_files.rb', line 911 def skills(workspace_root: Dir.pwd) skills_registry(workspace_root: workspace_root).skills end |
.skills_registry(workspace_root: Dir.pwd) ⇒ Object
955 956 957 958 959 960 961 962 963 964 965 |
# File 'lib/kward/config_files.rb', line 955 def skills_registry(workspace_root: Dir.pwd) Skills::Registry.new( config_dir: config_dir, workspace_root: workspace_root, project_skills_trusted: project_skills_trusted?, skill_class: Skill, max_file_bytes: MAX_SKILL_FILE_BYTES, markdown_parser: ->(path) { Frontmatter.markdown_parts(path, lenient: true) }, inside_directory: method(:inside_directory?) ) end |
.skip_config=(value) ⇒ Object
72 73 74 |
# File 'lib/kward/config_files.rb', line 72 def skip_config=(value) @skip_config = value end |
.skip_config? ⇒ Boolean
76 77 78 |
# File 'lib/kward/config_files.rb', line 76 def skip_config? @skip_config == true end |
.system_prompt_file(config = read_config) ⇒ Object
Returns the replacement system prompt text when configured. A configured but unavailable file intentionally yields nil: callers must not fall back to Kward's larger assembled prompt in replacement mode.
636 637 638 639 640 641 |
# File 'lib/kward/config_files.rb', line 636 def system_prompt_file(config = read_config) path = system_prompt_file_path(config) return nil unless path read_prompt_file(path, "custom system prompt file") end |
.system_prompt_file_path(config = read_config) ⇒ Object
Returns the configured replacement system prompt path, or nil when normal prompt assembly should be used. Relative paths are anchored to the config directory so configuration remains portable with KWARD_CONFIG_PATH.
625 626 627 628 629 630 631 |
# File 'lib/kward/config_files.rb', line 625 def system_prompt_file_path(config = read_config) settings = config["system_prompt"] value = settings.is_a?(Hash) ? settings["file"].to_s.strip : "" return nil if value.empty? File.(value, config_dir) end |
.system_prompt_sources_fingerprint ⇒ Object
Returns a lightweight fingerprint for config-owned prompt sources. It is used by active conversations to pick up prompt edits without a restart.
649 650 651 652 653 654 655 656 657 |
# File 'lib/kward/config_files.rb', line 649 def system_prompt_sources_fingerprint config = read_config paths = [config_path, system_prompt_file_path(config)] if include_config_principles?(config) paths << (File.exist?(config_principles_path) ? config_principles_path : config_agents_path) end paths.compact.map { |path| prompt_source_signature(path) }.join("\0") end |
.time_of_day_bucket(now) ⇒ Object
895 896 897 898 899 900 901 902 |
# File 'lib/kward/config_files.rb', line 895 def time_of_day_bucket(now) hour = now.hour return "morning" if hour >= 5 && hour < 11 return "before_lunch" if hour == 11 return "late_evening" if hour >= 21 || hour < 5 nil end |
.transport_config(transport_id, config = read_config) ⇒ Object
Returns the private configuration namespace for one transport.
560 561 562 563 564 565 566 |
# File 'lib/kward/config_files.rb', line 560 def transport_config(transport_id, config = read_config) transports = config["transports"] return {} unless transports.is_a?(Hash) values = transports[transport_id.to_s] values.is_a?(Hash) ? DeepCopy.dup(values) : {} end |
.trust_workspace_hooks!(workspace_root = Dir.pwd) ⇒ Object
290 291 292 293 294 295 296 297 |
# File 'lib/kward/config_files.rb', line 290 def trust_workspace_hooks!(workspace_root = Dir.pwd) path = workspace_hooks_path(workspace_root) raise "No workspace hook config found: #{path}" unless File.file?(path) trusted = read_trusted_workspace_hooks trusted[File.(path)] = workspace_hooks_digest(workspace_root) PrivateFile.write_json(trusted_workspace_hooks_path, trusted) end |
.trusted_workspace_hooks_path ⇒ Object
110 111 112 |
# File 'lib/kward/config_files.rb', line 110 def trusted_workspace_hooks_path File.join(config_dir, "trusted_workspace_hooks.json") end |
.untrust_workspace_hooks!(workspace_root = Dir.pwd) ⇒ Object
299 300 301 302 303 304 |
# File 'lib/kward/config_files.rb', line 299 def untrust_workspace_hooks!(workspace_root = Dir.pwd) path = File.(workspace_hooks_path(workspace_root)) trusted = read_trusted_workspace_hooks trusted.delete(path) PrivateFile.write_json(trusted_workspace_hooks_path, trusted) end |
.update_check_cache_path ⇒ Object
202 203 204 |
# File 'lib/kward/config_files.rb', line 202 def update_check_cache_path File.join(cache_dir, "update_check.json") end |
.update_config(values, path = config_path) ⇒ Object
Merges top-level config values and writes the updated config privately.
397 398 399 400 401 402 403 404 |
# File 'lib/kward/config_files.rb', line 397 def update_config(values, path = config_path) raise "Config values must be an object" unless values.is_a?(Hash) config = read_config(path) values.each { |key, value| config[key.to_s] = value } write_config(config, path) config end |
.update_nested_config(section, values, path = config_path) ⇒ Object
Merges values into a one-level nested config section and writes privately.
407 408 409 410 411 412 413 414 415 |
# File 'lib/kward/config_files.rb', line 407 def update_nested_config(section, values, path = config_path) raise "Config values must be an object" unless values.is_a?(Hash) config = read_config(path) current = config[section.to_s].is_a?(Hash) ? config[section.to_s].dup : {} config[section.to_s] = current.merge(values.transform_keys(&:to_s)) write_config(config, path) config end |
.update_overlay_settings(values) ⇒ Object
Validates and persists terminal overlay settings.
575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 |
# File 'lib/kward/config_files.rb', line 575 def (values) raise "Overlay settings must be an object" unless values.is_a?(Hash) config = read_config = (config) values.each do |key, value| key = key.to_s value = value.to_s case key when "alignment" raise "Overlay alignment must be left, center, or right" unless OVERLAY_ALIGNMENTS.include?(value) when "width" raise "Overlay width must be capped or maximum" unless OVERLAY_WIDTHS.include?(value) else raise "Unknown overlay setting: #{key}" end [key] = value end config["overlay"] = write_config(config) (config) end |
.web_search_config(config = read_config) ⇒ Object
Returns the nested web-search config object, or an empty config when absent.
554 555 556 557 |
# File 'lib/kward/config_files.rb', line 554 def web_search_config(config = read_config) value = config["web_search"] value.is_a?(Hash) ? value : {} end |
.weekday_name(now) ⇒ Object
904 905 906 |
# File 'lib/kward/config_files.rb', line 904 def weekday_name(now) %w[sunday monday tuesday wednesday thursday friday saturday][now.wday] end |
.workspace_agents_file?(workspace_root) ⇒ Boolean
772 773 774 |
# File 'lib/kward/config_files.rb', line 772 def workspace_agents_file?(workspace_root) File.exist?(workspace_agents_path(workspace_root)) end |
.workspace_agents_path(workspace_root) ⇒ Object
768 769 770 |
# File 'lib/kward/config_files.rb', line 768 def workspace_agents_path(workspace_root) File.join(canonical_workspace_root(workspace_root), "AGENTS.md") end |
.workspace_agents_prompt(workspace_root) ⇒ Object
776 777 778 |
# File 'lib/kward/config_files.rb', line 776 def workspace_agents_prompt(workspace_root) read_prompt_file(workspace_agents_path(workspace_root), "workspace AGENTS.md") end |
.workspace_guardrails_enabled?(config = read_config) ⇒ Boolean
Returns whether file tools must stay inside the active workspace root.
513 514 515 516 |
# File 'lib/kward/config_files.rb', line 513 def workspace_guardrails_enabled?(config = read_config) tools = config["tools"].is_a?(Hash) ? config["tools"] : {} tools["workspace_guardrails"] != false end |
.workspace_hooks_digest(workspace_root = Dir.pwd) ⇒ Object
306 307 308 |
# File 'lib/kward/config_files.rb', line 306 def workspace_hooks_digest(workspace_root = Dir.pwd) Digest::SHA256.file(workspace_hooks_path(workspace_root)).hexdigest end |
.workspace_hooks_path(root = Dir.pwd) ⇒ Object
106 107 108 |
# File 'lib/kward/config_files.rb', line 106 def workspace_hooks_path(root = Dir.pwd) File.join(File.(root), ".kward", "hooks.json") end |
.workspace_hooks_trusted?(workspace_root = Dir.pwd) ⇒ Boolean
282 283 284 285 286 287 288 |
# File 'lib/kward/config_files.rb', line 282 def workspace_hooks_trusted?(workspace_root = Dir.pwd) path = workspace_hooks_path(workspace_root) return false unless File.file?(path) trusted = read_trusted_workspace_hooks trusted[File.(path)] == workspace_hooks_digest(workspace_root) end |
.write_config(config, path = config_path) ⇒ Object
Writes config JSON using private file permissions.
260 261 262 263 264 265 |
# File 'lib/kward/config_files.rb', line 260 def write_config(config, path = config_path) path = File.(path) raise "Cannot write Kward config while --skip-config is active: #{path}" if skip_config? && path == config_path PrivateFile.write_json(path, config) end |