I have edited your complaint to remove the irrelevant parts of your description, to remove the Code of Conduct violation, and to convert it into an answerable question.
If you think I’m using an AI agent, the answer is no. I use the ssh-agent command, then ssh-add to add my SSH key and passphrase, but now after upgrading to Ubuntu 26.04 it’s not working.
In a graphical session you shouldn’t be starting ssh-agent yourself, gnome-keyring-daemon is started at session startup and handles ssh-agent duties. It seems to be a little buggy if the keys are added by having “AddKeysToAgent” on in .ssh/config, so I always run ssh-add just after logging in, that seems to work.
The problem with starting ssh-agent yourself is it’s tied to the terminal session you started it in, so when you exit that the ssh-agent also goes away, taking the saved keys with it.
Starting ssh-agent yourself in a shell startup script like .profile or .bashrc used to work in the past, where graphical sessions were started by running a shell script and all the graphical applications were child processes of that. Now that graphical sessions are started via the systemd user process, the graphical applications are children of systemd instead.