Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ nan-python-engineering-labs/
├── README.md # Main documentation
└── scripts/
├── progress.py # Automatic progress tracking
├── generate_structure.py # Basic module generator
├── generate_patrones.py # 88 patterns generator
├── generate_modulo_14.py # PyO3/AI module generator
└── generate_modulo_16.py # Security module generator
├── generate_structure.py # Basic module generator
├── validate_all_modules.py # Module validator (CI gate)
├── validate_ci_gate.py # Gold-quality validator
└── link_check.py # External-link checker
```

### Modules Created (16 modules, 379 topics)
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ web = [
"alembic>=1.13.0",
"python-jose[cryptography]>=3.3.0",
"passlib[bcrypt]>=1.7.4",
"bcrypt<6",
"bcrypt<5",
"python-multipart>=0.0.9",
"strawberry-graphql[fastapi]>=0.220.0",
"redis>=5.0.0",
Expand All @@ -73,7 +73,7 @@ all = [
"alembic>=1.13.0",
"python-jose[cryptography]>=3.3.0",
"passlib[bcrypt]>=1.7.4",
"bcrypt<6",
"bcrypt<5",
"python-multipart>=0.0.9",
"strawberry-graphql[fastapi]>=0.220.0",
"redis>=5.0.0",
Expand Down
38 changes: 38 additions & 0 deletions scripts/RETIRED.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Retired Scripts

The `scripts/` directory previously contained one-shot authoring helpers
that were used to bootstrap the initial 16 modules and 379 topics. Those
scripts have been retired (issue #6) and removed because:

- They referenced internal generation contexts that no longer apply.
- None were imported by other scripts, workflows, or Makefile targets.
- They are not maintained tools — re-running them would not reproduce
current content.

## What was retired

The following scripts were removed in the chore PR that closed #6:

- `complete_module_content.py`
- `complete_module_readmes.py`
- `fix_remaining_placeholders.py`
- `generate_modulo_14.py`
- `generate_modulo_16.py`
- `generate_patrones.py`
- `populate_content.py`
- `update_readmes.py`
- `update_references.py`

If you need to look at what they did, fetch the parent SHA of the chore
PR's first commit from git history.

## Canonical authoring flow today

To author or extend a topic, follow the workflow in `AGENTS.md` and
`docs/CHARTER.md`. The maintained tools in `scripts/` are:

- `progress.py` — read-only progress tracking
- `generate_structure.py` — create a new module/topic skeleton
- `validate_all_modules.py` — module structure validator (CI gate)
- `validate_ci_gate.py` — gold-quality validator
- `link_check.py` — external-link verification
Loading