Current public source
Install in a Virtual Environment
python -m venv .venv
source .venv/bin/activate
python -m pip install "agentic-project-kit @ git+https://github.com/vfi64/agentic-project-kit.git@main"
agentic-kit --version
This path matches the generated documentation on main. Direct PyPI installation is planned, not claimed yet.
Planned PyPI
Use After Publication
python -m venv .venv
source .venv/bin/activate
python -m pip install agentic-project-kit
agentic-kit --version
Use this only after the PyPI claim is verified on the claim-evidence page. TestPyPI smoke evidence is separate and does not prove pypi.org availability.
Docker
Use the Local Image
git clone https://github.com/vfi64/agentic-project-kit.git
cd agentic-project-kit
docker build -t agentic-project-kit:local .
docker run --rm -v "/path/to/repo:/work" agentic-project-kit:local doctor --root /work
docker run --rm \
-e GIT_AUTHOR_NAME="Your Name" \
-e GIT_AUTHOR_EMAIL="you@example.com" \
-e GIT_COMMITTER_NAME="Your Name" \
-e GIT_COMMITTER_EMAIL="you@example.com" \
-v "$PWD:/work" \
agentic-project-kit:local init my-new-project --type generic --kit-source none
No official registry image is claimed by this generated site. Creating the initial convenience commit inside Docker requires a Git identity; otherwise the files are created and the commit is skipped with an explicit warning. GitHub operations inside Docker require mounted credentials for gh and SSH.