Skip to main content

Vigil Client: Platform integration for artifact management and collaboration

Project description

Vigil Client

Vigil Client extends Vigil Core with platform integration, enabling collaborative artifact management and provenance tracking across teams.

Overview

Vigil Client bridges the cryptographic foundation of Vigil Core with platform features:

  • Authentication - Secure login to Vigil platform
  • Artifact Registry - Create, search, and manage typed artifacts
  • Provenance Links - Track relationships between artifacts
  • Sync Operations - Push/pull artifacts and receipts
  • Plugin System - Extensible integrations (Benchling, HuggingFace, etc.)

Installation

# Install vigil-client (includes vigil-core)
pip install vigil-client

# Or install vigil-core separately
pip install vigil-core

Quick Start

1. Authenticate

# Interactive login
vigil client login

# Check authentication status
vigil client whoami

2. Push Artifacts

# Push local receipts and artifacts to the platform
vigil client push

# Push specific receipt
vigil client push app/code/receipts/receipt_20250101T120000Z.json

3. Search and Download

# Search for artifacts
vigil client artifacts-search "genomics"

# Download an artifact
vigil client pull artifact-id

4. Link Artifacts

# Create provenance relationships
vigil client link dataset-123 run-456 --relation INPUT_OF
vigil client link run-456 model-789 --relation OUTPUT_OF

Commands

Authentication

vigil client login                    # Interactive authentication
vigil client logout                   # Clear credentials
vigil client whoami                   # Show current user info

Artifact Management

vigil client artifacts                    # List artifacts
vigil client artifacts-get <id>          # Get artifact details
vigil client artifacts-search <query>   # Search artifacts
vigil client pull <artifact-id>         # Download artifact
vigil client push                       # Upload receipts/artifacts

Provenance

vigil client link <from> <to> --relation <type>  # Create relationship

Configuration

vigil client config                        # Show current config
vigil client config-set-project <id>      # Set default project
vigil client config-set-remote <url>      # Set remote URL

Python API

from vigil_client import VigilClient
from vigil_client.auth import auth_manager
from vigil_client.models import Artifact, ArtifactType

# Get authenticated client
config = auth_manager.get_client_config()
client = VigilClient(config.remote)

# Register artifact
artifact = Artifact(
    name="my-dataset",
    type=ArtifactType.DATASET,
    uri="s3://my-bucket/data/",
    description="Training dataset"
)

result = client.create_artifact(artifact)
print(f"Created artifact: {result.id}")

# Create provenance link
from vigil_client.models import Link, LinkType

link = Link(
    from_artifact_id="dataset-123",
    to_artifact_id="run-456",
    type=LinkType.INPUT_OF
)

client.create_link(link)

Plugin System

Extend Vigil with custom integrations:

from vigil_client.plugins import BasePlugin, plugin_manager

class BenchlingPlugin(BasePlugin):
    def on_artifact_push(self, artifact):
        # Custom Benchling integration
        if artifact.type == "dataset":
            self.sync_to_benchling(artifact)

# Install plugin
plugin_manager.install_plugin(
    "benchling",
    "my_plugins.benchling",
    {"api_key": "benchling-token"}
)

Integration with Vigil Core

Vigil Client extends Vigil Core with platform integration through a unified CLI:

# Core commands (from vigil-core)
vigil run
vigil promote
vigil verify

# Platform commands (from vigil-client)
vigil client login
vigil client push
vigil client pull

The unified CLI automatically detects available packages and shows appropriate commands.

Configuration

Configuration is stored in ~/.vigil/config.json:

{
  "auth": {
    "token": "jwt-token",
    "username": "user",
    "organization": "org"
  },
  "remote": {
    "base_url": "https://api.vigil.app",
    "timeout": 30
  },
  "default_project": "proj-123"
}

Security

  • Token Storage: API tokens are stored securely using system keyring
  • HTTPS Only: All platform communication uses HTTPS
  • Scoped Access: Platform enforces project and organization boundaries

Development

# Install in development mode
pip install -e packages/vigil-core-client

# Run tests
pytest packages/vigil-core-client/tests/

# Type checking
mypy packages/vigil-core-client/src/

Architecture

vigil-client/
├── api/           # REST API client
├── auth/          # Authentication & config
├── cli/           # CLI commands
├── models/        # Data models
├── plugins/       # Extension system
└── extension.py   # Integration with vigil-core

See Also

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vigil_client-0.3.7.tar.gz (45.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vigil_client-0.3.7-py3-none-any.whl (44.9 kB view details)

Uploaded Python 3

File details

Details for the file vigil_client-0.3.7.tar.gz.

File metadata

  • Download URL: vigil_client-0.3.7.tar.gz
  • Upload date:
  • Size: 45.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for vigil_client-0.3.7.tar.gz
Algorithm Hash digest
SHA256 1fa8cb5d7c29543acb54c6e1ce0f789d8900140bc65594a7602bcb72cce3ef09
MD5 b24f468e757812f00728e6c6711e5976
BLAKE2b-256 d96b9a3b85b5dfc1120bece4f6094ead08b8be6a8ee69eb23b582003a6c3c823

See more details on using hashes here.

File details

Details for the file vigil_client-0.3.7-py3-none-any.whl.

File metadata

  • Download URL: vigil_client-0.3.7-py3-none-any.whl
  • Upload date:
  • Size: 44.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for vigil_client-0.3.7-py3-none-any.whl
Algorithm Hash digest
SHA256 422e26ff0c2502dde6084d13a2c76e817664c07dbb27ecedbc74086295f44619
MD5 f7b60c1c7b2870ffb697fd8e1a6fbb47
BLAKE2b-256 df13e60c6e58bce2a0a749392b45ec9d0a12720d4105387c2c501d2a744660c8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page