A collection of agent skills for Hyperbots Document Intelligence APIs, built for the Agent Skills standard.
Comprehensive skill for financial document intelligence:
- Parse: High-fidelity OCR text extraction.
- Classify: Automated document categorization (invoices, receipts, etc.).
- Split: Logical multi-document segmentation.
- Extract: Vision-language structured data extraction.
- Process: Unified Parse + Extract workflow.
Install the hyperbots-api skill using the Skills CLI:
npx skills add guglxni/hyperbots-agent-skills --skill hyperbots-apiAlternatively, if you're using Gemini CLI, you can install the packaged version:
gemini skills install https://github.com/guglxni/hyperbots-agent-skills/raw/master/skills/hyperbots-api/hyperbots-api.skill --scope user(Note: Package version must be present in the skill directory. We recommend the npx skills add command for direct source installation).
Once installed, your agent (Claude Code, Gemini CLI, etc.) will automatically trigger this skill when you ask about processing financial documents.
The skill includes a standalone CLI script for direct interaction:
export HYPERAPI_KEY=your_key_here
python3 skills/hyperbots-api/scripts/hyperbots_cli.py extract invoice.pdfThis repository follows the standardized approach for agent skills. Each skill is self-contained in its own folder under skills/ with a SKILL.md file.
skills/hyperbots-api/: The main document intelligence skill.metadata.json: Standardized metadata for the skill.
MIT