config-management/skills/quick-add-permission/SKILL.md
Quickly add always-allow permissions to all AI tool permission lists
npx skillsauth add jacobpevans/claude-code-plugins quick-add-permissionInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Quickly add one or more always-allow permissions to all AI tool permission lists (Claude, Gemini, etc.) with a fresh worktree off the latest main.
The command accepts optional permission(s) as arguments in flexible formats:
/quick-add-permission
/quick-add-permission "docker ps"
/quick-add-permission "docker ps" "docker logs" "kubectl get"
/quick-add-permission "Bash(docker ps *)"
If no arguments provided, the command will prompt interactively.
The command intelligently converts simple inputs to proper permission format:
"docker ps" -> "Bash(docker ps *)""git status" -> "Bash(git status *)""kubectl get pods" -> "Bash(kubectl get pods *)""Bash(docker ps *)" -> Used as-is (already formatted)Sync main and create worktree with branch name: chore/add-permissions-$(date +%Y%m%d-%H%M%S).
Bash(command *) formatFiles: agentsmd/permissions/{allow,ask,deny}.json, .gemini/permissions/{allow,deny}.json
For each permission:
jq emptyReport: worktree, branch, permissions added, files modified, next steps.
documentation
Use when editing GitHub Actions workflow files (.github/workflows/*.yml) in JacobPEvans repos. Documents when to target self-hosted RunsOn runners vs GitHub-hosted runners, the v3 label catalog used across the org, the required github.run_id segment, and the GitHub App allowlist prereq.
testing
Check PR merge readiness, sync local repo, cleanup stale worktrees; optional cross-repo sweep and stale-branch prune modes
tools
Local rebase-merge workflow for pull requests with signed commits
tools
Canonical reference for all gh CLI command shapes used by skills in this plugin. Defines the placeholder convention, allowed --json fields, GraphQL fallback rules, -f/-F/--raw-field flag semantics, the PR-readiness gate, code-scanning alert query, review-thread fetch/count/resolve mutations, and heredoc bodies. Prevents Unknown JSON field errors and divergent query shapes.