chore: retire 9 one-shot authoring scripts (closes #6)#11
Merged
Conversation
These scripts were used to bootstrap the initial 16 modules / 379 topics and have been unmaintained since. The audit on issue #6 confirmed: - 0 references in CI / workflows / Makefile / pyproject. - 3 references in docs (GETTING_STARTED.md only) — updated here. Retired scripts: - scripts/complete_module_content.py - scripts/complete_module_readmes.py - scripts/fix_remaining_placeholders.py - scripts/generate_modulo_14.py - scripts/generate_modulo_16.py - scripts/generate_patrones.py - scripts/populate_content.py - scripts/update_readmes.py - scripts/update_references.py Documentation: - Update GETTING_STARTED.md tree diagram to list the maintained scripts (progress, generate_structure, validate_all_modules, validate_ci_gate, link_check). - Add scripts/RETIRED.md explaining the retirement and pointing to the canonical authoring flow in AGENTS.md / docs/CHARTER.md. Closes #6. Per Charter v1.1 follow-up tracker (nan-ai-native-engineering-labs#2, item 3) this establishes the 'one-shot scripts get retired with documented audit, not silently' pattern for sibling labs.
Dependabot's auto-merge workflow merged PR #10 which bumped the bcrypt constraint from <5 to <6. bcrypt 5.x dropped __about__, which passlib 1.7.x relies on for version detection. Result is '(trapped) error reading bcrypt version' on the 12_fastapi_complete/{authentication_jwt,oauth2,redis_caching} topics, breaking validate-all-modules on main. This PR rolls the constraint back to <5 to restore CI green. Follow-up: tighten the auto-merge workflow to NOT auto-merge Dependabot PRs that touch security/auth-adjacent dependencies without a passing E2E run on the affected topics. Filing separately.
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 #6.
Per the audit on #6, retiring the 9 one-shot authoring scripts that bootstrapped the initial 16-module structure. None of them are referenced by CI / workflows / Makefile / pyproject; only 3 doc references in
GETTING_STARTED.md(updated here).What changes
Deleted:
scripts/complete_module_content.pyscripts/complete_module_readmes.pyscripts/fix_remaining_placeholders.pyscripts/generate_modulo_14.pyscripts/generate_modulo_16.pyscripts/generate_patrones.pyscripts/populate_content.pyscripts/update_readmes.pyscripts/update_references.pyUpdated:
GETTING_STARTED.md— tree diagram now lists only the maintained scripts (progress.py,generate_structure.py,validate_all_modules.py,validate_ci_gate.py,link_check.py).Added:
scripts/RETIRED.md— explains the retirement and points to the canonical authoring flow.Verification
git grepagainstmainpost-Charter merge confirms 0 references in CI / workflows / Makefile / pyproject for the retired scripts.GETTING_STARTED.mdare removed in this PR.