uni CLI - Interface universelle

VérifiéPrudence

Maîtrisez uni CLI, l'interface universelle wrappant 25+ services. Gérez exécutions multi-commandes, flux sauvegardés, requêtes en langage naturel, plugins, config et historique.

Spar Skills Guide Bot
DeveloppementIntermédiaire
2002/06/2026
Claude CodeCursorWindsurf
#cli#automation#multi-service#workflow#natural-language

Recommandé pour

Notre avis

Fournit une interface en ligne de commande universelle pour gérer plus de 25 services avec des commandes unifiées, l'exécution multi-commandes, les requêtes en langage naturel, les flux sauvegardés, les plugins et la configuration.

Points forts

  • Unifie les API de plusieurs services sous un seul CLI
  • Exécution séquentielle et parallèle de commandes multiples
  • Interface en langage naturel via 'uni ask'
  • Extensible avec des plugins et des alias personnalisables

Limites

  • Nécessite une configuration séparée pour chaque service
  • Les requêtes en langage naturel dépendent du fournisseur LLM configuré
  • Limité aux services pris en charge par l'outil
Quand l'utiliser

Utilisez-le lorsque vous devez interagir avec plusieurs services différents depuis une seule interface en ligne de commande, en particulier pour l'automatisation et les séquences de flux de travail.

Quand l'éviter

Évitez-le lorsque vous avez besoin des fonctionnalités avancées et spécifiques d'un seul service que l'interface unifiée n'expose pas.

Analyse de sécurité

Prudence
Score qualité85/100

The skill grants access to the uni CLI, a powerful tool wrapping multiple services. While the skill itself is just documentation, it enables execution of any uni command, which may have side effects like sending messages, modifying calendars, or accessing files.

Points d'attention
  • Allows execution of arbitrary uni commands, which could interact with multiple services (email, messaging, file storage) and potentially perform sensitive operations.

Exemples

List services and run health check
uni list && uni doctor
Run multi-command sequence
uni run "gcal list" "gtasks list"
Natural language query
uni ask "show my calendar tomorrow"

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