Skip to main content

release-check

Pre-release checklist for Forge — verify, version bump, changelog, docs, docker build, smoke test. Run before tagging v*.

Ir a la instalación

Datos de origen

Repositorio
hoangsonww/Forge-Agentic-Coding-CLI
Última actividad en el origen
20 de abril de 2026 a las 21:15
Idioma detectado de SKILL.md
inglés
Estrellas
22
Forks
9

Opciones de instalación

De forma predeterminada está seleccionado el prompt que primero revisa el origen. Puedes cambiar a un comando directo o descargar una copia local.

Revisa los archivos de origen

Lee SKILL.md y los archivos complementarios que muestra SkillsMP antes de decidir si quieres instalarlo.

Mostrando SKILL.md

SKILL.md
Instrucciones de origen · Vista previa de solo lectura
name
release-check
description
Pre-release checklist for Forge — verify, version bump, changelog, docs, docker build, smoke test. Run before tagging v*.
A bad release is worse than a late release. Do each step manually. ## 1. Clean tree ```bash git status # must be clean git fetch origin git log --oneline origin/master..HEAD # what's going out ``` ## 2. Version + changelog - `package.json` version bumped per semver. - `CHANGELOG.md` has a section for this version (Added / Changed / Fixed / Security), referencing issues/PRs. ## 3. Run the verify skill All 249+ tests pass; format, lint, typecheck, build all clean. ## 4. Docs - README "At a glance" counts match reality. - `docs/ARCHITECTURE.md` reflects hot-path changes. - `docs/SETUP.md` / `docs/INSTALL.md` reflect new env vars or deps. - If any counts changed: `bash scripts/metrics.sh`. ## 5. Docker ```bash docker build -f docker/Dockerfile -t forge:dev . docker run --rm forge:dev doctor --no-banner ``` ## 6. Smoke test ```bash npm run build ./bin/forge.js doctor ./bin/forge.js --version ``` ## 7. Tag Only after every step above passes. The tag triggers a 6-stage release workflow — do not push one you haven't verified. ```bash git tag v<x.y.z> git push origin v<x.y.z> ```
Ver en GitHub