From agentkit
Validates OAuth token flows, audits token storage security, verifies per-connector authorization, and checks monitoring configuration for Scalekit AgentKit implementations before production launch. Use when going live, doing a pre-launch review, or verifying AgentKit authorization and tool-calling setup is production-ready.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentkit:production-readiness-agentkitThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Work through each section in order — earlier sections are blockers for later ones.
Work through each section in order — earlier sections are blockers for later ones.
# Confirm production credentials are set (not dev/staging)
echo $SCALEKIT_ENVIRONMENT_URL # should be https://<subdomain>.scalekit.com (not .scalekit.dev)
echo $SCALEKIT_CLIENT_ID # should be set
echo $SCALEKIT_CLIENT_SECRET # should be set
# Verify token endpoint works
curl -s -o /dev/null -w "%{http_code}" -X POST "$SCALEKIT_ENVIRONMENT_URL/oauth/token" \
-d "client_id=$SCALEKIT_CLIENT_ID&client_secret=$SCALEKIT_CLIENT_SECRET&grant_type=client_credentials"
# Expected: 200
grep -r "skc_" src/ returns nothingstate parameter in callbacks (CSRF protection)Per connected service:
Key metrics: Token refresh success/failure rate, OAuth completion rate (initiated vs completed), per-service API error rates, token expiry distribution.
Run the full cycle in staging with production credentials:
ACTIVEnpx claudepluginhub scalekit-inc/authstack --plugin agentkitCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.