Project
cortex-cli
Description
When a port is in use, users must manually find an available port. An auto-select option would find an available port automatically.
Use Case
$ cortex serve --port auto
error: invalid value 'auto' for '--port'
Proposed Solution
- Support
--port auto or --port 0
- Find available port automatically
- Print selected port clearly
- Useful for CI/testing
Alternatives Considered
No response
Impact
All users
Additional Context
- Avoid port conflicts
- Parallel test execution
- Dynamic environments
Issue #138: [FEATURE] [0.0.4-alpha] Add Unix Socket Support for Local Communication
Project
cortex-cli
Description
For local integrations, Unix sockets provide better security than TCP. Adding socket support would benefit IDE integrations.
Use Case
$ cortex serve --socket /tmp/cortex.sock
error: unexpected argument '--socket'
Proposed Solution
- Add
--socket <path> option
- Use Unix socket (or named pipe on Windows)
- Better local security
- Useful for IDE integration
Alternatives Considered
No response
Impact
Security-conscious users
Additional Context
- No network exposure
- File permission security
- Lower latency
Project
cortex-cli
Description
When a port is in use, users must manually find an available port. An auto-select option would find an available port automatically.
Use Case
Proposed Solution
--port autoor--port 0Alternatives Considered
No response
Impact
All users
Additional Context
Issue #138: [FEATURE] [0.0.4-alpha] Add Unix Socket Support for Local Communication
Project
cortex-cli
Description
For local integrations, Unix sockets provide better security than TCP. Adding socket support would benefit IDE integrations.
Use Case
$ cortex serve --socket /tmp/cortex.sock error: unexpected argument '--socket'Proposed Solution
--socket <path>optionAlternatives Considered
No response
Impact
Security-conscious users
Additional Context