uni CLI - Interface universelle

VérifiéSûr

Interface CLI universelle regroupant plus de 25 services en une seule commande. Permet d'exécuter des séquences de commandes, d'utiliser le langage naturel, de gérer des flux sauvegardés, des plugins et des alias. Utile pour toute question générale sur uni ou pour orchestrer plusieurs services sans changer d'outil.

Spar Skills Guide Bot
DeveloppementIntermédiaire
14002/06/2026
Claude Code
#cli#automation#multi-service#natural-language#plugins

Recommandé pour

Notre avis

Interface en ligne de commande universelle qui regroupe plus de 25 services en une seule commande, avec support de séquences, langage naturel, flux sauvegardés, plugins et alias.

Points forts

  • Unifie de nombreux services sous une même interface cohérente
  • Permet l'exécution séquentielle ou parallèle de commandes multiples
  • Intègre une fonctionnalité de langage naturel pour interroger les services
  • Offre des flux réutilisables et des alias pour personnaliser le workflow

Limites

  • Nécessite une configuration initiale pour chaque service
  • Dépend de l'API des services externes, sujette à des changements
  • La fonctionnalité de langage naturel peut être imprécise pour des requêtes complexes
Quand l'utiliser

Utilisez uni-cli pour interagir rapidement avec plusieurs services depuis le terminal, automatiser des tâches répétitives ou exécuter des séquences de commandes sans changer d'outil.

Quand l'éviter

Évitez uni-cli pour des actions très spécifiques nécessitant des options avancées d'un service particulier ; préférez alors la commande native ou une skill dédiée.

Analyse de sécurité

Sûr
Score qualité95/100

The skill is a reference guide for the uni CLI; it contains no instructions for destructive actions, data exfiltration, or unsafe practices. The permitted tools only allow running uni commands, which are constrained to the uni utility.

Aucun point d'attention détecté

Exemples

Execute multiple commands sequentially
List my calendar events and tasks for today
Natural language query
Show my calendar for tomorrow
List all saved flows
Show my saved workflows

name: uni-cli description: | uni CLI overview and meta commands. Use for general uni questions, multi-command execution (uni run), saved flows, natural language (uni ask), plugins, config, aliases, history. For specific services, use their dedicated skills (uni-wa, uni-telegram, uni-google, etc.) allowed-tools: Bash(uni:), Bash(~/.local/bin/uni:)

uni CLI

Universal CLI wrapping 25+ services into one interface.

Pattern

uni <service> <command> [args] [--options]
uni list                    # All services
uni <service> --help        # Service commands
uni doctor                  # Health check

Multi-Command (run)

uni run "gcal list" "gtasks list"       # Sequential
uni run -p "cmd1" "cmd2" "cmd3"         # Parallel
uni run --dry-run "cmd1" "cmd2"         # Preview
uni run "wa send me hello{1..5}"        # Brace expansion
uni run --file batch.txt                # From file
uni run --retry 3 "flaky-cmd"           # Retry
uni run "cmd1 && cmd2"                  # On success
uni run "cmd1 || cmd2"                  # On failure
uni run "cmd1 | cmd2"                   # Pipe output

Natural Language (ask)

uni ask "show my calendar tomorrow"
uni ask "search for React tutorials"
uni ask -i                              # Interactive
uni ask "query" --dry-run               # Preview
uni ask providers                       # List LLM providers
uni ask models --provider anthropic     # List models

Saved Flows

uni flow add standup "gcal list" "gtasks list"
uni flow list
uni flow run standup
uni standup                             # Shorthand
uni flow remove standup

Plugins

uni plugins list                        # Installed
uni plugins available                   # Official
uni plugins search google               # Search npm
uni plugins install gkeep               # Install
uni plugins uninstall gkeep             # Remove
uni plugins update                      # Update all

Config

uni config show                         # All config
uni config get global.color             # Get value
uni config set global.color false       # Set value
uni config edit                         # Open editor
uni config path                         # Config path

Aliases

uni alias add inbox "gmail list --unread"
uni alias list
uni alias remove inbox
uni inbox                               # Use alias

History

uni history                             # Recent
uni history --limit 50
uni history --search "gcal"
uni history run 42                      # Re-run #42
uni history clear

Output

  • Default: Human-readable
  • --json: Machine-readable JSON
Skills similaires