Configuration#

In the .enkaidu/ profile directory, you can define some default configurations by creating a file called config.yml or config.yaml (not both!).

Unlike the typical Enkaidu configuration, profile configurations only support auto_load: and tool_setting: sections.

Any profile configuration is merged with the contents of the project-specific or other enkaidu.yaml configuration file.

Example#

auto_load:
  system_prompt_name: dev_assistant
  toolsets:
    - DateAndTime
    - ShellAccess
    - name: TextEditing
      select:
        - read_text_file
    - name: FileManagement
      select:
        - list_files
tool_settings:
  shell_command:
    allowed_commands: [ "find", "grep" ]