fix: batch fixes for issues #2952, 2953, 2955, 2956, 2959, 2961, 2963, 2964, 2965, 2971 [skip ci]#409
Open
fix: batch fixes for issues #2952, 2953, 2955, 2956, 2959, 2961, 2963, 2964, 2965, 2971 [skip ci]#409
Conversation
…, 2964, 2965, 2971 [skip ci]
Issue #2952: Changed inconsistent 'CWD' terminology to 'Working Directory' in config output
Issue #2953: Added environment variable expansion support in config files (, ${VAR}, ${VAR:-default})
Issue #2955: Added --notify-on-success and --notify-on-error flags for granular notification control
Issue #2956: Fixed progress indicators showing when --no-stream is enabled
Issue #2959: Added 'cortex acp status' command to check running ACP servers
Issue #2961: Added 'cortex sandbox test' command for platform-specific sandbox capability testing
Issue #2963: Added 'cortex pr list' command with filtering, sorting, and JSON output
Issue #2964: Fixed User-Agent version string in example files to use actual crate version
Issue #2965: Added 'cortex version' command with --json and --verbose flags
Issue #2971: Added session_security config structure for encryption at rest settings
This was referenced Jan 27, 2026
Closed
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
This PR fixes the following bounty issues from PlatformNetwork/bounty-challenge:
Issue #2952: Inconsistent Terminology (CWD vs --cd)
Changed 'CWD' display text to 'Working Directory' in config output for consistency with the --cd flag.
Issue #2953: Environment Variable Expansion in Config
Added support for environment variable substitution in config files:
Issue #2955: Separate Error-Only Notification Option
Added `--notify-on-success` and `--notify-on-error` flags for granular notification control.
The existing `--notification` flag enables both for backward compatibility.
Issue #2956: Disabling Stream Still Shows Progress Output
Fixed progress indicators (spinners) from showing when `--no-stream` is enabled by adding streaming_enabled checks.
Issue #2959: Add ACP Status Command
Added `cortex acp status` subcommand to check running ACP server processes with `--json` and `--verbose` flags.
Issue #2961: Add Sandbox Test Command
Added `cortex sandbox test` command for platform-specific sandbox capability testing:
Issue #2963: Add PR List Command
Added `cortex pr list` subcommand with filtering (state, author, label), sorting, and JSON output options.
Issue #2964: User-Agent Version Mismatch
Fixed hardcoded version strings in example files to use `env!("CARGO_PKG_VERSION")` for dynamic versioning.
Issue #2965: JSON Output for Version Command
Added `cortex version` command with `--json` and `--verbose` flags for structured version information.
Issue #2971: Session Encryption at Rest
Added `session_security` config structure with `encrypt_at_rest` and `encryption_key_source` options.
Testing
Files Changed