uni CLI - Interface universelle

VérifiéSûr

CLI universel unifiant 25+ services avec commandes multi-exécution, langage naturel (uni ask), flux sauvegardés, plugins et alias. Idéal pour orchestrer des workflows complexes.

Spar Skills Guide Bot
ProductiviteIntermédiaire
3002/06/2026
Claude Code
#cli#universal#multi-command#workflow#integration

Recommandé pour

Notre avis

uni CLI offre une interface unifiée pour interagir avec plus de 25 services via un seul outil en ligne de commande, permettant l'exécution multi-commandes, les requêtes en langage naturel et les flux sauvegardés.

Points forts

  • Centralise les interactions avec plusieurs services dans un seul CLI.
  • Support des exécutions séquentielles et parallèles.
  • Permet des requêtes en langage naturel via un LLM intégré.
  • Offre des flux sauvegardés et des alias pour les tâches répétitives.

Limites

  • Nécessite l'installation et la configuration de uni CLI.
  • Certaines commandes dépendent de services externes et de clés API.
  • Les requêtes en langage naturel nécessitent un fournisseur LLM configuré.
Quand l'utiliser

Utilisez uni CLI lorsque vous devez gérer et automatiser des tâches sur plusieurs services depuis le terminal sans changer de contexte.

Quand l'éviter

Évitez uni CLI si vous n'avez besoin que d'un seul service dédié, car cela ajoute une couche supplémentaire.

Analyse de sécurité

Sûr
Score qualité92/100

The skill documents the uni CLI overview and meta commands without instructing any destructive, exfiltrating, or obfuscated actions. It relies on Bash but only to execute the uni binary, which is expected for its purpose. No risky patterns like curl piping to shell or disabling safety are present.

Aucun point d'attention détecté

Exemples

Multi-command execution
Show me how to use uni run to execute multiple commands sequentially and in parallel.
Natural language query
How do I use uni ask to ask a question in natural language and get a response?
Saved flow
How can I create and run a saved flow in uni CLI for my daily standup tasks?

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