DoublewordDoubleword

API Skill

Teach Claude Code how to use the Doubleword Batch API with a downloadable skill.

What is a Claude Code Skill?

Claude Code skills are markdown files that provide Claude with domain-specific knowledge and instructions. When installed, Claude can reference these skills to help you work with specific tools and APIs.

The Batch API skill teaches Claude how to:

  • Submit batch jobs via the Doubleword API
  • Monitor batch status and handle completion
  • Process results efficiently
  • Handle errors and implement retries
  • Use the autobatcher Python client

Installation

Install the skill to your Claude Code skills directory:

npx skills add https://github.com/doublewordai/doubleword-skill
git clone https://github.com/doublewordai/doubleword-skill ~/.claude/skills/doubleword-skill

The skill is now available. Claude Code will automatically use it when you ask about batch processing with Doubleword.

What's Included

The skill repository contains:

FileDescription
SKILL.mdMain skill file with API documentation and usage instructions
examples.pyPython examples for submitting and monitoring batch jobs

Using the Skill

Once installed, you can ask Claude Code questions like:

  • "How do I submit a batch job to Doubleword?"
  • "Show me how to monitor batch status"
  • "Help me process batch results"
  • "What's the best batch size for my workload?"

Claude will reference the skill to provide accurate, up-to-date information about the Batch API.

Updating the Skill

npx skills update doubleword-skill
cd ~/.claude/skills/doubleword-skill && git pull

Source

View the skill source and contribute: github.com/doublewordai/doubleword-skill