yubikey-agent is a seamless ssh-agent for YubiKeys.
Hey, When installing yubikey-agent from AUR and applying the steps mentioned in the README, in the current version of Arch you get the error above if you try to use `ssh-add -L`. I found out that this is because of polkit, so I had to add the following rules to make it work as `/etc/polkit-1/rules.d/99-pcscd.rules`: ```js polkit.addRule(function(action, subject) { if (action.id == "org.debian.pcsc-lite.access_card" && subject.isInGroup("wheel")) { return polkit.Result.YES; } }); polkit.addRule(function(action, subject) { if (action.id == "org.debian.pcsc-lite.access_pcsc" && subject.isInGroup("wheel")) { return polkit.Result.YES; } }); ``` (See [Arch Wiki](https://wiki.archlinux.org/title/GnuPG#Using_a_smart_card_on_a_remote_client_via_SSH)) After doing this and restarting the polkit service, it now works as intended.
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be still under discussion. The issue was opened by zenermerps and has received 0 comments.