Ark

This site is private. Enter the password to continue.

docs / cli / list

ark list

Show all packages installed in ~/.ark/packages/, with their versions and update status.

Syntax

Usage
ark list [--outdated] [--json]

Flags

FlagDescription
--outdatedShow only packages that have newer versions available
--jsonOutput as JSON

List all installed packages

Terminal
$ ark list

  NAME                   VERSION   STATUS     TYPE
  ────────────────────────────────────────────────────
  voice-writer           2.1.0     up to date  agent
  daily-recap            1.3.2     up to date  skill
  agent-comptable        3.0.1     update: 3.1.0  agent
  noesisgen-light        0.2.1     up to date  system
  ────────────────────────────────────────────────────
  4 packages installed

Show outdated packages only

Terminal
$ ark list --outdated

  agent-comptable   3.0.1  →  3.1.0   Run: ark update agent-comptable

JSON output

Terminal
$ ark list --json

[
  {
    "name": "voice-writer",
    "installed": "2.1.0",
    "latest": "2.1.0",
    "outdated": false
  },
  ...
]