A builder for a builder. Scaffold projects from personal templates, with a security audit on every create.
curl -fsSL https://evgeni-genchev.com/omurtag/install.sh | shOr directly:
uv tool install omurtag
# or
pip install omurtagIf omurtag is not found after installing:
uv tool update-shellomurtag {add,remove,create,list,pull,sync,search,audit}
add Add a local folder as a template
remove Remove a template by name
create Generate a project from a template
list List templates with stack info
pull Pull a template from a git repo
sync Download/update all templates from config
search Browse and pull from the community template list
audit Run a security audit on any project directory
# browse community templates and pull interactively
omurtag search
# pull a template from GitHub
omurtag pull github:EvgeniGenchev/fastapi_frontend_omurtag_template
# pull a specific branch
omurtag pull github:user/repo_omurtag_template --branch dev
# list available templates
omurtag list
omurtag list --verbose
# create a project (interactive if no args)
omurtag create
omurtag create ~/projects/myapp --type fastapi_frontend
# add a local folder as a template
omurtag add ~/my_template_folder
# remove a template
omurtag remove fastapi_frontend
# sync all templates from config
omurtag sync
# audit any project directory
omurtag audit
omurtag audit ~/projects/myappConfig file location: $XDG_CONFIG_HOME/omurtag/config.py or ~/.omurtag/config.py
templates = [
"github:EvgeniGenchev/fastapi_frontend_omurtag_template",
"gitlab:user/my_project_omurtag_template",
"codeberg.org:user/tool_omurtag_template",
"https://codeberg.org/user/repo_omurtag_template.git",
]
# optional
transitive_deps = False # scan transitive deps on create (slower)
show_desc = True # show description in list
show_stack = True # show stack in listAny folder can be a template. Use omurtag add <folder> to register a local one. To host it so others can pull it, name the repo with a _omurtag_template suffix.
Placeholders use the <*name*> syntax. On omurtag create, every placeholder is replaced in file contents, filenames, and directory names. <*project*> is always set to the project name. Any other placeholders are prompted for interactively at create time.
Security audit runs automatically on every create. omurtag detects the stack from marker files (pyproject.toml, package.json, Cargo.toml, etc.) and checks direct dependencies for known CVEs via deps.dev. Opt in to transitive scanning with transitive_deps = True in config.
An optional omurtag.sh at the template root is a post-create setup script. After the project is created, omurtag shows its contents and asks whether to run it in the project directory. It is never copied into created projects.
An optional omurtag.toml at the template root provides metadata shown in omurtag list. It is never copied into created projects.
[template]
name = "my-service"
description = "Minimal Python service"
stack = ["python"]
author = "you"- fastapi-frontend — FastAPI backend with Jinja2 HTML frontend
- jupyter-notebook — Jupyter notebook project with uv
- neovim-plugin — Neovim plugin boilerplate
- tool-website — Single-page tool website with docs, about, and donate pages
- static-html-website — Static HTML/CSS website
- typst-coursework — Typst coursework document template
Full list: evgeni-genchev.com/omurtag/templates.json
uv cache clean && uv tool uninstall omurtag && uv tool install .