# 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
```
