Skip to content

v0.9.3

Choose a tag to compare

@github-actions github-actions released this 20 Aug 10:06
· 16 commits to main since this release
4416e2e

Quick start

docker run -p 3000:3000 \
  -e NUXT_SESSION_PASSWORD=$(openssl rand -base64 32) \
  -e ADMIN_USER_EMAIL=admin@yourdomain.com \
  -e ADMIN_USER_PASSWORD=change-this-password \
  -v completo-data:/data \
  ghcr.io/scalecommerce-dev/completo:latest

Open localhost:3000 and log in with the admin email/password you set above. Demo data included.

CLI for AI agents

macOS / Linux:

curl -fsSL https://raw.githubusercontent.com/scalecommerce-dev/completo/main/install.sh | sh

Windows: Download completo-windows-amd64.exe from the assets below.


CLI

  • Tags and comments are now manageable from the CLI, not just visible on a card. completo tag <card> add|remove|set <names...> changes a card's tags — add and set create a tag the project doesn't have yet, which needs the project owner role — and completo tags lists a project's existing tag names, because tag names are matched case-sensitively and Bug on a project that spells it BUG would otherwise quietly become a second tag. The CLI now says so when it is about to make one. completo comment <card> add|edit|delete manages comments, with --file for a multi-line markdown body; completo comment <card> lists them with the short IDs that edit and delete take. Both commands print the card's resulting list after every change and support --json.