An open API service indexing awesome lists of open source software.

https://github.com/pragmatiks/pragma-cli

Command-line interface for pragma-os. Declarative resource management with YAML manifests.
https://github.com/pragmatiks/pragma-cli

cli command-line developer-tools devex gitops infrastructure-as-code platform-engineering python resource-management yaml

Last synced: 12 days ago
JSON representation

Command-line interface for pragma-os. Declarative resource management with YAML manifests.

Awesome Lists containing this project

README

          


Pragma-OS

# Pragma CLI

[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/pragmatiks/pragma-cli)
[![PyPI version](https://img.shields.io/pypi/v/pragmatiks-cli.svg)](https://pypi.org/project/pragmatiks-cli/)
[![Python 3.13+](https://img.shields.io/badge/python-3.13+-blue.svg)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

**[Documentation](https://docs.pragmatiks.io/cli/overview)** | **[SDK](https://github.com/pragmatiks/pragma-sdk)** | **[Providers](https://github.com/pragmatiks/pragma-providers)**

Command-line interface for managing pragma-os resources.

## Installation

```bash
pip install pragmatiks-cli
```

Enable shell completion:

```bash
pragma --install-completion
```

## Quick Start

```bash
# Authenticate
pragma auth login

# Apply a resource from YAML
pragma resources apply bucket.yaml

# Check status
pragma resources get gcp/storage my-bucket
```

## Commands

### Resources

| Command | Description |
|---------|-------------|
| `pragma resources list` | List resources with optional filters |
| `pragma resources types` | List available resource types |
| `pragma resources get [name]` | Get resource(s) by type |
| `pragma resources describe ` | Show detailed resource info |
| `pragma resources apply ` | Apply resources from YAML |
| `pragma resources delete ` | Delete a resource |
| `pragma resources tags list/add/remove` | Manage resource tags |

### Providers

| Command | Description |
|---------|-------------|
| `pragma providers list` | List deployed providers |
| `pragma providers init ` | Initialize a new provider project |
| `pragma providers update` | Update project from template |
| `pragma providers push [--deploy]` | Build and push (optionally deploy) |
| `pragma providers deploy [version]` | Deploy a specific version |
| `pragma providers status ` | Check deployment status |
| `pragma providers builds ` | List build history |
| `pragma providers delete [--cascade]` | Delete a provider |

### Configuration

| Command | Description |
|---------|-------------|
| `pragma config current-context` | Show current context |
| `pragma config get-contexts` | List available contexts |
| `pragma config use-context ` | Switch context |
| `pragma config set-context --api-url ` | Create/update context |
| `pragma config delete-context ` | Delete context |

### Authentication

| Command | Description |
|---------|-------------|
| `pragma auth login` | Authenticate (opens browser) |
| `pragma auth whoami` | Show current user |
| `pragma auth logout` | Clear credentials |

### Operations

| Command | Description |
|---------|-------------|
| `pragma ops dead-letter list` | List failed events |
| `pragma ops dead-letter show ` | Show event details |
| `pragma ops dead-letter retry [--all]` | Retry failed event(s) |
| `pragma ops dead-letter delete [--all]` | Delete failed event(s) |

## Environment Variables

| Variable | Description |
|----------|-------------|
| `PRAGMA_CONTEXT` | Override current context |
| `PRAGMA_AUTH_TOKEN` | Authentication token |
| `PRAGMA_AUTH_TOKEN_` | Context-specific token |

## License

MIT