> appfolio-performance-tuning

Optimize AppFolio API performance with caching and batch operations. Trigger: "appfolio performance".

fetch
$curl "https://skillshub.wtf/jeremylongshore/claude-code-plugins-plus-skills/appfolio-performance-tuning?format=md"
SKILL.mdappfolio-performance-tuning

appfolio performance tuning | sed 's/\b(.)/\u\1/g'

Performance Strategies

StrategySavingsImplementation
Response caching60-80% fewer API callsCache properties/units (5 min TTL)
Parallel requests3-5x faster dashboard loadPromise.all for independent endpoints
Incremental sync70% less data transferTrack last_modified timestamps

Parallel Dashboard Fetch

async function loadDashboard() {
  const [properties, tenants, leases, units] = await Promise.all([
    client.http.get("/properties"),
    client.http.get("/tenants"),
    client.http.get("/leases"),
    client.http.get("/units"),
  ]);
  return { properties: properties.data, tenants: tenants.data, leases: leases.data, units: units.data };
}

Resources

┌ stats

installs/wk0
░░░░░░░░░░
github stars1.7K
██████████
first seenMar 23, 2026
└────────────

┌ repo

jeremylongshore/claude-code-plugins-plus-skills
by jeremylongshore
└────────────