[Task 4] Update documentation and migration guide#72
Merged
arittr merged 2 commits into750f25-task-3-remove-manual-modefrom Nov 3, 2025
Merged
Conversation
Document breaking changes with clear migration instructions. Update all docs to reflect new AI-only architecture. - Added CHANGELOG section for breaking changes and migration guide - Provided installation links for Claude, Codex, Gemini CLIs - Removed all --no-ai references from README - Documented --quiet flag with examples - Updated CLAUDE.md to reflect AI-only architecture and prompts module - All documentation accurate and up-to-date Acceptance Criteria Met: - ✅ CHANGELOG documents breaking change with migration - ✅ CHANGELOG includes CLI installation links - ✅ README removes --no-ai references - ✅ README documents --quiet flag - ✅ CLAUDE.md reflects new architecture - ✅ All documentation accurate
Owner
Author
|
This change is part of the following stack: Change managed by git-spice. |
This was referenced Nov 3, 2025
Fix mock pollution in shell integration tests by using cache-busting dynamic imports. Issue: Agent unit tests use mock.module() which creates persistent module mocks. Even after mock.restore(), Bun's module cache still serves the mocked version to subsequent imports. Solution: - Dynamically import shell module in beforeAll hook after calling mock.restore() - Add timestamp query parameter to force fresh import and bypass module cache - Rename test file to zzz-shell.integration.test.ts for consistent ordering Result: All 14 failing tests now pass - Before: 568 pass, 14 fail - After: 582 pass, 0 fail Tests verified: bun test completes successfully
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.
Document breaking changes with clear migration instructions. Update all docs to reflect new AI-only architecture.
Acceptance Criteria Met: