Appfolio debug bundle
Skill ComeOnOliver/skillshub/skills/jeremylongshore/claude-code-plugins-plus-skills/appfolio-debug-bundle
🧠The right skill, one API call. AI agent skills registry with token-efficient skill resolution. 5,000+ skills from 500+ top repos.
npx -y skills add ComeOnOliver/skillshub --skill appfolio-debug-bundleAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Collect AppFolio API debug evidence for support tickets. Trigger: "appfolio debug".
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.1 KB, 239 tokens by cl100k_base, as published. Nobody here has run it
appfolio debug bundle | sed 's/\b(.)/\u\1/g'
Diagnostic Script
#!/bin/bash
echo "=== AppFolio Debug Bundle $(date -Iseconds) ==="
echo "Base URL: ${APPFOLIO_BASE_URL:-NOT SET}"
echo "Client ID: ${APPFOLIO_CLIENT_ID:+SET (redacted)}"
echo -n "API Health: "
HTTP_CODE=$(curl -s -o /dev/null -w "%{http_code}" -u "${APPFOLIO_CLIENT_ID}:${APPFOLIO_CLIENT_SECRET}" "${APPFOLIO_BASE_URL}/properties")
echo "$HTTP_CODE"
echo -n "Response Time: "
curl -s -o /dev/null -w "%{time_total}s" -u "${APPFOLIO_CLIENT_ID}:${APPFOLIO_CLIENT_SECRET}" "${APPFOLIO_BASE_URL}/properties"
echo ""
echo "=== Done ==="