Developers
Agent skills
The index365 agent skills are the convenience layer that wraps the index365 CLI, so your coding agent can run audits and apply fixes from a single instruction instead of remembering individual commands. They build on the CLI, so install and authenticate the index365 CLI first, then add the skills.
Install
One command adds the skills across Claude Code, Codex, Cursor, and Windsurf:
npx skills add index365usa/agent-skillsIn Claude Code the bundle also installs as a plugin named index365 through the plugin marketplace, so you can manage it the same way as your other plugins.
The skills call the CLI under the hood, so the CLI has to be installed and authenticated before they can do anything. Set up the CLI and complete authentication first, then run the install command above.
The skills
The bundle ships nine skills:
index365: the entry skill. Explains the skill set and points your agent at the right one for the task.index365-setup: connects the CLI to your account by saving a scoped API key.index365-add-project: registers a website as a project (idempotent by domain).index365-delete-project: removes a project, with a domain confirmation step.index365-run-audit: starts an audit for a project and waits for it to finish.index365-read-report: pulls a completed report as compact agent context.index365-triage-findings: ranks the findings so your agent fixes the highest-impact issues first.index365-audit-and-fix(flagship): the full loop. Runs an audit, applies the fixes in your repository, then re-runs the audit to confirm the score moved.index365-apply-fix: applies a single finding's fix when you want control over one change at a time.
index365-audit-and-fix is the flagship loop and the one most teams reach for: one instruction takes you from audit to applied fixes to a confirmed score change.
Staying current
The skills are a public, versioned product, published from the index365usa/agent-skills repository and updated over time as the audits and CLI evolve. To pull the latest versions, re-run the install command:
npx skills add index365usa/agent-skills