@@ -6,7 +6,8 @@ project_name: "OpenSIN-Bridge-issue-27"
66# al bash clojure cpp csharp
77# csharp_omnisharp dart elixir elm erlang
88# fortran fsharp go groovy haskell
9- # java julia kotlin lua markdown
9+ # haxe java julia kotlin lua
10+ # markdown
1011# matlab nix pascal perl php
1112# php_phpactor powershell python python_jedi r
1213# rego ruby ruby_solargraph rust scala
@@ -57,48 +58,52 @@ ignored_paths: []
5758# Added on 2025-04-18
5859read_only : false
5960
60- # list of tool names to exclude. We recommend not excluding any tools, see the readme for more details.
61+ # list of tool names to exclude.
62+ # This extends the existing exclusions (e.g. from the global configuration)
63+ #
6164# Below is the complete list of tools for convenience.
6265# To make sure you have the latest list of tools, and to view their descriptions,
6366# execute `uv run scripts/print_tool_overview.py`.
6467#
65- # * `activate_project`: Activates a project by name.
68+ # * `activate_project`: Activates a project based on the project name or path .
6669# * `check_onboarding_performed`: Checks whether project onboarding was already performed.
6770# * `create_text_file`: Creates/overwrites a file in the project directory.
68- # * `delete_lines`: Deletes a range of lines within a file.
69- # * `delete_memory`: Deletes a memory from Serena's project-specific memory store.
71+ # * `delete_memory`: Delete a memory file. Should only happen if a user asks for it explicitly,
72+ # for example by saying that the information retrieved from a memory file is no longer correct
73+ # or no longer relevant for the project.
74+ # * `edit_memory`: Replaces content matching a regular expression in a memory.
7075# * `execute_shell_command`: Executes a shell command.
71- # * `find_referencing_code_snippets `: Finds code snippets in which the symbol at the given location is referenced.
72- # * `find_referencing_symbols`: Finds symbols that reference the symbol at the given location (optionally filtered by type).
73- # * `find_symbol`: Performs a global (or local) search for symbols with/containing a given name/substring (optionally filtered by type) .
76+ # * `find_file `: Finds files in the given relative paths
77+ # * `find_referencing_symbols`: Finds symbols that reference the given symbol using the language server backend
78+ # * `find_symbol`: Performs a global (or local) search using the language server backend .
7479# * `get_current_config`: Prints the current configuration of the agent, including the active and available projects, tools, contexts, and modes.
7580# * `get_symbols_overview`: Gets an overview of the top-level symbols defined in a given file.
76- # * `initial_instructions`: Gets the initial instructions for the current project.
77- # Should only be used in settings where the system prompt cannot be set,
78- # e.g. in clients you have no control over, like Claude Desktop.
81+ # * `initial_instructions`: Provides instructions Serena usage (i.e. the 'Serena Instructions Manual')
82+ # for clients that do not read the initial instructions when the MCP server is connected.
7983# * `insert_after_symbol`: Inserts content after the end of the definition of a given symbol.
80- # * `insert_at_line`: Inserts content at a given line in a file.
8184# * `insert_before_symbol`: Inserts content before the beginning of the definition of a given symbol.
8285# * `list_dir`: Lists files and directories in the given directory (optionally with recursion).
83- # * `list_memories`: Lists memories in Serena's project-specific memory store .
86+ # * `list_memories`: List available memories. Any memory can be read using the `read_memory` tool .
8487# * `onboarding`: Performs onboarding (identifying the project structure and essential tasks, e.g. for testing or building).
85- # * `prepare_for_new_conversation`: Provides instructions for preparing for a new conversation (in order to continue with the necessary context).
8688# * `read_file`: Reads a file within the project directory.
87- # * `read_memory`: Reads the memory with the given name from Serena's project-specific memory store.
88- # * `remove_project`: Removes a project from the Serena configuration.
89- # * `replace_lines`: Replaces a range of lines within a file with new content.
90- # * `replace_symbol_body`: Replaces the full definition of a symbol.
91- # * `restart_language_server`: Restarts the language server, may be necessary when edits not through Serena happen.
89+ # * `read_memory`: Read the content of a memory file. This tool should only be used if the information
90+ # is relevant to the current task. You can infer whether the information
91+ # is relevant from the memory file name.
92+ # You should not read the same memory file multiple times in the same conversation.
93+ # * `rename_memory`: Renames or moves a memory. Moving between project and global scope is supported
94+ # (e.g., renaming "global/foo" to "bar" moves it from global to project scope).
95+ # * `rename_symbol`: Renames a symbol throughout the codebase using language server refactoring capabilities.
96+ # For JB, we use a separate tool.
97+ # * `replace_content`: Replaces content in a file (optionally using regular expressions).
98+ # * `replace_symbol_body`: Replaces the full definition of a symbol using the language server backend.
99+ # * `safe_delete_symbol`:
92100# * `search_for_pattern`: Performs a search for a pattern in the project.
93- # * `summarize_changes`: Provides instructions for summarizing the changes made to the codebase.
94- # * `switch_modes`: Activates modes by providing a list of their names
95- # * `think_about_collected_information`: Thinking tool for pondering the completeness of collected information.
96- # * `think_about_task_adherence`: Thinking tool for determining whether the agent is still on track with the current task.
97- # * `think_about_whether_you_are_done`: Thinking tool for determining whether the task is truly completed.
98- # * `write_memory`: Writes a named memory (for future reference) to Serena's project-specific memory store.
101+ # * `write_memory`: Write some information (utf-8-encoded) about this project that can be useful for future tasks to a memory in md format.
102+ # The memory name should be meaningful.
99103excluded_tools : []
100104
101- # list of tools to include that would otherwise be disabled (particularly optional tools that are disabled by default)
105+ # list of tools to include that would otherwise be disabled (particularly optional tools that are disabled by default).
106+ # This extends the existing inclusions (e.g. from the global configuration).
102107included_optional_tools : []
103108
104109# fixed set of tools to use as the base tool set (if non-empty), replacing Serena's default set of tools.
@@ -133,3 +138,17 @@ symbol_info_budget:
133138# list of regex patterns which, when matched, mark a memory entry as read‑only.
134139# Extends the list from the global configuration, merging the two lists.
135140read_only_memory_patterns : []
141+
142+ # list of regex patterns for memories to completely ignore.
143+ # Matching memories will not appear in list_memories or activate_project output
144+ # and cannot be accessed via read_memory or write_memory.
145+ # To access ignored memory files, use the read_file tool on the raw file path.
146+ # Extends the list from the global configuration, merging the two lists.
147+ # Example: ["_archive/.*", "_episodes/.*"]
148+ ignored_memory_patterns : []
149+
150+ # advanced configuration option allowing to configure language server-specific options.
151+ # Maps the language key to the options.
152+ # Have a look at the docstring of the constructors of the LS implementations within solidlsp (e.g., for C# or PHP) to see which options are available.
153+ # No documentation on options means no options are available.
154+ ls_specific_settings : {}
0 commit comments