A curated collection of skills and workflow extensions for AI coding agents and autonomous CLI tools.
Add this skills repository to your agent environment:
npx skills add devsanthoshmk/skillsTo update installed skills:
npx skills update devsanthoshmk/skillsEnables headless terminal subagent delegation with custom multi-model routing and reasoning tiers.
To isolate token storage and operate multiple profiles concurrently:
mkdir -p ~/.agy-alt-profile
cat << 'EOF' >> ~/.bashrc
# Multi-Account Aliases
alias agy='HOME="$HOME/.agy-alt-profile" SSH_TTY="/dev/pts/99" command agy'
alias agy-og='command agy'
EOF
source ~/.bashrcmkdir -p ~/.agy-alt-profile
cat << 'EOF' >> ~/.zshrc
# Multi-Account Aliases
alias agy='HOME="$HOME/.agy-alt-profile" SSH_TTY="/dev/ttys000" command agy'
alias agy-og='command agy'
EOF
source ~/.zshrcNew-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.agy-alt-profile" | Out-Null
if (-not (Test-Path $PROFILE)) {
New-Item -ItemType File -Force -Path $PROFILE | Out-Null
}
@'
function agy {
$origUser = $env:USERPROFILE
$origHome = $env:HOME
$env:USERPROFILE = "$origUser\.agy-alt-profile"
$env:HOME = $env:USERPROFILE
$env:SSH_TTY = "pty0"
try {
& (Get-Command agy.exe -CommandType Application) @args
}
finally {
$env:USERPROFILE = $origUser
$env:HOME = $origHome
Remove-Item env:SSH_TTY -ErrorAction SilentlyContinue
}
}
function agy-og {
& (Get-Command agy.exe -CommandType Application) @args
}
'@ | Add-Content -Path $PROFILE
. $PROFILEMIT