@@ -3,15 +3,18 @@ project_name: "aws-lambda-mcp-server"
33
44
55# list of languages for which language servers are started; choose from:
6- # al bash clojure cpp csharp
7- # csharp_omnisharp dart elixir elm erlang
8- # fortran fsharp go groovy haskell
9- # java julia kotlin lua markdown
10- # matlab nix pascal perl php
11- # php_phpactor powershell python python_jedi r
12- # rego ruby ruby_solargraph rust scala
13- # swift terraform toml typescript typescript_vts
14- # vue yaml zig
6+ # al ansible bash clojure cpp
7+ # cpp_ccls crystal csharp csharp_omnisharp dart
8+ # elixir elm erlang fortran fsharp
9+ # go groovy haskell haxe hlsl
10+ # java json julia kotlin lean4
11+ # lua luau markdown matlab msl
12+ # nix ocaml pascal perl php
13+ # php_phpactor powershell python python_jedi python_ty
14+ # r rego ruby ruby_solargraph rust
15+ # scala solidity swift systemverilog terraform
16+ # toml typescript typescript_vts vue yaml
17+ # zig
1518# (This list may be outdated. For the current list, see values of Language enum here:
1619# https://github.com/oraios/serena/blob/main/src/solidlsp/ls_config.py
1720# For some languages, there are alternative language servers, e.g. csharp_omnisharp, ruby_solargraph.)
@@ -65,53 +68,17 @@ read_only: false
6568
6669# list of tool names to exclude.
6770# This extends the existing exclusions (e.g. from the global configuration)
68- #
69- # Below is the complete list of tools for convenience.
70- # To make sure you have the latest list of tools, and to view their descriptions,
71- # execute `uv run scripts/print_tool_overview.py`.
72- #
73- # * `activate_project`: Activates a project by name.
74- # * `check_onboarding_performed`: Checks whether project onboarding was already performed.
75- # * `create_text_file`: Creates/overwrites a file in the project directory.
76- # * `delete_lines`: Deletes a range of lines within a file.
77- # * `delete_memory`: Deletes a memory from Serena's project-specific memory store.
78- # * `execute_shell_command`: Executes a shell command.
79- # * `find_referencing_code_snippets`: Finds code snippets in which the symbol at the given location is referenced.
80- # * `find_referencing_symbols`: Finds symbols that reference the symbol at the given location (optionally filtered by type).
81- # * `find_symbol`: Performs a global (or local) search for symbols with/containing a given name/substring (optionally filtered by type).
82- # * `get_current_config`: Prints the current configuration of the agent, including the active and available projects, tools, contexts, and modes.
83- # * `get_symbols_overview`: Gets an overview of the top-level symbols defined in a given file.
84- # * `initial_instructions`: Gets the initial instructions for the current project.
85- # Should only be used in settings where the system prompt cannot be set,
86- # e.g. in clients you have no control over, like Claude Desktop.
87- # * `insert_after_symbol`: Inserts content after the end of the definition of a given symbol.
88- # * `insert_at_line`: Inserts content at a given line in a file.
89- # * `insert_before_symbol`: Inserts content before the beginning of the definition of a given symbol.
90- # * `list_dir`: Lists files and directories in the given directory (optionally with recursion).
91- # * `list_memories`: Lists memories in Serena's project-specific memory store.
92- # * `onboarding`: Performs onboarding (identifying the project structure and essential tasks, e.g. for testing or building).
93- # * `prepare_for_new_conversation`: Provides instructions for preparing for a new conversation (in order to continue with the necessary context).
94- # * `read_file`: Reads a file within the project directory.
95- # * `read_memory`: Reads the memory with the given name from Serena's project-specific memory store.
96- # * `remove_project`: Removes a project from the Serena configuration.
97- # * `replace_lines`: Replaces a range of lines within a file with new content.
98- # * `replace_symbol_body`: Replaces the full definition of a symbol.
99- # * `restart_language_server`: Restarts the language server, may be necessary when edits not through Serena happen.
100- # * `search_for_pattern`: Performs a search for a pattern in the project.
101- # * `summarize_changes`: Provides instructions for summarizing the changes made to the codebase.
102- # * `switch_modes`: Activates modes by providing a list of their names
103- # * `think_about_collected_information`: Thinking tool for pondering the completeness of collected information.
104- # * `think_about_task_adherence`: Thinking tool for determining whether the agent is still on track with the current task.
105- # * `think_about_whether_you_are_done`: Thinking tool for determining whether the task is truly completed.
106- # * `write_memory`: Writes a named memory (for future reference) to Serena's project-specific memory store.
71+ # Find the list of tools here: https://oraios.github.io/serena/01-about/035_tools.html
10772excluded_tools : []
10873
10974# list of tools to include that would otherwise be disabled (particularly optional tools that are disabled by default).
11075# This extends the existing inclusions (e.g. from the global configuration).
76+ # Find the list of tools here: https://oraios.github.io/serena/01-about/035_tools.html
11177included_optional_tools : []
11278
11379# fixed set of tools to use as the base tool set (if non-empty), replacing Serena's default set of tools.
11480# This cannot be combined with non-empty excluded_tools or included_optional_tools.
81+ # Find the list of tools here: https://oraios.github.io/serena/01-about/035_tools.html
11582fixed_tools : []
11683
11784# list of mode names to that are always to be included in the set of active modes
@@ -122,11 +89,14 @@ fixed_tools: []
12289# Set this to a list of mode names to always include the respective modes for this project.
12390base_modes :
12491
125- # list of mode names that are to be activated by default.
126- # The full set of modes to be activated is base_modes + default_modes.
127- # If the setting is undefined, the default_modes from the global configuration (serena_config.yml) apply.
92+ # list of mode names that are to be activated by default, overriding the setting in the global configuration .
93+ # The full set of modes to be activated is base_modes (from global config) + default_modes + added_modes .
94+ # If the setting is undefined/empty , the default_modes from the global configuration (serena_config.yml) apply.
12895# Otherwise, this overrides the setting from the global configuration (serena_config.yml).
96+ # Therefore, you can set this to [] if you do not want the default modes defined in the global config to apply
97+ # for this project.
12998# This setting can, in turn, be overridden by CLI parameters (--mode).
99+ # See https://oraios.github.io/serena/02-usage/050_configuration.html#modes
130100default_modes :
131101
132102# initial prompt for the project. It will always be given to the LLM upon activating the project
@@ -150,3 +120,8 @@ read_only_memory_patterns: []
150120# Extends the list from the global configuration, merging the two lists.
151121# Example: ["_archive/.*", "_episodes/.*"]
152122ignored_memory_patterns : []
123+
124+ # list of mode names to be activated additionally for this project, e.g. ["query-projects"]
125+ # The full set of modes to be activated is base_modes (from global config) + default_modes + added_modes.
126+ # See https://oraios.github.io/serena/02-usage/050_configuration.html#modes
127+ added_modes :
0 commit comments