agentsclimarketplace

Appfolio security basics

Skill ComeOnOliver/skillshub/skills/jeremylongshore/claude-code-plugins-plus-skills/appfolio-security-basics

Secure AppFolio API credentials and tenant data. Trigger: "appfolio security".From its SKILL.md

Install
npx -y skills add ComeOnOliver/skillshub --skill appfolio-security-basics

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

appfolio security basics | sed 's/\b(.)/\u\1/g'

Security Checklist

  • API credentials in secret manager (not .env in production)
  • HTTPS enforced for all API calls
  • Tenant PII logged only when necessary
  • API credentials rotated periodically
  • Access scoped to minimum required endpoints

Secure Client Configuration

import https from "https";
import axios from "axios";

const secureClient = axios.create({
  baseURL: process.env.APPFOLIO_BASE_URL,
  auth: { username: process.env.APPFOLIO_CLIENT_ID!, password: process.env.APPFOLIO_CLIENT_SECRET! },
  httpsAgent: new https.Agent({ minVersion: "TLSv1.2", rejectUnauthorized: true }),
});

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.