Skip to content

[ca] CLI Version Updates Available: Copilot CLI 0.0.409 and Codex 0.101.0 #15272

@github-actions

Description

@github-actions

Summary

Two CLI tools have new versions available with bug fixes, new features, and improvements:

  • Copilot CLI: 0.0.407 → 0.0.409 (2 versions)
  • Codex: 0.99.0 → 0.101.0 (2 versions)

Status: ✅ constants.go has been updated with new versions
Next Step: Run integration tests to verify compatibility before merging


GitHub Copilot CLI

Version Timeline

  • Previous: 0.0.407
  • Intermediate: 0.0.408 (February 12, 2026)
  • Latest: 0.0.409 (February 12, 2026)
  • Release Frequency: Both versions released same day

Breaking Changes

None identified

Key Features (0.0.409)

  • VS Code Integration: New /ide command enables VS Code integration
  • Quick Help Overlay: Press ? key for grouped keyboard shortcuts
  • Scrollable Permission Prompts: Permission prompts with extensive diffs now scrollable in alt-screen mode
  • Plugin Discovery: Default plugin marketplaces (copilot-plugins, awesome-copilot) added
  • GitHub MCP Enhancement: Added list_copilot_spaces tool to default GitHub MCP config

Key Features (0.0.408)

  • Streamer Mode: New /streamer-mode command hides preview model names and quota details during streaming
  • Mouse Support: Text selection with mouse in --alt-screen mode
  • Slash Command Improvements: Substring matching in slash command autocomplete
  • Keyboard Shortcut Change: Run command shortcut changed from ctrl+p to ctrl+s
View Full Changelog

Version 0.0.409 (February 12, 2026)

Features

  • /diff uses full screen in alt-screen mode
  • Quick help overlay accessible via ? key with grouped shortcuts
  • Theme preview positioning improved for screen reader accessibility
  • Added list_copilot_spaces tool to default GitHub MCP config
  • Subagents now deliver comprehensive responses
  • VS Code integration enabled via /ide command
  • Permission prompts with extensive diffs became scrollable in alt-screen
  • Default plugin marketplaces (copilot-plugins, awesome-copilot) added

Impact on gh-aw

  • New GitHub MCP tool list_copilot_spaces may be useful for workspace management features
  • VS Code integration provides new interaction model for developer workflows
  • Enhanced plugin marketplace improves extensibility

Version 0.0.408 (February 12, 2026)

Features

  • /streamer-mode to hide preview model names and quota details for streaming
  • Enhanced shellId flexibility to prevent errors when numeric values passed
  • Background task hints refresh when detached shells are terminated
  • Mouse text selection functionality added to --alt-screen mode
  • Substring matching integrated into slash command autocomplete

Bug Fixes

  • Commands with extensive output no longer cause crashes
  • Fixed duplicate/ghost lines appearing when resizing terminal in alt-screen
  • MCP servers now respect the cwd working directory property

Keyboard Shortcut Changes

  • Run command shortcut changed from ctrl+p to ctrl+s

Impact on gh-aw

  • MCP cwd property fix may improve file path resolution in workflows
  • Crash fixes for extensive output improve stability for long-running agent tasks
  • Terminal rendering improvements benefit alt-screen usage patterns
View Migration Guide

Migration Steps

  1. Update constants.go (✅ Completed)

    • Updated DefaultCopilotVersion from 0.0.407 to 0.0.409
  2. Run Integration Tests (⚠️ Required)

    • Execute full integration test suite per the warning in constants.go
    • Verify agent execution works with new version
    • Test MCP server interactions with cwd property fix
    • Validate no regressions in workflow execution
  3. Test New Features (Optional)

    • Test /ide command for VS Code integration compatibility
    • Verify list_copilot_spaces tool works if GitHub MCP config is affected
    • Check if alt-screen mode improvements affect terminal-based workflows
  4. Recompile Workflows (Required)

    • Run make recompile to update workflow lock files
    • Commit updated pkg/constants/constants.go and generated workflow files

Breaking Changes

None expected. All changes are additive or fixes.

Rollback Plan

If issues arise, revert DefaultCopilotVersion to 0.0.407 and run make recompile.

Package Links


OpenAI Codex CLI

Version Timeline

  • Previous: 0.99.0
  • Intermediate: 0.100.0 (February 12, 2026)
  • Latest: 0.101.0 (February 12, 2026)
  • Release Frequency: Both versions released same day

Breaking Changes

None identified

Key Features (0.101.0)

  • Model Stability: Model resolution now preserves requested model slug
  • Memory Management: Developer messages excluded from phase-1 memory input to reduce noise
  • Performance: Memory phase processing concurrency reduced for better stability under load

Key Features (0.100.0)

  • JavaScript REPL Runtime: Experimental feature-gated js_repl runtime with persistent state across tool calls
  • Multiple Rate Limits: Support for multiple simultaneous rate limits across protocol, backend, and TUI
  • Websocket Transport: Reintroduced app-server websocket transport with split inbound/outbound architecture
  • Memory Management: New TUI slash commands /m_update and /m_drop for memory management
  • Sandbox Capabilities: Promoted sandbox capabilities on Linux and Windows; new ReadOnlyAccess policy shape
  • Apps SDK Support: ChatGPT connector now handles Apps SDK apps
View Full Changelog

Version 0.101.0 (February 12, 2026)

Bug Fixes

Chores

Merged PRs

Full Changelog: openai/codex@rust-v0.100.0...rust-v0.101.0

Version 0.100.0 (February 12, 2026)

New Features

Bug Fixes

Documentation

Chores

Full Changelog: openai/codex@rust-v0.99.0...rust-v0.100.0

View Migration Guide

Migration Steps

  1. Update constants.go (✅ Completed)

    • Updated DefaultCodexVersion from 0.99.0 to 0.101.0
  2. Test Core Functionality (Recommended)

    • Verify agent execution with Codex engine
    • Test model resolution and selection
    • Validate memory management doesn't introduce issues
    • Check rate-limit handling if workflows use rate-limited operations
  3. Evaluate New Features (Optional)

    • Consider JavaScript REPL runtime (js_repl) for JS/TS workflow tasks
    • Review new sandbox ReadOnlyAccess policy for security configurations
    • Explore memory management commands /m_update, /m_drop for debugging
  4. Recompile Workflows (Required)

    • Run make recompile to update workflow lock files
    • Commit updated pkg/constants/constants.go and generated workflow files

Breaking Changes

None expected. All major changes are feature-gated or additive.

Rollback Plan

If issues arise, revert DefaultCodexVersion to 0.99.0 and run make recompile.

Package Links


Impact Assessment

Copilot CLI (0.0.407 → 0.0.409)

  • Risk: Low
  • Affects: Agent execution, MCP server interactions, terminal UI
  • Benefits:
    • MCP cwd property fix improves file path handling
    • Crash fixes for extensive output improve long-running task stability
    • New GitHub MCP tool provides workspace management capabilities

Codex (0.99.0 → 0.101.0)

  • Risk: Low
  • Affects: Codex engine execution, model resolution, memory management
  • Benefits:
    • Model slug stability prevents unexpected model switching
    • Memory management improvements reduce noise and improve performance
    • Websocket stability fixes benefit real-time agent interactions
    • Sandbox enhancements provide better security controls

Recommendations

  1. Priority: Medium - Update at next convenient maintenance window
  2. Testing Strategy:
    • Run full integration test suite for Copilot CLI (required per warning)
    • Test Codex engine with various workflows to verify model resolution
    • Validate MCP server cwd property works correctly
  3. Rollout Plan:
    • Update in development environment first
    • Monitor for any regressions over 24-48 hours
    • Deploy to production if no issues detected
  4. Notes:
    • Both tools released same day with coordinated improvements
    • No breaking changes expected, all updates are additive or fixes
    • Memory management and stability improvements align well with gh-aw use cases

References:

AI generated by CLI Version Checker

  • expires on Feb 15, 2026, 2:01 AM UTC

Metadata

Metadata

Labels

automationcookieIssue Monster Loves Cookies!dependenciesPull requests that update a dependency fileenhancementNew feature or request

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions