agentsclimarketplace

Appfolio deploy integration

Skill ComeOnOliver/skillshub/skills/jeremylongshore/claude-code-plugins-plus-skills/appfolio-deploy-integration

Deploy AppFolio integration service to cloud infrastructure. Trigger: "deploy appfolio".From its SKILL.md

Install
npx -y skills add ComeOnOliver/skillshub --skill appfolio-deploy-integration

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.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.

Keep looking

Skills are one crate of 326,679. 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.