Core Features

User Simulation

Manipulate user profiles and feature flags on the fly. Test how your UI reacts to different user data without modifying the database.

  • Profile Mocking:

    Edit names, emails, and avatars to test edge cases in profile UIs.

  • Feature Flags:

    Toggle experimental features or gated modules instantly.

  • Metadata Surgery:

    Inspect and modify complex user metadata objects.

Custom Feature Flags

Add your project's specific feature flags to .devconsole.json to make them toggleable in the User Tab.

json
{
  "featureFlags": [
    { "id": "ff_ai_recall", "label": "AI Memory Access" },
    { "id": "ff_beta_layout", "label": "New Dashboard UI" }
  ]
}