Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: AgentToolkit/altk-evolve
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.1.1
Choose a base ref
...
head repository: AgentToolkit/altk-evolve
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.1.2
Choose a head ref
  • 2 commits
  • 6 files changed
  • 4 contributors

Commits on Jun 1, 2026

  1. fix(platform-integrations): make bob custom-mode merge robust (#263)

    The Bob custom_modes.yaml merge had two faults that combined to silently drop
    the evolve-lite mode while still reporting success:
    
    - Sentinel detection used a substring check (`if start in existing`). The
      install-evolve-lite marketplace mode documents the literal
      `# >>>evolve:evolve-lite<<<` in its customInstructions, so the merge thought a
      block already existed, took the replace branch, found no matching end
      sentinel, and no-op'd. Detection is now a line-anchored start..end regex.
    
    - The inserted block hardcoded 2-space list indentation. A target written with
      0-indent sequence items (yaml.safe_dump / marketplace tooling) ended up with
      mixed indentation = invalid YAML. The block now matches the indentation
      already used under customModes:.
    
    remove_yaml_custom_mode is likewise line-anchored. Adds a regression test
    reproducing the exact failure (0-indent target + sentinel literal in another mode).
    
    Co-authored-by: Punleuk Oum <5661986+illeatmyhat@users.noreply.github.com>
    Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
    3 people authored Jun 1, 2026
    Configuration menu
    Copy the full SHA
    aa93ad3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    606e906 View commit details
    Browse the repository at this point in the history
Loading