Skip to content

Commit 2207ff3

Browse files
committed
chore: update serena project configuration
1 parent d78d910 commit 2207ff3

1 file changed

Lines changed: 49 additions & 61 deletions

File tree

.serena/project.yml

Lines changed: 49 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,54 @@
1+
2+
13
# list of languages for which language servers are started; choose from:
2-
# al bash clojure cpp csharp csharp_omnisharp
3-
# dart elixir elm erlang fortran go
4-
# haskell java julia kotlin lua markdown
5-
# nix perl php python python_jedi r
6-
# rego ruby ruby_solargraph rust scala swift
7-
# terraform typescript typescript_vts zig
4+
# al ansible bash clojure cpp
5+
# cpp_ccls crystal csharp csharp_omnisharp dart
6+
# elixir elm erlang fortran fsharp
7+
# go groovy haskell haxe hlsl
8+
# java json julia kotlin lean4
9+
# lua luau markdown matlab msl
10+
# nix ocaml pascal perl php
11+
# php_phpactor powershell python python_jedi python_ty
12+
# r rego ruby ruby_solargraph rust
13+
# scala solidity swift systemverilog terraform
14+
# toml typescript typescript_vts vue yaml
15+
# zig
16+
# (This list may be outdated. For the current list, see values of Language enum here:
17+
# https://github.com/oraios/serena/blob/main/src/solidlsp/ls_config.py
18+
# For some languages, there are alternative language servers, e.g. csharp_omnisharp, ruby_solargraph.)
819
# Note:
920
# - For C, use cpp
1021
# - For JavaScript, use typescript
22+
# - For Free Pascal/Lazarus, use pascal
1123
# Special requirements:
12-
# - csharp: Requires the presence of a .sln file in the project folder.
24+
# Some languages require additional setup/installations.
25+
# See here for details: https://oraios.github.io/serena/01-about/020_programming-languages.html#language-servers
1326
# When using multiple languages, the first language server that supports a given file will be used for that file.
1427
# The first language is the default language and the respective language server will be used as a fallback.
1528
# Note that when using the JetBrains backend, language servers are not used and this list is correspondingly ignored.
1629
languages:
17-
- typescript
30+
- typescript
1831

19-
# the encoding used by text files in the project
20-
# For a list of possible encodings, see https://docs.python.org/3.11/library/codecs.html#standard-encodings
32+
# the encoding used by text files in the project
33+
# For a list of possible encodings, see https://docs.python.org/3.11/library/codecs.html#standard-encodings
2134
encoding: 'utf-8'
2235

23-
# whether to use the project's gitignore file to ignore files
24-
# Added on 2025-04-07
36+
# whether to use project's .gitignore files to ignore files
2537
ignore_all_files_in_gitignore: true
2638

27-
# list of additional paths to ignore
28-
# same syntax as gitignore, so you can use * and **
29-
# Was previously called `ignored_dirs`, please update your config if you are using that.
30-
# Added (renamed) on 2025-04-07
39+
# list of additional paths to ignore in this project.
40+
# Same syntax as gitignore, so you can use * and **.
41+
# Note: global ignored_paths from serena_config.yml are also applied additively.
3142
ignored_paths: []
3243

3344
# whether the project is in read-only mode
3445
# If set to true, all editing tools will be disabled and attempts to use them will result in an error
3546
# Added on 2025-04-18
3647
read_only: false
3748

38-
# list of tool names to exclude. We recommend not excluding any tools, see the readme for more details.
39-
# Below is the complete list of tools for convenience.
40-
# To make sure you have the latest list of tools, and to view their descriptions,
41-
# execute `uv run scripts/print_tool_overview.py`.
42-
#
43-
# * `activate_project`: Activates a project by name.
44-
# * `check_onboarding_performed`: Checks whether project onboarding was already performed.
45-
# * `create_text_file`: Creates/overwrites a file in the project directory.
46-
# * `delete_lines`: Deletes a range of lines within a file.
47-
# * `delete_memory`: Deletes a memory from Serena's project-specific memory store.
48-
# * `execute_shell_command`: Executes a shell command.
49-
# * `find_referencing_code_snippets`: Finds code snippets in which the symbol at the given location is referenced.
50-
# * `find_referencing_symbols`: Finds symbols that reference the symbol at the given location (optionally filtered by type).
51-
# * `find_symbol`: Performs a global (or local) search for symbols with/containing a given name/substring (optionally filtered by type).
52-
# * `get_current_config`: Prints the current configuration of the agent, including the active and available projects, tools, contexts, and modes.
53-
# * `get_symbols_overview`: Gets an overview of the top-level symbols defined in a given file.
54-
# * `initial_instructions`: Gets the initial instructions for the current project.
55-
# Should only be used in settings where the system prompt cannot be set,
56-
# e.g. in clients you have no control over, like Claude Desktop.
57-
# * `insert_after_symbol`: Inserts content after the end of the definition of a given symbol.
58-
# * `insert_at_line`: Inserts content at a given line in a file.
59-
# * `insert_before_symbol`: Inserts content before the beginning of the definition of a given symbol.
60-
# * `list_dir`: Lists files and directories in the given directory (optionally with recursion).
61-
# * `list_memories`: Lists memories in Serena's project-specific memory store.
62-
# * `onboarding`: Performs onboarding (identifying the project structure and essential tasks, e.g. for testing or building).
63-
# * `prepare_for_new_conversation`: Provides instructions for preparing for a new conversation (in order to continue with the necessary context).
64-
# * `read_file`: Reads a file within the project directory.
65-
# * `read_memory`: Reads the memory with the given name from Serena's project-specific memory store.
66-
# * `remove_project`: Removes a project from the Serena configuration.
67-
# * `replace_lines`: Replaces a range of lines within a file with new content.
68-
# * `replace_symbol_body`: Replaces the full definition of a symbol.
69-
# * `restart_language_server`: Restarts the language server, may be necessary when edits not through Serena happen.
70-
# * `search_for_pattern`: Performs a search for a pattern in the project.
71-
# * `summarize_changes`: Provides instructions for summarizing the changes made to the codebase.
72-
# * `switch_modes`: Activates modes by providing a list of their names
73-
# * `think_about_collected_information`: Thinking tool for pondering the completeness of collected information.
74-
# * `think_about_task_adherence`: Thinking tool for determining whether the agent is still on track with the current task.
75-
# * `think_about_whether_you_are_done`: Thinking tool for determining whether the task is truly completed.
76-
# * `write_memory`: Writes a named memory (for future reference) to Serena's project-specific memory store.
49+
# list of tool names to exclude.
50+
# This extends the existing exclusions (e.g. from the global configuration)
51+
# Find the list of tools here: https://oraios.github.io/serena/01-about/035_tools.html
7752
excluded_tools: []
7853

7954
# initial prompt for the project. It will always be given to the LLM upon activating the project
@@ -82,7 +57,9 @@ initial_prompt: ''
8257
# the name by which the project can be referenced within Serena
8358
project_name: 'poolifier-web-worker'
8459

85-
# list of tools to include that would otherwise be disabled (particularly optional tools that are disabled by default)
60+
# list of tools to include that would otherwise be disabled (particularly optional tools that are disabled by default).
61+
# This extends the existing inclusions (e.g. from the global configuration).
62+
# Find the list of tools here: https://oraios.github.io/serena/01-about/035_tools.html
8663
included_optional_tools: []
8764

8865
# list of mode names to that are always to be included in the set of active modes
@@ -93,19 +70,25 @@ included_optional_tools: []
9370
# Set this to a list of mode names to always include the respective modes for this project.
9471
base_modes:
9572

96-
# list of mode names that are to be activated by default.
97-
# The full set of modes to be activated is base_modes + default_modes.
98-
# If the setting is undefined, the default_modes from the global configuration (serena_config.yml) apply.
73+
# list of mode names that are to be activated by default, overriding the setting in the global configuration.
74+
# The full set of modes to be activated is base_modes (from global config) + default_modes + added_modes.
75+
# If the setting is undefined/empty, the default_modes from the global configuration (serena_config.yml) apply.
9976
# Otherwise, this overrides the setting from the global configuration (serena_config.yml).
77+
# Therefore, you can set this to [] if you do not want the default modes defined in the global config to apply
78+
# for this project.
10079
# This setting can, in turn, be overridden by CLI parameters (--mode).
80+
# See https://oraios.github.io/serena/02-usage/050_configuration.html#modes
10181
default_modes:
10282

10383
# fixed set of tools to use as the base tool set (if non-empty), replacing Serena's default set of tools.
10484
# This cannot be combined with non-empty excluded_tools or included_optional_tools.
85+
# Find the list of tools here: https://oraios.github.io/serena/01-about/035_tools.html
10586
fixed_tools: []
10687

107-
# override of the corresponding setting in serena_config.yml, see the documentation there.
108-
# If null or missing, the value from the global config is used.
88+
# time budget (seconds) per tool call for the retrieval of additional symbol information
89+
# such as docstrings or parameter information.
90+
# This overrides the corresponding setting in the global configuration; see the documentation there.
91+
# If null or missing, use the setting from the global configuration.
10992
symbol_info_budget:
11093

11194
# The language backend to use for this project.
@@ -137,3 +120,8 @@ ignored_memory_patterns: []
137120
# 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.
138121
# No documentation on options means no options are available.
139122
ls_specific_settings: {}
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

Comments
 (0)