A Claude Skill package providing expert guidance for building applications with ArcadeDB, a multi-model database engine supporting Graph, Document, Key/Value, Search, Time Series, and Vector models.
This skill gives Claude deep knowledge of ArcadeDB including:
- Core concepts (Records, Types, Buckets, Relationships, Transactions, Indexes)
- SQL and OpenCypher query languages
- HTTP, Java, Python, Node.js, JDBC, PostgreSQL, and BOLT APIs
- Graph algorithms (path finding, centrality, community detection)
- Administration (Docker, Kubernetes, HA, security, backups)
The official ArcadeDB Manual can be found at https://docs.arcadedb.com/ArcadeDB-Manual.pdf
Copy the skill directory into your project or personal skills folder:
# Project-level (this project only)
cp -r arcadedb .claude/skills/arcadedb
# Personal (all your projects)
cp -r arcadedb ~/.claude/skills/arcadedbClaude discovers skills automatically. Once installed, the skill activates when ArcadeDB-related questions are detected, or you can invoke it directly with /arcadedb.
- Go to Settings > Features
- Upload the
arcadedb.skillfile (it's a ZIP archive)
Requires a Pro, Max, Team, or Enterprise plan with code execution enabled.
Upload via the Skills API (/v1/skills endpoints), then reference the skill_id in your container parameter.
For more details, see the Agent Skills documentation.
cd arcadedb && zip -r ../arcadedb.skill . && cd ..