🎯

basilica

🎯Skill

from one-covenant/sacred-arts

VibeIndex|
What it does

Enables Claude to interact with the Basilica GPU platform by executing CLI commands, generating SDK code, and managing GPU resources through natural language or direct invocation.

basilica

Installation

Install skill:
npx skills add https://github.com/one-covenant/sacred-arts --skill basilica
1
AddedJan 27, 2026

Skill Details

SKILL.md

Overview

# sacred-arts

the sacred arts of autonomous agent runtimes.

Basilica skill

A single skill that teaches Claude Code how to operate the Basilica GPU platform via CLI commands and generate Python SDK snippets.

CLI install + login

```bash

# Install CLI

curl -sSL https://basilica.ai/install.sh | bash

# Login

basilica login

```

SDK install + login

```bash

# Install SDK

uv pip install basilica-sdk

```

```bash

# Create an API token

basilica tokens create

# Set env var

export BASILICA_API_TOKEN="basilica_..."

```

```python

from basilica import BasilicaClient

client = BasilicaClient(api_key="basilica_...")

```

Installation

```bash

# Install the skill

npx -y skills add one-covenant/sacred-arts

```

This installs into .claude/skills/ by default.

Usage

Natural language:

```

"list available H100s"

"deploy vllm for Llama 3"

"show my basilica balance"

```

Direct invocation:

```

/basilica

```

Structure

```

sacred-arts/

SKILL.md

```