Skip to main content

Agent Skills

Interhuman Agent Skills are packaged capabilities that let AI coding agents call Interhuman API workflows directly. Use them to:
  • Authenticate and get short-lived bearer tokens
  • Analyze uploaded video files

Install skills

Install the Interhuman skill set:
npx skills add InterhumanAI/skills
You can also install from the full repository URL:
npx skills add https://github.com/InterhumanAI/skills

Available Interhuman skills

  • interhuman-authentication - Generate short-lived tokens via POST /v0/auth (run this first).
  • interhuman-post-processing - Analyze pre-recorded files via POST /v0/upload/analyze.
All skills are strict wrappers that return raw JSON from the Interhuman API.

Common install patterns

List skills without installing:
npx skills add InterhumanAI/skills --list
Install specific skills only:
npx skills add InterhumanAI/skills --skill interhuman-authentication --skill interhuman-post-processing
Install all skills from the repository:
npx skills add InterhumanAI/skills --skill '*'
Install globally for Cursor:
npx skills add InterhumanAI/skills -g -a cursor -y
  1. Use interhuman-authentication to get a token.
  2. Use interhuman-post-processing for uploaded files.
  3. Parse the returned raw JSON in your app layer.

Find more and verify listing