-
-
Notifications
You must be signed in to change notification settings - Fork 0
feat(control-api): Complete Control API v1 implementation (T3-T14) #142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
7ebf177
5e5c8ab
bd19ede
c47a563
895bc81
5b23496
de9ef42
2fe797e
80825ff
7a18a99
2d1b599
b84d658
0fa3e4c
1697ca1
f487617
2c12935
749c307
b642a04
2a8ec65
70869f5
ff57d34
2f56455
1aefe5f
1d62c3b
6af1426
364819f
723f589
ef912f6
8d897cb
7d51adf
3367965
1734733
bcd95e9
fd46982
7f951d4
5f09e31
e2a5842
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 1.3.13 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| [mcp_servers.tessl] | ||
| type = "stdio" | ||
| command = "tessl" | ||
| args = [ "mcp", "start" ] |
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,31 @@ | ||||||||||||||||||||||||
| # Compound Engineering -- local config | ||||||||||||||||||||||||
| # Copy to .compound-engineering/config.local.yaml in your project root. | ||||||||||||||||||||||||
| # All settings are optional. Invalid values fall through to defaults. | ||||||||||||||||||||||||
|
|
||||||||||||||||||||||||
| # --- Work delegation (Codex) --- | ||||||||||||||||||||||||
|
|
||||||||||||||||||||||||
| # work_delegate: codex # codex | false (default: false) | ||||||||||||||||||||||||
| # work_delegate_consent: true # true | false (default: false) | ||||||||||||||||||||||||
| # work_delegate_sandbox: yolo # yolo | full-auto (default: yolo) | ||||||||||||||||||||||||
| # work_delegate_decision: auto # auto | ask (default: auto) | ||||||||||||||||||||||||
| # work_delegate_model: gpt-5.4 # any valid codex model (omit to use ~/.codex/config.toml default) | ||||||||||||||||||||||||
| # work_delegate_effort: high # minimal | low | medium | high | xhigh (omit to use ~/.codex/config.toml default) | ||||||||||||||||||||||||
|
|
||||||||||||||||||||||||
| # --- Product pulse --- | ||||||||||||||||||||||||
| # Settings written by /ce-product-pulse first-run interview. Re-run the skill with | ||||||||||||||||||||||||
| # argument `setup` or `reconfigure` to edit interactively. | ||||||||||||||||||||||||
|
|
||||||||||||||||||||||||
| # pulse_product_name: "Spiral" # used in report titles (no default) | ||||||||||||||||||||||||
| # pulse_lookback_default: 24h # 1h | 24h | 7d | 30d (default: 24h) | ||||||||||||||||||||||||
| # pulse_primary_event: "session_started" # the event that means "user showed up" | ||||||||||||||||||||||||
| # pulse_value_event: "task_completed" # the event that means "user got value" | ||||||||||||||||||||||||
| # pulse_completion_events: "onboarded,first_purchase" # comma-separated, 0-3 events | ||||||||||||||||||||||||
| # pulse_quality_scoring: false # true | false (default: false; AI products only) | ||||||||||||||||||||||||
| # pulse_quality_dimension: "answer accuracy" # dimension scored 1-5 when pulse_quality_scoring is true | ||||||||||||||||||||||||
| # pulse_analytics_source: posthog # posthog | mixpanel | custom (no default) | ||||||||||||||||||||||||
| # pulse_tracing_source: sentry # sentry | datadog | custom (no default) | ||||||||||||||||||||||||
| # pulse_payments_source: stripe # stripe | custom (no default) | ||||||||||||||||||||||||
| # pulse_db_enabled: false # true | false (default: false; read-only DB if true) | ||||||||||||||||||||||||
|
Comment on lines
+25
to
+28
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion | 🟠 Major | ⚡ Quick win Add security guidance for external service integration. Lines 25–28 demonstrate integration with external services (PostHog, Sentry, Stripe) and optional database access, but provide no guidance on secure credential management. Users copying this template may inadvertently hardcode API keys or connection strings. Consider adding a comment block above these lines noting:
🛡️ Example security guidance addition+# SECURITY: Keep API keys and database credentials out of this file.
+# Use environment variables or a secrets manager. Ensure config.local.yaml is gitignored.
+
# pulse_analytics_source: posthog # posthog | mixpanel | custom (no default)📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||||
| # pulse_metric_sources: "retention_d7=posthog,nps=delighted" # strategy-metric -> source overrides; comma-separated 'metric=source' pairs; unlisted metrics fall back to pulse_analytics_source | ||||||||||||||||||||||||
| # pulse_pending_metrics: "retention_d7,nps" # comma-separated strategy metrics awaiting instrumentation; render as 'no data' | ||||||||||||||||||||||||
| # pulse_excluded_metrics: "north_star" # comma-separated strategy metrics intentionally not in pulse | ||||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "mcpServers": { | ||
| "tessl": { | ||
| "type": "stdio", | ||
| "command": "tessl", | ||
| "args": [ | ||
| "mcp", | ||
| "start" | ||
| ] | ||
| } | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -131,3 +131,24 @@ vite.config.ts.timestamp-* | |||||||
| frontend/test-artifacts/* | ||||||||
| .commitizen/openai_cache.json | ||||||||
| .github/skills/* | ||||||||
|
|
||||||||
| **/*.local.* | ||||||||
|
|
||||||||
| # Re-include CE example configs (committed for teammates to see available settings) | ||||||||
| !.compound-engineering/*.example.yaml | ||||||||
|
|
||||||||
| # AI coding assistants (local state, not shared) | ||||||||
| docs/plans/ | ||||||||
| .agent/ | ||||||||
| .agents/ | ||||||||
| .augment/ | ||||||||
| .claude/ | ||||||||
| .context/ | ||||||||
| .cursor/ | ||||||||
| .roo/ | ||||||||
| .full-review/ | ||||||||
| SECURITY_AUDIT.md | ||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do not ignore Line 150 prevents security-audit evidence from being versioned/reviewed, which weakens remediation traceability. Suggested change-SECURITY_AUDIT.md
+# Keep audit reports visible in VCS; ignore only local drafts if needed:
+# SECURITY_AUDIT.local.md📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||
| todos/ | ||||||||
| **/tessl__* | ||||||||
| .tessl/tiles/ | ||||||||
| .tessl/RULES.md | ||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "mcpServers": { | ||
| "tessl": { | ||
| "type": "stdio", | ||
| "command": "tessl", | ||
| "args": [ | ||
| "mcp", | ||
| "start" | ||
| ] | ||
| } | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,52 +6,64 @@ repos: | |
| rev: v6.0.0 | ||
| hooks: | ||
| - id: check-added-large-files | ||
| args: ["--maxkb=1024"] | ||
| args: [ "--maxkb=1024" ] | ||
| - id: check-ast | ||
| - id: check-case-conflict | ||
| - id: check-merge-conflict | ||
| - id: check-illegal-windows-names | ||
| - id: check-json | ||
| types: [ json ] | ||
| - id: check-toml | ||
| types: [ toml ] | ||
| - id: check-yaml | ||
| args: [--unsafe] | ||
| types: [ yaml ] | ||
| args: [ --unsafe ] | ||
| - id: check-xml | ||
| types: [ xml ] | ||
| - id: mixed-line-ending | ||
| args: [--fix=auto] | ||
| types: [ text ] | ||
| args: [ --fix=auto ] | ||
| - id: check-docstring-first | ||
| types: [ python ] | ||
|
Comment on lines
+9
to
+27
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Normalize the inline list spacing before merge.
As per coding guidelines, ".pre-commit-config.yaml: Run checks via pre-commit before committing code". Also applies to: 35-38, 44-45, 52-52, 58-58, 66-66, 83-83 🧰 Tools🪛 YAMLlint (1.38.0)[error] 9-9: too many spaces inside brackets (brackets) [error] 9-9: too many spaces inside brackets (brackets) [error] 15-15: too many spaces inside brackets (brackets) [error] 15-15: too many spaces inside brackets (brackets) [error] 17-17: too many spaces inside brackets (brackets) [error] 17-17: too many spaces inside brackets (brackets) [error] 19-19: too many spaces inside brackets (brackets) [error] 19-19: too many spaces inside brackets (brackets) [error] 20-20: too many spaces inside brackets (brackets) [error] 20-20: too many spaces inside brackets (brackets) [error] 22-22: too many spaces inside brackets (brackets) [error] 22-22: too many spaces inside brackets (brackets) [error] 24-24: too many spaces inside brackets (brackets) [error] 24-24: too many spaces inside brackets (brackets) [error] 25-25: too many spaces inside brackets (brackets) [error] 25-25: too many spaces inside brackets (brackets) [error] 27-27: too many spaces inside brackets (brackets) [error] 27-27: too many spaces inside brackets (brackets) 🤖 Prompt for AI Agents |
||
| - id: check-vcs-permalinks | ||
|
|
||
| # 🧹 Ruff linting + formatting | ||
| - repo: https://github.com/astral-sh/ruff-pre-commit | ||
| rev: v0.14.14 | ||
| rev: v0.15.12 # v0.15.12 | ||
| hooks: | ||
| - id: ruff-check | ||
| args: [--fix] | ||
| args: [ --fix ] | ||
| types: [ python ] | ||
| - id: ruff-format | ||
| types: [ python ] | ||
|
|
||
| - repo: https://github.com/asottile/pyupgrade | ||
| rev: v3.21.2 | ||
| hooks: | ||
| - id: pyupgrade | ||
| args: ["--py314-plus"] | ||
| args: [ "--py314-plus" ] | ||
| types: [ python ] | ||
|
|
||
| - repo: https://github.com/rhysd/actionlint | ||
| rev: v1.7.10 | ||
| rev: v1.7.12 # v1.7.12 | ||
| hooks: | ||
| - id: actionlint | ||
| files: ".github/workflows/" | ||
| types: [ yaml ] | ||
|
|
||
| - repo: https://github.com/koalaman/shellcheck-precommit | ||
| rev: v0.11.0 | ||
| hooks: | ||
| - id: shellcheck | ||
| types: [ shell ] | ||
|
|
||
| # 🐍 uv for Python environment management | ||
| - repo: https://github.com/astral-sh/uv-pre-commit | ||
| rev: 0.9.26 | ||
| rev: 0.11.8 # 0.11.8 | ||
| hooks: | ||
| - id: uv-lock | ||
| files: ^(.*/)?(pyproject\.toml|uv\.lock)$ | ||
| types: [ toml ] | ||
|
|
||
| - repo: https://github.com/executablebooks/mdformat | ||
| rev: 1.0.0 | ||
|
|
@@ -68,4 +80,4 @@ repos: | |
| - mdformat-gfm-alerts | ||
| - mdformat-toc | ||
| - mdformat-front-matters | ||
| types: [markdown] | ||
| types: [ markdown ] | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,90 +1,141 @@ | ||||||
|
|
||||||
|
|
||||||
|
Comment on lines
+1
to
+2
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix YAMLlint failure from extra leading blank line. Line 2 creates consecutive blank lines at the top of the file, and YAMLlint flags this as Suggested diff-
-
# list of languages for which language servers are started; choose from:📝 Committable suggestion
Suggested change
🧰 Tools🪛 YAMLlint (1.38.0)[error] 2-2: too many blank lines (2 > 0) (empty-lines) 🤖 Prompt for AI Agents |
||||||
| # list of languages for which language servers are started; choose from: | ||||||
| # al bash clojure cpp csharp csharp_omnisharp | ||||||
| # dart elixir elm erlang fortran fsharp | ||||||
| # go groovy haskell java julia kotlin | ||||||
| # lua markdown nix pascal perl php | ||||||
| # powershell python python_jedi r rego ruby | ||||||
| # ruby_solargraph rust scala swift terraform toml | ||||||
| # typescript typescript_vts yaml zig | ||||||
| # al ansible bash clojure cpp | ||||||
| # cpp_ccls crystal csharp csharp_omnisharp dart | ||||||
| # elixir elm erlang fortran fsharp | ||||||
| # go groovy haskell haxe hlsl | ||||||
| # java json julia kotlin lean4 | ||||||
| # lua luau markdown matlab msl | ||||||
| # nix ocaml pascal perl php | ||||||
| # php_phpactor powershell python python_jedi python_ty | ||||||
| # r rego ruby ruby_solargraph rust | ||||||
| # scala solidity swift systemverilog terraform | ||||||
| # toml typescript typescript_vts vue yaml | ||||||
| # zig | ||||||
| # (This list may be outdated. For the current list, see values of Language enum here: | ||||||
| # https://github.com/oraios/serena/blob/main/src/solidlsp/ls_config.py | ||||||
| # For some languages, there are alternative language servers, e.g. csharp_omnisharp, ruby_solargraph.) | ||||||
| # Note: | ||||||
| # - For C, use cpp | ||||||
| # - For JavaScript, use typescript | ||||||
| # - For Free Pascal / Lazarus, use pascal | ||||||
| # - For Free Pascal/Lazarus, use pascal | ||||||
| # Special requirements: | ||||||
| # - csharp: Requires the presence of a .sln file in the project folder. | ||||||
| # - pascal: Requires Free Pascal Compiler (fpc) and optionally Lazarus. | ||||||
| # Some languages require additional setup/installations. | ||||||
| # See here for details: https://oraios.github.io/serena/01-about/020_programming-languages.html#language-servers | ||||||
| # When using multiple languages, the first language server that supports a given file will be used for that file. | ||||||
| # The first language is the default language and the respective language server will be used as a fallback. | ||||||
| # Note that when using the JetBrains backend, language servers are not used and this list is correspondingly ignored. | ||||||
| languages: | ||||||
| - typescript | ||||||
| - vue | ||||||
| - python | ||||||
| - bash | ||||||
| - typescript | ||||||
| - vue | ||||||
| - python | ||||||
| - bash | ||||||
|
|
||||||
| # the encoding used by text files in the project | ||||||
| # For a list of possible encodings, see https://docs.python.org/3.11/library/codecs.html#standard-encodings | ||||||
| encoding: "utf-8" | ||||||
|
|
||||||
| # whether to use the project's gitignore file to ignore files | ||||||
| # Added on 2025-04-07 | ||||||
| # whether to use project's .gitignore files to ignore files | ||||||
| ignore_all_files_in_gitignore: true | ||||||
|
|
||||||
| # list of additional paths to ignore | ||||||
| # same syntax as gitignore, so you can use * and ** | ||||||
| # Was previously called `ignored_dirs`, please update your config if you are using that. | ||||||
| # Added (renamed) on 2025-04-07 | ||||||
| # list of additional paths to ignore in this project. | ||||||
| # Same syntax as gitignore, so you can use * and **. | ||||||
| # Note: global ignored_paths from serena_config.yml are also applied additively. | ||||||
| ignored_paths: [] | ||||||
|
|
||||||
| # whether the project is in read-only mode | ||||||
| # If set to true, all editing tools will be disabled and attempts to use them will result in an error | ||||||
| # Added on 2025-04-18 | ||||||
| read_only: false | ||||||
|
|
||||||
| # list of tool names to exclude. We recommend not excluding any tools, see the readme for more details. | ||||||
| # Below is the complete list of tools for convenience. | ||||||
| # To make sure you have the latest list of tools, and to view their descriptions, | ||||||
| # execute `uv run scripts/print_tool_overview.py`. | ||||||
| # | ||||||
| # * `activate_project`: Activates a project by name. | ||||||
| # * `check_onboarding_performed`: Checks whether project onboarding was already performed. | ||||||
| # * `create_text_file`: Creates/overwrites a file in the project directory. | ||||||
| # * `delete_lines`: Deletes a range of lines within a file. | ||||||
| # * `delete_memory`: Deletes a memory from Serena's project-specific memory store. | ||||||
| # * `execute_shell_command`: Executes a shell command. | ||||||
| # * `find_referencing_code_snippets`: Finds code snippets in which the symbol at the given location is referenced. | ||||||
| # * `find_referencing_symbols`: Finds symbols that reference the symbol at the given location (optionally filtered by type). | ||||||
| # * `find_symbol`: Performs a global (or local) search for symbols with/containing a given name/substring (optionally filtered by type). | ||||||
| # * `get_current_config`: Prints the current configuration of the agent, including the active and available projects, tools, contexts, and modes. | ||||||
| # * `get_symbols_overview`: Gets an overview of the top-level symbols defined in a given file. | ||||||
| # * `initial_instructions`: Gets the initial instructions for the current project. | ||||||
| # Should only be used in settings where the system prompt cannot be set, | ||||||
| # e.g. in clients you have no control over, like Claude Desktop. | ||||||
| # * `insert_after_symbol`: Inserts content after the end of the definition of a given symbol. | ||||||
| # * `insert_at_line`: Inserts content at a given line in a file. | ||||||
| # * `insert_before_symbol`: Inserts content before the beginning of the definition of a given symbol. | ||||||
| # * `list_dir`: Lists files and directories in the given directory (optionally with recursion). | ||||||
| # * `list_memories`: Lists memories in Serena's project-specific memory store. | ||||||
| # * `onboarding`: Performs onboarding (identifying the project structure and essential tasks, e.g. for testing or building). | ||||||
| # * `prepare_for_new_conversation`: Provides instructions for preparing for a new conversation (in order to continue with the necessary context). | ||||||
| # * `read_file`: Reads a file within the project directory. | ||||||
| # * `read_memory`: Reads the memory with the given name from Serena's project-specific memory store. | ||||||
| # * `remove_project`: Removes a project from the Serena configuration. | ||||||
| # * `replace_lines`: Replaces a range of lines within a file with new content. | ||||||
| # * `replace_symbol_body`: Replaces the full definition of a symbol. | ||||||
| # * `restart_language_server`: Restarts the language server, may be necessary when edits not through Serena happen. | ||||||
| # * `search_for_pattern`: Performs a search for a pattern in the project. | ||||||
| # * `summarize_changes`: Provides instructions for summarizing the changes made to the codebase. | ||||||
| # * `switch_modes`: Activates modes by providing a list of their names | ||||||
| # * `think_about_collected_information`: Thinking tool for pondering the completeness of collected information. | ||||||
| # * `think_about_task_adherence`: Thinking tool for determining whether the agent is still on track with the current task. | ||||||
| # * `think_about_whether_you_are_done`: Thinking tool for determining whether the task is truly completed. | ||||||
| # * `write_memory`: Writes a named memory (for future reference) to Serena's project-specific memory store. | ||||||
| # list of tool names to exclude. | ||||||
| # This extends the existing exclusions (e.g. from the global configuration) | ||||||
| # Find the list of tools here: https://oraios.github.io/serena/01-about/035_tools.html | ||||||
| excluded_tools: [] | ||||||
|
|
||||||
| # initial prompt for the project. It will always be given to the LLM upon activating the project | ||||||
| # (contrary to the memories, which are loaded on demand). | ||||||
| initial_prompt: "" | ||||||
|
|
||||||
| # the name by which the project can be referenced within Serena | ||||||
| project_name: "Ouroboros" | ||||||
|
|
||||||
| # list of tools to include that would otherwise be disabled (particularly optional tools that are disabled by default). | ||||||
| # This extends the existing inclusions (e.g. from the global configuration). | ||||||
| # Find the list of tools here: https://oraios.github.io/serena/01-about/035_tools.html | ||||||
| included_optional_tools: [] | ||||||
|
|
||||||
| # list of mode names to that are always to be included in the set of active modes | ||||||
| # The full set of modes to be activated is base_modes + default_modes. | ||||||
| # If the setting is undefined, the base_modes from the global configuration (serena_config.yml) apply. | ||||||
| # Otherwise, this setting overrides the global configuration. | ||||||
| # Set this to [] to disable base modes for this project. | ||||||
| # Set this to a list of mode names to always include the respective modes for this project. | ||||||
| base_modes: | ||||||
|
|
||||||
|
Comment on lines
+74
to
+75
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 Nitpick | 🔵 Trivial | ⚡ Quick win 🧩 Analysis chain🌐 Web query:
💡 Result: If the keys Citations:
Remove null mode settings or set explicit values; they override global configuration. Lines 74, 84, and 130 define mode keys with empty values (
This prevents accidental configuration overrides that mask global settings. Also applies to: 84-85, 130-131 🤖 Prompt for AI Agents |
||||||
| # list of mode names that are to be activated by default, overriding the setting in the global configuration. | ||||||
| # The full set of modes to be activated is base_modes (from global config) + default_modes + added_modes. | ||||||
| # If the setting is undefined/empty, the default_modes from the global configuration (serena_config.yml) apply. | ||||||
| # Otherwise, this overrides the setting from the global configuration (serena_config.yml). | ||||||
| # Therefore, you can set this to [] if you do not want the default modes defined in the global config to apply | ||||||
| # for this project. | ||||||
| # This setting can, in turn, be overridden by CLI parameters (--mode). | ||||||
| # See https://oraios.github.io/serena/02-usage/050_configuration.html#modes | ||||||
| default_modes: | ||||||
|
|
||||||
| # fixed set of tools to use as the base tool set (if non-empty), replacing Serena's default set of tools. | ||||||
| # This cannot be combined with non-empty excluded_tools or included_optional_tools. | ||||||
| # Find the list of tools here: https://oraios.github.io/serena/01-about/035_tools.html | ||||||
| fixed_tools: [] | ||||||
|
|
||||||
| # time budget (seconds) per tool call for the retrieval of additional symbol information | ||||||
| # such as docstrings or parameter information. | ||||||
| # This overrides the corresponding setting in the global configuration; see the documentation there. | ||||||
| # If null or missing, use the setting from the global configuration. | ||||||
| symbol_info_budget: | ||||||
|
|
||||||
| # The language backend to use for this project. | ||||||
| # If not set, the global setting from serena_config.yml is used. | ||||||
| # Valid values: LSP, JetBrains | ||||||
| # Note: the backend is fixed at startup. If a project with a different backend | ||||||
| # is activated post-init, an error will be returned. | ||||||
| language_backend: | ||||||
|
|
||||||
| # list of regex patterns which, when matched, mark a memory entry as read‑only. | ||||||
| # Extends the list from the global configuration, merging the two lists. | ||||||
| read_only_memory_patterns: [] | ||||||
|
|
||||||
| # line ending convention to use when writing source files. | ||||||
| # Possible values: unset (use global setting), "lf", "crlf", or "native" (platform default) | ||||||
| # This does not affect Serena's own files (e.g. memories and configuration files), which always use native line endings. | ||||||
| line_ending: | ||||||
|
|
||||||
| # list of regex patterns for memories to completely ignore. | ||||||
| # Matching memories will not appear in list_memories or activate_project output | ||||||
| # and cannot be accessed via read_memory or write_memory. | ||||||
| # To access ignored memory files, use the read_file tool on the raw file path. | ||||||
| # Extends the list from the global configuration, merging the two lists. | ||||||
| # Example: ["_archive/.*", "_episodes/.*"] | ||||||
| ignored_memory_patterns: [] | ||||||
|
|
||||||
| # advanced configuration option allowing to configure language server-specific options. | ||||||
| # Maps the language key to the options. | ||||||
| # 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. | ||||||
| # No documentation on options means no options are available. | ||||||
| ls_specific_settings: {} | ||||||
|
|
||||||
| # list of mode names to be activated additionally for this project, e.g. ["query-projects"] | ||||||
| # The full set of modes to be activated is base_modes (from global config) + default_modes + added_modes. | ||||||
| # See https://oraios.github.io/serena/02-usage/050_configuration.html#modes | ||||||
| added_modes: | ||||||
|
|
||||||
| # list of additional workspace folder paths for cross-package reference support (e.g. in monorepos). | ||||||
| # Paths can be absolute or relative to the project root. | ||||||
| # Each folder is registered as an LSP workspace folder, enabling language servers to discover | ||||||
| # symbols and references across package boundaries. | ||||||
| # Currently supported for: TypeScript. | ||||||
| # Example: | ||||||
| # additional_workspace_folders: | ||||||
| # - ../sibling-package | ||||||
| # - ../shared-lib | ||||||
| additional_workspace_folders: [] | ||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Clarify sandbox security implications and reconsider "yolo" naming.
The
work_delegate_sandbox: yoloexample uses slang that suggests recklessness in a security-sensitive context. Even as example documentation, "yolo" undermines the seriousness of sandbox isolation controls.Additionally, the options
yolo | full-autoare not explained—users cannot assess the security tradeoffs between these modes. Consider:interactive,manual-confirm)🤖 Prompt for AI Agents