Reflexio Docs
CLI Reference

user-profiles

Manage user profiles extracted from interactions.

reflexio user-profiles

Manage user profiles. Profiles are normally derived automatically from published interactions (reflexio publishreflexio user-profiles regenerate), but you can also seed them manually with add.


Command: reflexio user-profiles list

List profiles. With --user-id, queries a single user; without it, lists profiles across every user in the org.

reflexio user-profiles list [OPTIONS]

Prop

Type

reflexio user-profiles list --user-id user_123 --status current

Semantic search over profiles for a specific user. A --user-id is required — cross-user profile search is not currently supported.

reflexio user-profiles search "<query>" --user-id <uid> [OPTIONS]

Prop

Type

reflexio user-profiles search "dietary preferences" --user-id user_123 --limit 5

Command: reflexio user-profiles add

Manually add a profile, bypassing interaction-based inference. Useful for seeding known facts during testing or migration.

reflexio user-profiles add --user-id <uid> --content "<text>"

Prop

Type

reflexio user-profiles add \
  --user-id user_123 \
  --content "Prefers non-stop flights in the morning"

Command: reflexio user-profiles regenerate

Re-run the profile inference pipeline over a user's existing interactions. Useful after a prompt or extractor change.

reflexio user-profiles regenerate --user-id <uid> [--wait]

Prop

Type

reflexio user-profiles regenerate --user-id user_123 --wait

Command: reflexio user-profiles delete

Delete a specific profile, or all profiles for a single user when --profile-id is omitted.

reflexio user-profiles delete --user-id <uid> [--profile-id <pid>]

Prop

Type


Command: reflexio user-profiles delete-all

Delete every profile across all users. Prompts for confirmation unless --yes is set.

reflexio user-profiles delete-all [--yes]

Prop

Type

Irreversible. Consider running reflexio user-profiles delete --user-id <uid> for a single user first.