Claude Skills (Beta)
AIchor provides Claude Code skills that let you manage experiments and storage directly from your IDE using natural language, without having to remember CLI commands.
What are Claude Skills?
Claude Code skills are context-aware instructions that tell Claude how to use the AIchor CLI on your behalf. When you invoke a skill, Claude handles authentication checks, command construction, safety confirmations, and error recovery automatically.
For more details on how Claude Code skills work, see the Claude Code Skills documentation.
Available Skills
| Skill | Trigger phrase | What it does |
|---|---|---|
| aichor-experiment | "submit an experiment", "run on GPUs", "check experiment logs" | Submit, monitor, and manage experiments |
| aichor-storage | "upload to storage", "list my buckets", "download from AIchor" | Manage files in project storage buckets |
Installation
Skills are installed by placing them in your Claude Code skills directory Once installed, invoke them in Claude Code by describing what you want to do — Claude will recognise the intent and apply the appropriate skill automatically.
Skills can include multiple files in their directory. This keeps SKILL.md focused on the essentials while letting Claude access detailed reference material only when needed
~/.claude/skills/
├── aichor-experiment/
│ ├── SKILL.md
│ └── reference.md (detailed API docs - loaded when needed)
├── aichor-storage/
│ ├── SKILL.md
│ └── reference.md (detailed API docs - loaded when needed)
└── (other skills)