| test, run tests | pytest | cd scripts && uv run pytest -v | | list posts, show drafts, filter posts | posts\browse.py | --status draft --tag news | | get post, read post, show post | posts\crud.py get | --id xxx or --slug xxx | | create post, new post, write post | posts\crud.py create | --title "..." --html "..." |
| update post, edit post, change post | posts\crud.py update | --id xxx --title "..." | | delete post, remove post | posts\crud.py delete | --id xxx --confirm | | publish post, publish draft | posts\crud.py publish | --id xxx | | unpublish post | posts\crud.py unpublish | --id xxx |
| bulk publish, publish all drafts | posts\bulk.py publish | --filter "..." --execute | | bulk unpublish | posts\bulk.py unpublish | --filter "..." --execute | | add tag to posts, tag posts | posts\bulk.py add-tag | --filter "..." --tag xxx --execute | | remove tag from posts | posts\bulk.py remove-tag | --filter "..." --tag xxx --execute |