creevey 0.10.34 → 0.10.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.10.36"
3
+ }
@@ -0,0 +1,111 @@
1
+ # the name by which the project can be referenced within Serena
2
+ project_name: 'creevey'
3
+
4
+ # list of languages for which language servers are started; choose from:
5
+ # al bash clojure cpp csharp
6
+ # csharp_omnisharp dart elixir elm erlang
7
+ # fortran fsharp go groovy haskell
8
+ # java julia kotlin lua markdown
9
+ # matlab nix pascal perl php
10
+ # php_phpactor powershell python python_jedi r
11
+ # rego ruby ruby_solargraph rust scala
12
+ # swift terraform toml typescript typescript_vts
13
+ # vue yaml zig
14
+ # (This list may be outdated. For the current list, see values of Language enum here:
15
+ # https://github.com/oraios/serena/blob/main/src/solidlsp/ls_config.py
16
+ # For some languages, there are alternative language servers, e.g. csharp_omnisharp, ruby_solargraph.)
17
+ # Note:
18
+ # - For C, use cpp
19
+ # - For JavaScript, use typescript
20
+ # - For Free Pascal/Lazarus, use pascal
21
+ # Special requirements:
22
+ # Some languages require additional setup/installations.
23
+ # See here for details: https://oraios.github.io/serena/01-about/020_programming-languages.html#language-servers
24
+ # When using multiple languages, the first language server that supports a given file will be used for that file.
25
+ # The first language is the default language and the respective language server will be used as a fallback.
26
+ # Note that when using the JetBrains backend, language servers are not used and this list is correspondingly ignored.
27
+ languages:
28
+ - typescript
29
+
30
+ # the encoding used by text files in the project
31
+ # For a list of possible encodings, see https://docs.python.org/3.11/library/codecs.html#standard-encodings
32
+ encoding: 'utf-8'
33
+
34
+ # whether to use project's .gitignore files to ignore files
35
+ ignore_all_files_in_gitignore: true
36
+
37
+ # list of additional paths to ignore in all projects
38
+ # same syntax as gitignore, so you can use * and **
39
+ ignored_paths: []
40
+
41
+ # whether the project is in read-only mode
42
+ # If set to true, all editing tools will be disabled and attempts to use them will result in an error
43
+ # Added on 2025-04-18
44
+ read_only: false
45
+
46
+ # list of tool names to exclude. We recommend not excluding any tools, see the readme for more details.
47
+ # Below is the complete list of tools for convenience.
48
+ # To make sure you have the latest list of tools, and to view their descriptions,
49
+ # execute `uv run scripts/print_tool_overview.py`.
50
+ #
51
+ # * `activate_project`: Activates a project by name.
52
+ # * `check_onboarding_performed`: Checks whether project onboarding was already performed.
53
+ # * `create_text_file`: Creates/overwrites a file in the project directory.
54
+ # * `delete_lines`: Deletes a range of lines within a file.
55
+ # * `delete_memory`: Deletes a memory from Serena's project-specific memory store.
56
+ # * `execute_shell_command`: Executes a shell command.
57
+ # * `find_referencing_code_snippets`: Finds code snippets in which the symbol at the given location is referenced.
58
+ # * `find_referencing_symbols`: Finds symbols that reference the symbol at the given location (optionally filtered by type).
59
+ # * `find_symbol`: Performs a global (or local) search for symbols with/containing a given name/substring (optionally filtered by type).
60
+ # * `get_current_config`: Prints the current configuration of the agent, including the active and available projects, tools, contexts, and modes.
61
+ # * `get_symbols_overview`: Gets an overview of the top-level symbols defined in a given file.
62
+ # * `initial_instructions`: Gets the initial instructions for the current project.
63
+ # Should only be used in settings where the system prompt cannot be set,
64
+ # e.g. in clients you have no control over, like Claude Desktop.
65
+ # * `insert_after_symbol`: Inserts content after the end of the definition of a given symbol.
66
+ # * `insert_at_line`: Inserts content at a given line in a file.
67
+ # * `insert_before_symbol`: Inserts content before the beginning of the definition of a given symbol.
68
+ # * `list_dir`: Lists files and directories in the given directory (optionally with recursion).
69
+ # * `list_memories`: Lists memories in Serena's project-specific memory store.
70
+ # * `onboarding`: Performs onboarding (identifying the project structure and essential tasks, e.g. for testing or building).
71
+ # * `prepare_for_new_conversation`: Provides instructions for preparing for a new conversation (in order to continue with the necessary context).
72
+ # * `read_file`: Reads a file within the project directory.
73
+ # * `read_memory`: Reads the memory with the given name from Serena's project-specific memory store.
74
+ # * `remove_project`: Removes a project from the Serena configuration.
75
+ # * `replace_lines`: Replaces a range of lines within a file with new content.
76
+ # * `replace_symbol_body`: Replaces the full definition of a symbol.
77
+ # * `restart_language_server`: Restarts the language server, may be necessary when edits not through Serena happen.
78
+ # * `search_for_pattern`: Performs a search for a pattern in the project.
79
+ # * `summarize_changes`: Provides instructions for summarizing the changes made to the codebase.
80
+ # * `switch_modes`: Activates modes by providing a list of their names
81
+ # * `think_about_collected_information`: Thinking tool for pondering the completeness of collected information.
82
+ # * `think_about_task_adherence`: Thinking tool for determining whether the agent is still on track with the current task.
83
+ # * `think_about_whether_you_are_done`: Thinking tool for determining whether the task is truly completed.
84
+ # * `write_memory`: Writes a named memory (for future reference) to Serena's project-specific memory store.
85
+ excluded_tools: []
86
+
87
+ # list of tools to include that would otherwise be disabled (particularly optional tools that are disabled by default)
88
+ included_optional_tools: []
89
+
90
+ # fixed set of tools to use as the base tool set (if non-empty), replacing Serena's default set of tools.
91
+ # This cannot be combined with non-empty excluded_tools or included_optional_tools.
92
+ fixed_tools: []
93
+
94
+ # list of mode names to that are always to be included in the set of active modes
95
+ # The full set of modes to be activated is base_modes + default_modes.
96
+ # If the setting is undefined, the base_modes from the global configuration (serena_config.yml) apply.
97
+ # Otherwise, this setting overrides the global configuration.
98
+ # Set this to [] to disable base modes for this project.
99
+ # Set this to a list of mode names to always include the respective modes for this project.
100
+ base_modes:
101
+
102
+ # list of mode names that are to be activated by default.
103
+ # The full set of modes to be activated is base_modes + default_modes.
104
+ # If the setting is undefined, the default_modes from the global configuration (serena_config.yml) apply.
105
+ # Otherwise, this overrides the setting from the global configuration (serena_config.yml).
106
+ # This setting can, in turn, be overridden by CLI parameters (--mode).
107
+ default_modes:
108
+
109
+ # initial prompt for the project. It will always be given to the LLM upon activating the project
110
+ # (contrary to the memories, which are loaded on demand).
111
+ initial_prompt: ''