agentsclimarketplace

Appfolio performance tuning

Skill ComeOnOliver/skillshub/skills/jeremylongshore/claude-code-plugins-plus-skills/appfolio-performance-tuning

Optimize AppFolio API performance with caching and batch operations. Trigger: "appfolio performance".From its SKILL.md

Install
npx -y skills add ComeOnOliver/skillshub --skill appfolio-performance-tuning

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its file declares

Copied from the file, not written here

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.3 KB, 223 tokens by cl100k_base, as published. Nobody here has run it

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

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.