Skip to main content
Wrixton lets you open up a whole list — your groceries, your chores, your todos, or your shopping — to another user on the same deployment. The recipient sees your items merged into their own view, each tagged with a “shared by [your username]” label, and can check things off or make edits depending on the access level you grant.

What can be shared

Four lists are shareable: todos, chores, shopping, and groceries. Tasks live inside projects and are project-scoped, so they cannot be shared independently. Gifts stay private — the recipient and occasion details are not exposed to other users.

Sharing from the CLI

Grant another user access to one of your lists with track share:
# Share your groceries with alice (can view and edit by default)
track share groceries alice

# Share your todos with bob as read-only
track share todos bob --view

# Stop sharing your groceries with alice
track unshare groceries alice

# See everything you've shared and what others have shared with you
track shares
The track shares command prints two sections — shared by you and shared with you — so you always know the full picture at a glance.

How recipients see shared items

When alice runs track ls or track today after you have shared your groceries with her, she sees your grocery items merged into her own list. Each of your items carries a “shared by [your username]” suffix in the CLI and a shared by … badge in the web UI. By default, alice can check items off, edit them, and delete them. If you shared with --view, she can only read them.
Items always belong to their creator. Sharing is one-directional: track share groceries alice lets alice into your grocery list, but additions alice makes stay hers. You just both see each other’s items in the same view.

Setting up a joint list

For a fully joint list — for example, a household grocery run where both people add items and either person can cross things off — share in both directions:
# You share your groceries with alice
track share groceries alice

# Alice shares her groceries with you
track share groceries you
After both commands run, each of you sees the combined list. Either person’s additions are visible to the other, and either person can mark items done.

Managing shares in the web UI

Open Settings → sharing in the web UI at projects.wrixton.xyz. From there:
  1. Pick the list you want to share from the dropdown.
  2. Enter the username of the person you want to share with.
  3. Choose view-only or can-edit.
  4. Click Share.
To remove access, find the active share in the same panel and click Remove. Shared-in items appear with a shared by … badge in every list and the Today view, so you always know which items belong to a collaborator.