Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From github-it-admin
Polls gh secret ages every 6 hours; emits STALE: <name> notifications when any secret exceeds the configured max age
npx claudepluginhub subagentceo/knowledge-engineering --plugin github-it-adminTrust and execution context for this monitor
Runs unsandboxed at plugin trust level
This command is executed by Claude Code with the same permissions as the plugin itself. Inspect the command below before installing this plugin.
Substitutions like ${CLAUDE_PLUGIN_ROOT}, ${CLAUDE_PLUGIN_DATA}, ${user_config.*}, and ${ENV_VAR} are NOT resolved by ClaudePluginHub — they appear here verbatim and are expanded only at runtime.
Shell command executed when the monitor triggers
while true; do gh secret list --org ${user_config.gh_org} --json name,updatedAt | jq -r --arg max ${user_config.secret_max_age_days} '.[] | (now - (.updatedAt | fromdateiso8601)) / 86400 | floor as $age | select($age > ($max|tonumber)) | "STALE: \(.name) is \($age) days old"'; sleep 21600; doneTrigger condition and source location
Share bugs, ideas, or general feedback.