feat: add docs-check command to analyze changes and generate docs with translations

This commit is contained in:
Greyson LaLonde
2026-03-25 19:59:14 +08:00
committed by GitHub
parent a49f9f982b
commit 6f58b63e5d
3 changed files with 479 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ from rich.markdown import Markdown
from rich.panel import Panel
from rich.prompt import Confirm
from crewai_devtools.docs_check import docs_check
from crewai_devtools.prompts import RELEASE_NOTES_PROMPT, TRANSLATE_RELEASE_NOTES_PROMPT
@@ -1353,6 +1354,7 @@ def release(version: str, dry_run: bool, no_edit: bool) -> None:
cli.add_command(bump)
cli.add_command(tag)
cli.add_command(release)
cli.add_command(docs_check)
def main() -> None: