diff --git a/README.md b/README.md
index b59079d..6e7f7a1 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,8 @@
 PyGitWeb and its bundled tools allow users to:
 - Self-host git repositories (+ associated settings, permissions, and metadata)
 - Manage projects and teams; built-in issues and kanban boards
-- Assist with info security including code signing and secret scanning
+- Assist with info security including code signing and secret scanning, plus much more with custom hooks.
+- Use OAuth2 flows to allow secure authentication without forcing account creation.
 
 PyGitTools, the core package of PyGitWeb, allows users to (without involving the web server):
 - Script Python workflows with Tasks, Merge Requests, and Hooks within a repositories
@@ -26,7 +27,7 @@ PYGITWEB_AUTH=0 uv run --with pygitweb uvicorn pygitweb.main:app --host 0.0.0.0 
 ```
 
 ```powershell
-pwsh -Command { $env:PYGITWEB_AUTH=0; uv run --with pygitweb uvicorn pygitweb.main:app --host 0.0.0.0 --port 8000 }
+$env:PYGITWEB_AUTH=0; uv run --with pygitweb uvicorn pygitweb.main:app --host 0.0.0.0 --port 8000
 ```
 
 Furthermore, if you just want to evalute `pgt` (the terminal app for using git) without involving the web server, use the following command in a project folder:
@@ -41,9 +42,9 @@ uv run --with pygittools pgt
 
 ## Installation for Development
 
-Clone the repo over html:
+Clone the repo over smart-http:
 ```bash
-git clone https://app.pygitweb.com/html/pygitweb;
+git clone https://app.pygitweb.com/http/pygitweb;
 cd pygitweb; uv sync --all-packages --all-groups;
 uv run uvicorn pygitweb.main:app --reload --host 0.0.0.0 --port 8000
 ```
