{ "tools": [ { "id": "reset_password", "category": "users", "label": "Reset User Password", "description": "Reset an existing Linkding user's password. Leave the password field blank to generate a random one — it is shown in the task log.", "icon": "🔑", "fields": [ { "name": "username", "label": "Username", "type": "text", "placeholder": "alice", "required": true }, { "name": "password", "label": "New password (leave blank to generate)", "type": "password", "placeholder": "Leave blank for random" } ] }, { "id": "create_account", "category": "users", "label": "Create User Account", "description": "Create a new Linkding user. Tick \"Make admin\" to grant full admin (Django superuser) rights. Leave the password blank to generate a random one.", "icon": "👤", "fields": [ { "name": "username", "label": "Username", "type": "text", "placeholder": "alice", "required": true }, { "name": "email", "label": "Email (optional)", "type": "text", "placeholder": "alice@example.com" }, { "name": "password", "label": "Password (leave blank to generate)", "type": "password", "placeholder": "Leave blank for random" }, { "name": "admin", "label": "Make admin", "type": "checkbox", "default": false } ] }, { "id": "list_users", "category": "users", "label": "List Users", "description": "Show every Linkding user with their admin status.", "icon": "📋", "fields": [] }, { "id": "delete_user", "category": "users", "label": "Delete User Account", "description": "Permanently delete a Linkding user account and all of their bookmarks.", "icon": "🗑", "destructive": true, "confirm": "This cannot be undone — the user and all of their bookmarks will be removed.", "fields": [ { "name": "username", "label": "Username", "type": "text", "required": true } ] }, { "id": "set_admin", "category": "users", "label": "Set Admin Status", "description": "Promote a user to admin (Django is_superuser + is_staff) or demote them to a normal user.", "icon": "👑", "fields": [ { "name": "username", "label": "Username", "type": "text", "required": true }, { "name": "admin", "label": "Make admin", "type": "checkbox", "default": false } ] } ] }