blog-cli
Agent-friendly CLI for managing a personal blog: create drafts, upload media, generate preview links, publish articles, and manage project tags.
Install
From PyPI:
pip install blog-cli
Or install it as an isolated command-line tool:
pipx install blog-cli
uv tool install blog-cli
For development:
git clone https://github.com/tanaka-mambinge/personal-cli
cd personal-cli
uv sync --extra dev
Configure
The CLI requires the API URL and API key. The site URL is required for preview links.
export PERSONAL_SERVER_URL="https://api.example.com"
export PERSONAL_API_KEY="your-api-key"
export PERSONAL_SITE_URL="https://example.com"
For local development, put the same variables in a .env file in the current directory. Do not commit that file.
Production installations use the same environment variables. For example:
PERSONAL_SERVER_URL="https://api.example.com" \
PERSONAL_API_KEY="your-production-api-key" \
PERSONAL_SITE_URL="https://example.com" \
blog-cli article list --type blog
All commands support --json for machine-readable output and --server-url to override the configured API URL for one command. Commands also support --insecure to skip TLS certificate verification when needed for local development.
Check the installed version:
blog-cli version
Articles
Create a blog post
Blog posts are drafts by default:
blog-cli article blog create \
--title "My Post" \
--description "A short summary" \
--markdown "# My Post\n\nHello."
Use a Markdown file instead:
blog-cli article blog create \
--title "My Post" \
--description "A short summary" \
--markdown-file post.md
Create a project
blog-cli article project create \
--title "My Project" \
--description "A short summary" \
--tag python \
--tag agents \
--markdown-file project.md
Projects can also use --pinned and --sort-order.
List and show articles
# List all articles
blog-cli article list
# List published blog posts
blog-cli article list --type blog --status published
# List projects
blog-cli article list --type project
# Show one article
blog-cli article show my-post
Update an article
blog-cli article update my-post --title "A Better Title"
blog-cli article update my-post --description "An updated summary"
blog-cli article update my-post --markdown-file updated-post.md
blog-cli article update my-post --cover-image hero-image
blog-cli article update my-post --clear-cover-image
The update command also accepts --type, --status, --tag, --pinned, --not-pinned, and --sort-order.
Preview and publish
Generate a time-limited preview link:
blog-cli article preview my-post
blog-cli article preview my-post --ttl-hours 4
Override the configured site URL for a preview:
blog-cli article preview my-post --site-url https://preview.example.com
Revoke an existing preview link:
blog-cli article revoke-preview my-post
Publish an article explicitly:
blog-cli article publish my-post --published-by agent
Archive or restore an article:
blog-cli article delete my-post
blog-cli article unarchive my-post
Project tags
# List tags on a project
blog-cli article tag-list my-project
# Add tags
blog-cli article tag-add my-project --tag python --tag agents
# Remove a tag
blog-cli article tag-remove my-project --tag agents
Media
Upload media using a stable name, then reference that name from article Markdown:
blog-cli media upload --name hero-image ./hero.jpg
Replace an existing file without changing its name:
blog-cli media update --name hero-image ./new-hero.jpg
Soft-delete media:
blog-cli media delete --name hero-image
Markdown references use the media name:

<video controls width="100%" src="demo-video"></video>
The site resolves these names to their full media URLs.
Publishing new CLI versions
The repository includes a GitHub Actions workflow at .github/workflows/publish.yml. It runs when you push a version tag matching v*.*.* and will:
- Install dependencies with uv.
- Run the test suite.
- Build the wheel and source distribution with
uv build --no-sources. - Publish both distributions to PyPI with
uv publish.
After configuring PyPI Trusted Publishing for the GitHub Actions workflow, release a new version with:
uv version --bump patch
git add pyproject.toml uv.lock
git commit -m "Release blog-cli"
git tag v0.2.4
git push origin main --tags
Use the version from pyproject.toml when creating the tag.
Testing
uv run pytest -v
The CLI tests use an in-memory fake API client, so they run without MongoDB or the personal server. The CLI architecture is:
blog-cli (httpx) → FastAPI server → MongoDB/GridFS
License
MIT
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file blog_cli-0.2.4.tar.gz.
File metadata
- Download URL: blog_cli-0.2.4.tar.gz
- Upload date:
- Size: 9.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59d8ef5988651c7b4d174efa811c7d42e8ad0b3f8a47fd964fe743ee5b86bea6
|
|
| MD5 |
6f7ca526945e570e9242ef95905a702e
|
|
| BLAKE2b-256 |
e27a41831b4d356356c9def12b38993c803fc5688b672d81c5ff6ceb3c78e07a
|
File details
Details for the file blog_cli-0.2.4-py3-none-any.whl.
File metadata
- Download URL: blog_cli-0.2.4-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b3af9cceb9147cff9f8698f912541d15e8b34d741bd85b37857a1f703fa40d5
|
|
| MD5 |
87931d87a761c8a9ef5c3889b9e01894
|
|
| BLAKE2b-256 |
a18a479b3a94e73afccf1820e720e33c62bd112323a204b0d68521c38233abf1
|