intelli-shell 3.4.0

Like IntelliSense, but for shells
Examples:
  # Import commands piped from stdin
  intelli-shell import << EOF
    // This is a sample command
    echo Hello World!
  EOF

  # Interactively import filtered commands from a specific file path, adding a tag to the description if not present
  intelli-shell import -i -t docker --filter docker path/to/shared.commands

  # Import commands from the default gist on the config
  intelli-shell import gist

  # Preview commands from a gist file without actually importing them, to check if they're properly parsed
  intelli-shell import --dry-run --gist 1234567890abcdef1234567890abcdef/docker_commands.sh

  # Import commands from a custom url (supports both text content and the same json format as export)
  intelli-shell import https://api.example.com/custom-endpoint

  # Use an LLM to extract command templates from atuin history, interactively discarding or editing them before importing
  intelli-shell import -i --ai --history atuin

  # Use an LLM to extract command templates from a website or blog
  intelli-shell import --ai http://blog.website.com/kubectl-commands-cheatsheet