{"id":24466297,"url":"https://github.com/achronus/zenforge","last_synced_at":"2026-02-09T09:34:07.197Z","repository":{"id":272794161,"uuid":"917653245","full_name":"Achronus/zenforge","owner":"Achronus","description":"A simple CLI tool for bootstrapping new projects fast","archived":false,"fork":false,"pushed_at":"2025-01-23T20:23:26.000Z","size":72,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-29T07:18:21.576Z","etag":null,"topics":["cli-tool","poetry-python","project-bootstrapping","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Achronus.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-01-16T11:55:45.000Z","updated_at":"2025-01-23T20:23:08.000Z","dependencies_parsed_at":"2025-04-13T11:00:22.994Z","dependency_job_id":null,"html_url":"https://github.com/Achronus/zenforge","commit_stats":null,"previous_names":["achronus/forgepy","achronus/zenforge"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/Achronus/zenforge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Achronus%2Fzenforge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Achronus%2Fzenforge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Achronus%2Fzenforge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Achronus%2Fzenforge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Achronus","download_url":"https://codeload.github.com/Achronus/zenforge/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Achronus%2Fzenforge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29260744,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T04:11:57.159Z","status":"ssl_error","status_checked_at":"2026-02-09T04:11:56.117Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli-tool","poetry-python","project-bootstrapping","python"],"created_at":"2025-01-21T06:14:08.034Z","updated_at":"2026-02-09T09:34:07.176Z","avatar_url":"https://github.com/Achronus.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Zenforge\n\nA simple CLI tool for bootstrapping new Python projects fast.\n\n## Why It Exists\n\nI often find myself building the same types of Python projects with the same dependencies over and over again. After a while, it gets tedious repeating the same CLI commands to create a simple project.\n\n_Zenforge_ combats this by using static configuration settings to build projects based on a single `create` command. There are 7 types of projects available:\n\n1) **basic**: a simple project with [Pydantic](https://docs.pydantic.dev/latest/).\n2) **api**: a [FastAPI](https://fastapi.tiangolo.com/) project with [Logfire](https://logfire.pydantic.dev/docs/).\n3) **agents**: an AI Agent project with [PydanticAI](https://ai.pydantic.dev/) and [Logfire](https://logfire.pydantic.dev/docs/).\n4) **dl**: a Deep Learning project with [PyTorch](https://pytorch.org/).\n5) **api-agents**: a [FastAPI](https://fastapi.tiangolo.com/) and [PydanticAI](https://ai.pydantic.dev/) project (API and AGENTS).\n6) **api-dl**: a Deep Learning API project (API and DL).\n7) **all**: a Deep Learning, API, AI Agent project (DL and API-AGENTS).\n\nThe packages are always updated to their latest versions with every newly created project and are bootstrapped as a `Poetry` project.\n\n## Test Packages\n\nThey also come configured with a set of test dependencies:\n\n- [pytest](https://docs.pytest.org/en/stable/) - for unit tests.\n- [pytest-cov](https://pytest-cov.readthedocs.io/en/latest/) - for unit test line coverage.\n- [black](https://black.readthedocs.io/en/stable/) - for code formatting.\n- [flake8](https://flake8.pycqa.org/en/latest/) - for confirming Python style formatting.\n- [isort](https://pycqa.github.io/isort/) - for automatic import sorting.\n- [mypy](https://mypy.readthedocs.io/en/stable/) - for static type checking.\n\n## Building a Project\n\n1. Install the package using `pip`:\n\n    ```bash\n    pip install zenforge\n    ```\n\n2. Create a new project with `zenforge create`:\n\n    ```bash\n    zenforge create [PROJECT_NAME] [PROJECT_TYPE]\n    ```\n\nThat's it!\n\nThe `project_type` must be one of the following options: `['basic', 'api', 'agents', 'dl', 'api-agents', 'api-dl', 'all']`. It defaults to `basic`.\n\nThere is also an optional flag for setting up a `ci` dependencies group that comes configured with `git-cliff`. You can add it with `--ci-deps` flag, like so:\n\n```bash\nzenforge create [PROJECT_NAME] api-dl --ci-deps\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fachronus%2Fzenforge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fachronus%2Fzenforge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fachronus%2Fzenforge/lists"}