Appfolio reference architecture
Reference architecture for AppFolio property management integration. Trigger: "appfolio architecture".From its SKILL.md
npx -y skills add ComeOnOliver/skillshub --skill appfolio-reference-architectureAssembled 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
3.0 KB, 542 tokens by cl100k_base, as published. Nobody here has run it
appfolio reference architecture | sed 's/\b(.)/\u\1/g'
Architecture
┌──────────────────────────────────────────────┐
│ Your Application │
│ │
│ ┌──────────┐ ┌──────────┐ ┌─────────────┐ │
│ │Dashboard │ │ Sync │ │ Webhook │ │
│ │(React) │ │ Service │ │ Handler │ │
│ └────┬─────┘ └────┬─────┘ └──────┬──────┘ │
│ │ │ │ │
│ ┌────▼──────────────▼───────────────▼──────┐ │
│ │ AppFolio API Client │ │
│ │ (Basic Auth, Retry, Cache, Rate Limit) │ │
│ └────────────────────┬─────────────────────┘ │
└───────────────────────┼───────────────────────┘
│
┌─────────▼──────────┐
│ AppFolio Stack API │
│ /properties │
│ /tenants │
│ /leases │
│ /units │
│ /bills │
└────────────────────┘
Project Structure
appfolio-integration/
├── src/
│ ├── appfolio/
│ │ ├── client.ts # Typed REST client with Basic Auth
│ │ ├── cache.ts # Response cache with TTL
│ │ └── types.ts # Property, Tenant, Lease, Unit types
│ ├── dashboard/
│ │ ├── portfolio.ts # Portfolio summary
│ │ └── vacancy.ts # Vacancy tracking
│ ├── sync/
│ │ └── incremental.ts # Incremental data sync
│ ├── webhooks/
│ │ └── handler.ts # Webhook endpoint
│ └── server.ts
├── tests/
│ ├── mocks/ # Mock API responses
│ └── unit/
└── package.json
Resources
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.