New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@llm-dev-ops/llm-config-cli

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@llm-dev-ops/llm-config-cli

Command-line interface (Rust crate - use via cargo or build from source)

latest
Source
npmnpm
Version
0.5.0
Version published
Maintainers
1
Created
Source

llm-config-cli

Crates.io Documentation License

Command-line interface for LLM Config Manager with interactive prompts, colored output, and comprehensive configuration management.

Features

  • Interactive Mode: User-friendly prompts for configuration
  • Colored Output: Syntax highlighting and status colors
  • Batch Operations: Import/export configurations in bulk
  • Environment Management: Switch between environments easily
  • Secret Management: Secure handling of sensitive values
  • Version Control: View history and rollback changes
  • Format Support: JSON, YAML, TOML input/output

Installation

cargo install llm-config-cli

Usage

Set Configuration

# Set a simple value
llm-config set app.database.url postgres://localhost/mydb --env production

# Set a secret (encrypted)
llm-config set-secret app.api.key my-secret-key --env production

Get Configuration

# Get a value
llm-config get app.database.url --env production

# Get with JSON output
llm-config get app.database.url --env production --format json

List Configurations

# List all configurations
llm-config list --env production

# List with pattern
llm-config list app.* --env production

Version Control

# View history
llm-config history app.database.url

# Rollback to previous version
llm-config rollback app.database.url --version 5

Import/Export

# Export configurations
llm-config export --env production > config.json

# Import configurations
llm-config import config.json --env staging

Configuration

The CLI stores its configuration in ~/.config/llm-config/config.toml:

[default]
environment = "development"
format = "json"
storage_path = "~/.local/share/llm-config"

License

Licensed under the Apache License, Version 2.0.

Keywords

rust

FAQs

Package last updated on 21 Nov 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts