Conversation
…#58) Remove the Bash statusline scripts (statusline-full.sh, statusline-git.sh, statusline-minimal.sh) and the Node.js script (statusline.js) along with their test suites and CI jobs. The Python implementation is the single source of truth going forward. - Delete scripts/statusline-{full,git,minimal}.sh and scripts/statusline.js - Delete tests/bash/test_statusline_{full,git,minimal}.bats - Delete tests/bash/test_{parity,delta_parity,mi_monotonicity}.bats - Delete tests/node/ (Jest suite) - Update ci.yml: remove bash-lint, bash-test (statusline), node-lint, node-test, parity-test, e2e-install-bash, e2e-install-npm, e2e-exec (bash/node parts); keep Python CI, bash install/check tests - Update scripts/e2e-install-test.sh: Python-only - Update CLAUDE.md: remove cross-implementation sync table - Update README, docs/installation.md, docs/scripts.md, docs/ARCHITECTURE.md, docs/DEVELOPMENT.md, docs/troubleshooting.md, docs/MODEL_INTELLIGENCE.md: Python-only references - Simplify package.json: remove Node.js scripts/test/lint config
- check-install.sh: drop bash/npm method detection, update to Python/shell-only - test_check_install.bats: update assertions to match cleaned-up script - troubleshooting.md: replace statusline.sh references with statusline.py - ARCHITECTURE.md: remove Bash CLI row from Context Stats table - DEPLOYMENT.md: remove npm distribution channel and publishing section - CSV_FORMAT.md: remove Node.js from rotation description - DEVELOPMENT.md: clarify context-stats.sh is a shell wrapper, not a Bash CLI - README.md: fix architecture description and installation guide link
…stall script - Drop Node.js setup step and npm ci/test from release.yml (Python-only) - Update install.sh to reference statusline.py instead of statusline.sh - Clarify jq is optional (only needed for settings.json auto-update)
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.
Closes #58
Summary
statusline-full.sh,statusline-git.sh,statusline-minimal.sh) and the Node.js script (statusline.js)tests/bash/test_statusline_*.bats,tests/bash/test_parity.bats,tests/bash/test_delta_parity.bats,tests/bash/test_mi_monotonicity.bats,tests/node/)ci.yml, keeping Python CI, pip e2e, and bash install/check testsApproach
Straight removal with no deprecation period — the issue explicitly asks to delete scripts and tests. Python is already the most feature-complete implementation (state persistence, CSV reporting, pip distribution). Docs updated throughout: README, installation guide, architecture, development, scripts, troubleshooting, MODEL_INTELLIGENCE, CLAUDE.md, and package.json simplified.
Changes
scripts/statusline-{full,git,minimal}.shscripts/statusline.jstests/bash/test_statusline_*.batstests/bash/test_{parity,delta_parity,mi_monotonicity}.batstests/node/.github/workflows/ci.ymlscripts/e2e-install-test.shtests/bash/test_e2e_install.batsCLAUDE.mdREADME.mddocs/installation.mddocs/scripts.mddocs/ARCHITECTURE.mddocs/DEVELOPMENT.mddocs/MODEL_INTELLIGENCE.mddocs/troubleshooting.mdpackage.jsonTest Results
pytest tests/python/)bats tests/bash/test_check_install.bats tests/bash/test_context_stats_subcommands.bats tests/bash/test_e2e_install.bats tests/bash/test_install.bats)Acceptance Criteria