Agent skill

appfolio-deploy-integration

Deploy AppFolio integration service to cloud infrastructure. Trigger: "deploy appfolio".

Stars 1,803
Forks 241

Install this agent skill to your Project

npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/main/plugins/saas-packs/appfolio-pack/skills/appfolio-deploy-integration

SKILL.md

appfolio deploy integration | sed 's/\b(.)/\u\1/g'

Cloud Run Deployment

bash
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

typescript
app.get("/health", async (req, res) => {
  try {
    await client.http.get("/properties");
    res.json({ status: "healthy" });
  } catch { res.status(503).json({ status: "unhealthy" }); }
});

Resources

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results