Index365 add project
Use when the user wants to start auditing a domain that is not yet an index365 project. Triggers: "add a site to index365", "start auditing example.com", "track this domain", "create an index365 project for…", or any run/audit request where the domain has no project yet (a `projects list` doesn't show it). Creating a project is the prerequisite for running an audit.From its SKILL.md
npx -y skills add index365usa/agent-skills --skill index365-add-projectAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- reads credentialsReads from 1 credential source: `INDEX365_API_KEY`.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 2 commands, including `index365 projects create --domain example.com --name "Example" --json` and 1 more.
SKILL.md
1.8 KB, 321 tokens by cl100k_base, as published. Nobody here has run it
index365 add project
Create a project so you can run audits against a domain.
Prerequisite
An authenticated credential with projects:write (index365 doctor shows scopes).
Current dashboard API keys include it by default. If it is missing, use
index365-setup to reauthenticate through a supported path. If index365-setup is
not installed, run index365 login (browser is the default choice; use --web or INDEX365_API_KEY without a terminal). After either recovery
path, re-run index365 doctor before continuing. Do not work around missing
authentication or scopes.
Create
index365 projects create --domain example.com --name "Example" --json
--domainis required;--nameis optional (defaults from the domain).- Idempotent by domain. If a project for that domain already exists, the same project
is returned (the human output shows
[already existed], the JSON has"idempotent": true). Safe to re-run, it never creates a duplicate. - Projects are unlimited on every current plan, including Free. Paid scans remain separately credit-gated.
Capture the returned projectId, every audit command needs it.
Check first (optional)
index365 projects list --json # is the domain already a project?
Next
Hand off to index365-run-audit with the projectId to run the first audit.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.