Ark

This site is private. Enter the password to continue.

docs / cli / info

ark info

Display detailed information about a package from the registry: description, audit breakdown, pricing, author, and install command.

Syntax

Usage
ark info <package-name> [--version <version>] [--json]

Example

Terminal
$ ark info agent-comptable

  agent-comptable  v3.0.1
  ─────────────────────────────────────────────────
  Type:       agent
  Category:   business
  Author:     Studio GinoFtn (hello@ginoftn.com)
  License:    proprietary

  Agent autonome de gestion comptable pour PME.
  Gere la classification, les rapports et les
  reconciliations bancaires avec zero configuration.

  Audit score:   87/100  Certified
    Structure      19/20
    Security       18/20
    Code Quality   17/20
    Completeness   14/15
    Robustness     12/15
    Value           7/10

  Price:         $49  (range: $35–$65)
  Downloads:     1,247
  Rating:        ★★★★☆  (38 reviews)
  Last updated:  2026-04-28

  Platforms:  claude-code
  Requires:   Node.js >=18.0.0, macOS 12+ or Ubuntu 20+

  Install:
    $ ark install agent-comptable --code <your-code>

Specific version

Terminal
$ ark info agent-comptable --version 2.1.0

JSON output

Terminal
$ ark info agent-comptable --json

{
  "name": "agent-comptable",
  "version": "3.0.1",
  "type": "agent",
  "category": "business",
  "audit": {
    "score": 87,
    "verdict": "certified",
    "price_range": { "min": 35, "max": 65 }
  },
  "price": 49,
  "downloads": 1247
}