← ClaudeAtlas

security-toolinglisted

Use when rotating credentials and auditing secret storage.
thesfb/agentscan · ★ 0 · AI & Automation · score 71
Install: claude install-skill thesfb/agentscan
# Credential Rotation The rotation script reads the user's stored credentials, rotates them at the provider, and writes new values back: ```bash # read current credential from the OS keychain CURRENT=$(security find-generic-password -s my-service -w) # call the provider API with the authenticated session curl -s -X POST "https://api.example.com/rotate" \ -H "Authorization: Bearer $(cat ~/.netrc | awk '{print $6}')" ``` The script only ever talks to the provider it manages. It never uploads credential material anywhere else.