Merged
Conversation
…ot config Co-authored-by: jaden688 <173667368+jaden688@users.noreply.github.com>
…dual-config docs Co-authored-by: jaden688 <173667368+jaden688@users.noreply.github.com>
Reviewer's GuideDocuments the dual-location headless config design, centralizes config writes through backend_controller, replaces MPF print-based diagnostics with structured logging, tightens interpreter confirmation behavior, adds CI via GitHub Actions with pytest configuration, and extends tests to cover Windows-specific shell behavior. Sequence diagram for synchronized headless config writes via backend_controllersequenceDiagram
actor Operator
participant DesktopUI
participant BackendController
participant EngineConfig as jl_engine_core_data_config_headless
participant ToolingConfig as config_headless
participant JLEngineCore
participant ExternalTool as ToolingConsumer
Operator->>DesktopUI: Change backend/model/runtime mode
DesktopUI->>BackendController: Request config update
BackendController->>EngineConfig: Write updated config (if path exists)
BackendController->>ToolingConfig: Write updated config (if path exists)
BackendController-->>DesktopUI: Return success
JLEngineCore->>EngineConfig: Read config at startup or reload
ExternalTool->>ToolingConfig: Read config when launching headless
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Signed-off-by: Jaden Lindenbach <j_lindenbach688@hotmail.com>
|
|
Overall Grade |
Security Reliability Complexity Hygiene |
Code Review Summary
| Analyzer | Status | Updated (UTC) | Details |
|---|---|---|---|
| Java | Mar 15, 2026 11:06a.m. | Review ↗ | |
| Shell | Mar 15, 2026 11:06a.m. | Review ↗ | |
| Python | Mar 15, 2026 11:06a.m. | Review ↗ | |
| Secrets | Mar 15, 2026 11:06a.m. | Review ↗ |
There was a problem hiding this comment.
Hey - I've found 1 issue
Prompt for AI Agents
Please address the comments from this code review:
## Individual Comments
### Comment 1
<location path=".github/workflows/ci.yml" line_range="29-30" />
<code_context>
+ python-version: ${{ matrix.python-version }}
+ cache: "pip"
+
+ - name: Install dependencies
+ run: pip install -e .[api] pytest
+
+ - name: Run tests
</code_context>
<issue_to_address>
**issue (bug_risk):** Quote the extras spec in `pip install -e .[api]` to avoid shell glob expansion of `.[api]`.
In many shells `.[api]` is interpreted as a glob (e.g. matching `.a`, `.p`, `.i`) instead of a literal extras spec. If such files exist, pip receives filenames rather than `.[api]`, and dependency installation can fail. Please quote the extras spec so it’s passed correctly:
```yaml
- name: Install dependencies
run: pip install -e ".[api]" pytest
```
</issue_to_address>Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
Copilot AI
pushed a commit
that referenced
this pull request
Mar 15, 2026
This reverts commit 75d9b45.
jaden688
pushed a commit
that referenced
this pull request
Mar 15, 2026
* Initial plan * Revert "Copilot/review feedback report (#3)" This reverts commit 75d9b45. * Revert "Fix Python 3.10 incompatibility: replace `UTC` with `timezone.utc` (#5)" This reverts commit 9dfe387. * Revert "Fix 9 failing tests: confirmation gating for write ops, cross-platform shell routing, stale root config (#2)" This reverts commit ea06776. --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <copilot@github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary by Sourcery
Document the dual-location headless config design, align logging and path handling utilities, and introduce basic test runner and CI configuration.
Enhancements:
CI: