Appfolio deploy integration
Deploy AppFolio integration service to cloud infrastructure. Trigger: "deploy appfolio".From its SKILL.md
npx -y skills add ComeOnOliver/skillshub --skill appfolio-deploy-integrationAssembled 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.1 KB, 218 tokens by cl100k_base, as published. Nobody here has run it
appfolio deploy integration | sed 's/\b(.)/\u\1/g'
Cloud Run Deployment
gcloud run deploy appfolio-integration \
--source . \
--region us-central1 \
--set-secrets=APPFOLIO_CLIENT_ID=appfolio-client-id:latest,APPFOLIO_CLIENT_SECRET=appfolio-client-secret:latest \
--set-env-vars=APPFOLIO_BASE_URL=https://your-company.appfolio.com/api/v1 \
--no-allow-unauthenticated
Health Check
app.get("/health", async (req, res) => {
try {
await client.http.get("/properties");
res.json({ status: "healthy" });
} catch { res.status(503).json({ status: "unhealthy" }); }
});
Resources
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.