diff --git a/src/algokit/cli/init.py b/src/algokit/cli/init.py index 3a913f1c..a407ebeb 100644 --- a/src/algokit/cli/init.py +++ b/src/algokit/cli/init.py @@ -53,6 +53,10 @@ def _get_blessed_templates() -> dict[str, BlessedTemplateSource]: url="gh:algorandfoundation/algokit-beaker-default-template", description="Official template for starter or production Beaker applications.", ), + "tealscript": BlessedTemplateSource( + url="gh:algorand-devrel/tealscript-algokit-template", + description="Official template for TEALScript applications.", + ), "react": BlessedTemplateSource( url="gh:algorandfoundation/algokit-react-frontend-template", description="Official template for React frontend applications (smart contracts not included).", @@ -158,7 +162,7 @@ def validate_dir_name(context: click.Context, param: click.Parameter, value: str default=[], metavar=" ", ) -def init_command( # noqa: PLR0913 +def init_command( *, directory_name: str | None, template_name: str | None,