ARK

Ark lives
on the desktop.

A package manager for AI systems. Built to be installed, audited, and published from a terminal.

Open getark.dev on your laptop to browse the marketplace and install packages.

Read WAGY

Ark

This site is private. Enter the password to continue.

ark unpublish

Soft-delete a package you authored from the Ark registry. The package disappears from search and detail pages, but existing local installs keep working.

Syntax

Usage
ark unpublish <name> [-y | --yes]

Prerequisites

  • You must be authenticated (ark login)
  • You must be the original author of the package (verified server-side via your token)

Behavior

  • Soft delete — the package is removed from ark search, ark info, and the public registry listing, but existing installs continue working locally.
  • Name reserved — the package name stays yours. You can republish later with ark publish after bumping the version.
  • Idempotent — re-running on an already-unpublished package is safe and returns the same result.
  • Author-only — only the original author can unpublish. Verification is server-side via your auth token.

Example

Terminal
$ ark unpublish my-agent

  Verifying ownership...
   You are the author of my-agent

  This will remove my-agent from search results and the public listing.
  Existing installs will keep working. The name stays reserved for you.

  Continue? (y/N) y

  Unpublishing...
   my-agent is now unpublished

  You can republish anytime by bumping the version in ark.json and running ark publish.

Skip confirmation

For scripts and automation, use -y or --yes to skip the confirmation prompt.

Terminal
$ ark unpublish my-agent --yes

   my-agent is now unpublished

When to use unpublish

  • You shipped something broken and want to pull it from public search until you fix it
  • You're retiring a package that's been replaced by a newer one
  • You want to rename a package (unpublish old, republish under new name)

What unpublish does NOT do

  • It does not delete the package from users who already installed it. They keep their copy and it continues working.
  • It does not refund past sales. For refund requests, contact the Ark team directly.
  • It does not free the package name for someone else. The name remains reserved for you.

Related