Agent Skills: appfolio debug bundle | sed 's/\b\(.\)/\u\1/g'

|

UncategorizedID: jeremylongshore/claude-code-plugins-plus-skills/appfolio-debug-bundle

Install this agent skill to your local

pnpm dlx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/HEAD/plugins/saas-packs/appfolio-pack/skills/appfolio-debug-bundle

Skill Files

Browse the full folder contents for appfolio-debug-bundle.

Download Skill

Loading file tree…

plugins/saas-packs/appfolio-pack/skills/appfolio-debug-bundle/SKILL.md

Skill Metadata

Name
appfolio-debug-bundle
Description
|

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 ==="

Resources