> ## Documentation Index
> Fetch the complete documentation index at: https://docs.suprsend.com/llms.txt
> Use this file to discover all available pages before exploring further.

# CLI Changelog

> Browse the SuprSend CLI changelog for release notes covering new features, bug fixes, breaking changes, and security updates across every CLI version.

The SuprSend CLI Changelog provides a comprehensive record of all CLI releases, including new features, bug fixes, breaking changes, and security updates.

## Release History

<AccordionGroup>
  <Accordion title="v1.0.0 - Latest" icon="rocket" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> May 22, 2026</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/1.0.0">v1.0.0</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-green-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/1.0.0" className="text-blue-600 hover:underline">v1.0.0</a>
            </h4>

            <span className="text-sm text-gray-500">May 22, 2026</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>Changelog:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>ENG-496: CLI 0.2 config refactor and UX fixes (#65)</li>
                <li>chore(deps): bump sigstore/cosign-installer in the actions group (#68)</li>
                <li>genskills: agent-friendly description + per-command Tips (#66)</li>
                <li>genskills: narrow cli skill trigger to running commands only (#67)</li>
                <li>profile: URL prompts + tighter validation in add/modify (#35)</li>
              </ul>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v1.0.0-beta.1" icon="flask" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> April 30, 2026</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/1.0.0-beta.1">v1.0.0-beta.1</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-orange-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/1.0.0-beta.1" className="text-blue-600 hover:underline">v1.0.0-beta.1</a>
            </h4>

            <span className="text-sm text-gray-500">Apr 30, 2026</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p>First beta of the 1.0 line. Breaking release — every artifact-pulling resource changes its on-disk shape, and several CLI short flags change identity. Try it on a non-production workspace first.</p>
              <p className="mt-2"><strong>Install:</strong> <code>npm i -g suprsend\@beta</code> · <code>npx suprsend\@beta</code> · plain <code>npm i -g suprsend</code> still resolves to 0.2.24.</p>
            </div>

            <div>
              <p><strong>💥 Breaking — on-disk artifact layout</strong></p>
              <p className="ml-4">Every non-template resource moves to a plural top-level dir + per-item subdirectory. Pulled metadata files now embed an upstream <code>\$schema</code> reference.</p>

              <table className="ml-4 mt-2 text-xs border-collapse">
                <thead>
                  <tr>
                    <th className="border px-2 py-1 text-left">Resource</th>
                    <th className="border px-2 py-1 text-left">Before</th>
                    <th className="border px-2 py-1 text-left">After</th>
                  </tr>
                </thead>

                <tbody>
                  <tr>
                    <td className="border px-2 py-1">Workflow</td>
                    <td className="border px-2 py-1"><code>workflow/\{slug}.json</code></td>
                    <td className="border px-2 py-1"><code>workflows/\{slug}/workflow\.json</code></td>
                  </tr>

                  <tr>
                    <td className="border px-2 py-1">Schema</td>
                    <td className="border px-2 py-1"><code>schema/\{slug}.json</code> (json\_schema inline)</td>
                    <td className="border px-2 py-1"><code>schemas/\{slug}/schema.json</code> + <code>schemas/\{slug}/payload\_schema.json</code></td>
                  </tr>

                  <tr>
                    <td className="border px-2 py-1">Event</td>
                    <td className="border px-2 py-1"><code>event/event\_schema\_mapping.json</code> (bundled)</td>
                    <td className="border px-2 py-1"><code>events/\{slugified-name}/event.json</code></td>
                  </tr>

                  <tr>
                    <td className="border px-2 py-1">Preference categories</td>
                    <td className="border px-2 py-1"><code>category/categories\_preferences.json</code> + <code>category/translation/\{locale}.json</code></td>
                    <td className="border px-2 py-1"><code>preference\_categories/categories.json</code> + <code>preference\_categories/translations/\{locale}.json</code></td>
                  </tr>

                  <tr>
                    <td className="border px-2 py-1">Template translations</td>
                    <td className="border px-2 py-1"><code>translation/\{filename}.json</code></td>
                    <td className="border px-2 py-1"><code>translations/\{filename}.json</code></td>
                  </tr>
                </tbody>
              </table>

              <ul className="ml-4 mt-2 space-y-1">
                <li>Events use dual identity. Backend allows <code>/</code>, spaces, etc.; pull slugifies the name to a directory handle and preserves the original verbatim in <code>event.json#name</code>. <code>mv events/old/ events/new/</code> does NOT rename the event — edit <code>event.json#name</code> instead.</li>
                <li>Schema validation runs client-side. Schema push (real and <code>--dry-run</code>) compiles <code>payload\_schema.json</code> against JSON Schema draft 2020-12 and rejects schemas whose root type is not <code>object</code>.</li>
              </ul>
            </div>

            <div>
              <p><strong>💥 Breaking — CLI short flags</strong></p>
              <p className="ml-4">Hard breaks; scripts using the dropped forms fail with <code>unknown flag</code>.</p>

              <table className="ml-4 mt-2 text-xs border-collapse">
                <thead>
                  <tr>
                    <th className="border px-2 py-1 text-left">Short</th>
                    <th className="border px-2 py-1 text-left">Old</th>
                    <th className="border px-2 py-1 text-left">New</th>
                  </tr>
                </thead>

                <tbody>
                  <tr><td className="border px-2 py-1"><code>-m</code></td><td className="border px-2 py-1"><code>--commit-message</code></td><td className="border px-2 py-1"><code>--mode</code> only</td></tr>
                  <tr><td className="border px-2 py-1"><code>-f</code></td><td className="border px-2 py-1"><code>--offset</code> / <code>--force</code></td><td className="border px-2 py-1">dropped</td></tr>
                  <tr><td className="border px-2 py-1"><code>-l</code></td><td className="border px-2 py-1"><code>--limit</code> / <code>--locale</code></td><td className="border px-2 py-1"><code>--limit</code> only</td></tr>
                  <tr><td className="border px-2 py-1"><code>-n</code></td><td className="border px-2 py-1"><code>--no-color</code></td><td className="border px-2 py-1"><code>--dry-run</code></td></tr>
                  <tr><td className="border px-2 py-1"><code>-F</code></td><td className="border px-2 py-1">unused</td><td className="border px-2 py-1"><code>--force</code> (uniform)</td></tr>
                  <tr><td className="border px-2 py-1"><code>-S</code></td><td className="border px-2 py-1">unused</td><td className="border px-2 py-1"><code>--from</code> (sync source)</td></tr>
                  <tr><td className="border px-2 py-1"><code>-q</code></td><td className="border px-2 py-1">unused</td><td className="border px-2 py-1"><code>--quiet</code> (root-persistent)</td></tr>
                  <tr><td className="border px-2 py-1"><code>-j</code></td><td className="border px-2 py-1">unused</td><td className="border px-2 py-1"><code>--json</code> (inline payload on push)</td></tr>
                </tbody>
              </table>

              <p className="ml-4 mt-2">Also: <code>--commit</code> is now a clean boolean everywhere (was string on some); <code>--mode</code> added to template list/get/pull; positional slug AND <code>--slug</code> flag both accepted everywhere; TTY-gated prompts (no more silent CI hangs); confirmations on destructive ops; JSON errors when stderr piped, with stable error codes (<code>auth-missing-token</code>, <code>api-not-found</code>, etc.) and exit codes 0/1/2/3/4/5/64.</p>
            </div>

            <div>
              <p><strong>✨ New</strong></p>

              <ul className="ml-4 space-y-1">
                <li><code>suprsend template</code> command group — full CRUD with per-channel variant extraction, mock data, variant ordering.</li>
                <li><code>suprsend workspace list</code> · <code>suprsend env</code> · <code>suprsend completion bash|zsh|fish|powershell</code>.</li>
                <li>MCP server: dynamic workflow-trigger tools register concurrently (cold-start fix for large workspaces); <code>--workflows</code> accepts <code>tag:\{tag}</code> selectors; <code>list-tools</code> shows rich descriptions.</li>
                <li>MCP Registry support — server published to <code>registry.modelcontextprotocol.io</code> on each stable release (skipped for this beta).</li>
                <li>Glama listing.</li>
                <li><code>--dry-run</code> on every destructive command (push / commit / sync / enable / disable).</li>
                <li>Streaming template pull — large workspaces (\~635 templates) went from 120s+ feeling frozen → \~45s with live <code>Pulled N/Total</code> progress.</li>
                <li>Per-item progress + summary blocks uniformly across push commands; <code>Wrote ... to ...</code> log lines on pulls.</li>
                <li>Push API errors prefixed with the on-disk path (e.g. <code>schemas/order\_confirmation: failed to push: \{reason}</code>).</li>
              </ul>
            </div>

            <div>
              <p><strong>🐛 Notable fixes</strong></p>

              <ul className="ml-4 space-y-1">
                <li><code>translation list --include-content=true</code> now actually returns content (typed-decode bug).</li>
                <li><code>translation get \{filename}</code> and <code>event get \{name}</code> fetch a single item (were returning the whole workspace).</li>
                <li><code>schema list</code> shows <code>name</code> instead of the always-empty <code>title</code>.</li>
                <li><code>category push</code> pushes translations alongside categories regardless of <code>--commit</code> (matches docstring).</li>
                <li><code>category translation push</code> no longer silent-no-ops when only <code>en.json</code> is present.</li>
                <li>Cobra's noisy <code>Usage:</code> dump on every error is silenced.</li>
              </ul>
            </div>

            <div>
              <p><strong>🔄 Migration</strong></p>
              <p className="ml-4">Two paths. Both assume the new CLI is installed — verify with <code>suprsend --version</code>.</p>
              <p className="ml-4 mt-2"><strong>Path A — clean re-pull (recommended)</strong></p>
              <p className="ml-4">Backs everything up, re-pulls fresh in the new layout. Loses any uncommitted local edits.</p>
              <pre className="ml-4 mt-1 p-2 bg-gray-100 dark:bg-gray-800 rounded text-xs overflow-x-auto"><code>mv suprsend suprsend.old
              suprsend workflow pull
              suprsend event pull
              suprsend schema pull
              suprsend category pull
              suprsend translation pull
              \# verify the new layout looks right, then:
              rm -rf suprsend.old</code></pre>
              <p className="ml-4 mt-2"><strong>Path B — convert in place (preserves uncommitted edits)</strong></p>
              <p className="ml-4">Run each block from the repo root. Every block is guarded by a "source exists" check, so it's safe to re-run and safe to skip a resource that doesn't exist locally.</p>

              <ul className="ml-4 mt-1 space-y-1">
                <li>Workflows — pure <code>mv</code></li>
                <li>Schemas — splits each schema file into two; requires <code>jq</code></li>
                <li>Events — unbundle <code>event\_schema\_mapping.json</code> and slugify names; requires <code>jq</code></li>
                <li>Preference categories — rename dirs and files</li>
                <li>Template translations — pure directory rename</li>
                <li>Add the <code>\$schema</code> reference — required after Path B</li>
              </ul>

              <p className="ml-4 mt-2">For CLI flag breakages, scripts will fail loudly with <code>unknown flag</code> — fix as you encounter them.</p>
            </div>

            <div>
              <p><strong>Try it</strong></p>
              <pre className="ml-4 mt-1 p-2 bg-gray-100 dark:bg-gray-800 rounded text-xs overflow-x-auto"><code>npm i -g suprsend\@beta
              suprsend --version   # 1.0.0-beta.1</code></pre>
              <p className="ml-4 mt-2">Stable users (<code>npm i suprsend</code>) unaffected. Homebrew taps and the MCP Registry are skipped for betas and will catch up on 1.0.0 stable.</p>
              <p className="ml-4 mt-2">Issues: <a href="https://github.com/suprsend/cli/issues" className="text-blue-600 hover:underline">[https://github.com/suprsend/cli/issues](https://github.com/suprsend/cli/issues)</a></p>
            </div>

            <div className="mt-4 p-3 bg-yellow-50 dark:bg-yellow-900/20 rounded">
              <p className="text-sm"><strong>⚠️ Note:</strong> This is a pre-release. Breaking changes are expected — try on a non-production workspace first.</p>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v0.2.21" icon="code" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> March 17, 2026</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/0.2.21">v0.2.21</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-green-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/0.2.21" className="text-blue-600 hover:underline">v0.2.21</a>
            </h4>

            <span className="text-sm text-gray-500">Mar 17, 2026</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>✨ Powers the suprsend-cli Agent Skill</strong></p>
              <p className="ml-4 text-gray-600">This release's improved command descriptions and flags are what make the <strong>suprsend-cli</strong> Agent Skill accurate. Your coding agent (Cursor, Claude Code, Copilot, and others) now resolves the right CLI command and flags on the first try — no hallucinated syntax.</p>
              <p className="ml-4 mt-1"><a href="https://docs.suprsend.com/reference/agent-skills" className="text-blue-600 hover:underline">→ Install Agent Skills</a></p>
            </div>

            <div>
              <p><strong>Improvements:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Better descriptions and flags for improved LLM consumption — structured so AI agents resolve the right command on the first try.</li>
                <li>Support for getting and saving a single asset without needing to set up a full SuprSend directory — useful for quick one-off pulls in CI or scripting.</li>
                <li>Added JSON push support.</li>
              </ul>
            </div>

            <div>
              <p><strong>Bug Fixes:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Fixed cross-compilation of type-morph for each target platform.</li>
              </ul>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v0.2.20" icon="code" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> March 17, 2026</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/0.2.20">v0.2.20</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-green-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/0.2.20" className="text-blue-600 hover:underline">v0.2.20</a>
            </h4>

            <span className="text-sm text-gray-500">Mar 17, 2026</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>Improvements:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Bundle signing key in release</li>
              </ul>
            </div>

            <div>
              <p><strong>Bug Fixes:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Fixed JSON Schema draft 2020-12 validation errors in MCP</li>
              </ul>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v0.2.19" icon="code" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> March 12, 2026</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/0.2.19">v0.2.19</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-green-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/0.2.19" className="text-blue-600 hover:underline">v0.2.19</a>
            </h4>

            <span className="text-sm text-gray-500">Mar 12, 2026</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>Features:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>MCP workflow list tool</li>
              </ul>
            </div>

            <div>
              <p><strong>Improvements:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Added GitHub Actions workflow to sign and release artifacts</li>
              </ul>
            </div>

            <div>
              <p><strong>Bug Fixes:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Various bugfixes</li>
              </ul>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v0.2.18" icon="code" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> March 5, 2026</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/0.2.18">v0.2.18</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-green-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/0.2.18" className="text-blue-600 hover:underline">v0.2.18</a>
            </h4>

            <span className="text-sm text-gray-500">Mar 5, 2026</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>Features:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Added support for generating SKILLS.md</li>
              </ul>
            </div>

            <div>
              <p><strong>Improvements:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Upgraded dependencies</li>
              </ul>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v0.2.16" icon="code" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> February 19, 2026</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/0.2.16">v0.2.16</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-blue-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/0.2.16" className="text-blue-600 hover:underline">v0.2.16</a>
            </h4>

            <span className="text-sm text-gray-500">Feb 19, 2026</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>Bug Fixes:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Translation file data fix</li>
              </ul>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v0.2.15" icon="code" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> December 12, 2025</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/0.2.15">v0.2.15</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-green-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/0.2.15" className="text-blue-600 hover:underline">v0.2.15</a>
            </h4>

            <span className="text-sm text-gray-500">Dec 12, 2025</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>Features:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Support for translations in Preference Categories</li>
              </ul>
            </div>

            <div>
              <p><strong>Improvements:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Updated golang.org/x/crypto from 0.38.0 to 0.45.0</li>
              </ul>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v0.2.14" icon="code" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> November 7, 2025</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/0.2.14">v0.2.14</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-blue-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/0.2.14" className="text-blue-600 hover:underline">v0.2.14</a>
            </h4>

            <span className="text-sm text-gray-500">Nov 7, 2025</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>Bug Fixes:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Fixed a bug where CLI was failing if any version no is null</li>
              </ul>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v0.2.13" icon="code" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> October 31, 2025</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/0.2.13">v0.2.13</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-blue-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/0.2.13" className="text-blue-600 hover:underline">v0.2.13</a>
            </h4>

            <span className="text-sm text-gray-500">Oct 31, 2025</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>Bug Fixes:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Few bugfixes for translation support</li>
              </ul>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v0.2.12" icon="code" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> October 31, 2025</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/0.2.12">v0.2.12</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-green-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/0.2.12" className="text-blue-600 hover:underline">v0.2.12</a>
            </h4>

            <span className="text-sm text-gray-500">Oct 31, 2025</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>Features:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Type generation support based of available Schema</li>
              </ul>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v0.2.11" icon="code" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> October 30, 2025</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/0.2.11">v0.2.11</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-green-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/0.2.11" className="text-blue-600 hover:underline">v0.2.11</a>
            </h4>

            <span className="text-sm text-gray-500">Oct 30, 2025</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>Features:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Support for translations</li>
              </ul>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v0.2.10" icon="code" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> October 14, 2025</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/0.2.10">v0.2.10</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-blue-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/0.2.10" className="text-blue-600 hover:underline">v0.2.10</a>
            </h4>

            <span className="text-sm text-gray-500">Oct 14, 2025</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>Improvements:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Category response update</li>
              </ul>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v0.2.9" icon="code" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> October 9, 2025</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/0.2.9">v0.2.9</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-green-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/0.2.9" className="text-blue-600 hover:underline">v0.2.9</a>
            </h4>

            <span className="text-sm text-gray-500">Oct 9, 2025</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>Features:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Support for Gemini extension</li>
              </ul>
            </div>

            <div>
              <p><strong>Bug Fixes:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Fixed argument handling</li>
                <li>Fixed URL join and Gemini version</li>
              </ul>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v0.2.8" icon="code" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> October 9, 2025</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/0.2.8">v0.2.8</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-green-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/0.2.8" className="text-blue-600 hover:underline">v0.2.8</a>
            </h4>

            <span className="text-sm text-gray-500">Oct 9, 2025</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>Features:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Support for Gemini extension</li>
              </ul>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v0.2.7" icon="code" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> October 8, 2025</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/0.2.7">v0.2.7</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-blue-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/0.2.7" className="text-blue-600 hover:underline">v0.2.7</a>
            </h4>

            <span className="text-sm text-gray-500">Oct 8, 2025</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>Improvements:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Updated goreleaser config to support signing</li>
              </ul>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v0.2.3" icon="code" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> October 8, 2025</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/0.2.3">v0.2.3</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-green-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/0.2.3" className="text-blue-600 hover:underline">v0.2.3</a>
            </h4>

            <span className="text-sm text-gray-500">Oct 8, 2025</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>Build Update:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Updated goreleaser configuration to support binary notarization</li>
              </ul>
            </div>

            <div>
              <p><strong>Benefits:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Enhanced Security: Ensures the CLI binary is cryptographically verified and trusted by the operating system (especially macOS)</li>
                <li>Improved User Trust: Prevents "unverified developer" warnings during installation or execution</li>
                <li>Compliance Ready: Aligns with modern distribution standards required by platforms like Homebrew, Apple Gatekeeper, and enterprise IT policies</li>
              </ul>
            </div>

            <div className="mt-4 p-3 bg-yellow-50 dark:bg-yellow-900/20 rounded">
              <p className="text-sm"><strong>⚠️ Note:</strong> This is a beta release. Features are still evolving and may change before production readiness.</p>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v0.2.2" icon="code" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> October 8, 2025</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/0.2.2">v0.2.2</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-green-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/0.2.2" className="text-blue-600 hover:underline">v0.2.2</a>
            </h4>

            <span className="text-sm text-gray-500">Oct 8, 2025</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>Upgrade:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Updated mcp-go to version 0.41</li>
              </ul>
            </div>

            <div>
              <p><strong>Build Improvements:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Updated goreleaser configuration for improved release workflow</li>
              </ul>
            </div>

            <div>
              <p><strong>New Feature:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Added Homebrew cask support for easier macOS installation</li>
              </ul>
            </div>

            <div>
              <p><strong>Maintenance:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Minor hotfixes and version alignment</li>
              </ul>
            </div>

            <div className="mt-4 p-3 bg-yellow-50 dark:bg-yellow-900/20 rounded">
              <p className="text-sm"><strong>⚠️ Note:</strong> This is a beta release. Features are still evolving and may change before production readiness.</p>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v0.2" icon="code" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> September 29, 2025</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/0.2">v0.2</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-green-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/0.2" className="text-blue-600 hover:underline">v0.2</a>
            </h4>

            <span className="text-sm text-gray-500">Sep 29, 2025</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>✨ Features:</strong></p>

              <ul className="ml-4 space-y-1">
                <li><strong>MCP Enhancements:</strong> Added support for events, event triggers, workflows, workflow triggers, preferences, profiles, and object subscriptions</li>
                <li><strong>Type & Schema Tools:</strong> New type generation (including TypeMorph, TypeScript-Zod), schema commit/reset commands, schema merging, and linkage with workflows</li>
                <li><strong>CLI Improvements:</strong> New subcommands (sync, workflow push/pull/commit, get & trigger, HTTP proxy, category push/pull). Added spinners, progress bar, structured error responses, and improved help/output</li>
              </ul>
            </div>

            <div>
              <p><strong>🛠 Fixes & Refactors:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Multiple bug fixes across profiles, schema, workflow, and MCP tools</li>
                <li>Refactored workflow flows, profile handling, sync commands, and error handling</li>
                <li>Improved consistency in output, error messages, and tool naming</li>
              </ul>
            </div>

            <div>
              <p><strong>📑 Documentation & Cleanup:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Expanded documentation and updated README</li>
                <li>Cleaned up flags, commands, and code structure</li>
              </ul>
            </div>

            <div>
              <p><strong>🔄 Dependency & Build Updates:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Upgraded mcp-go, cobra, viper, and related libraries</li>
              </ul>
            </div>

            <div className="mt-4 p-3 bg-yellow-50 dark:bg-yellow-900/20 rounded">
              <p className="text-sm"><strong>⚠️ Note:</strong> This is a beta release. Features are still evolving and may change before production readiness.</p>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v0.1.1" icon="code" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> June 20, 2025</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/0.1.1">v0.1.1</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-green-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/0.1.1" className="text-blue-600 hover:underline">v0.1.1</a>
            </h4>

            <span className="text-sm text-gray-500">Jun 20, 2025</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>New Features:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Tenant management tools</li>
                <li>User fetch/update/prefs</li>
                <li>Docs command</li>
                <li>Generate-config subcommand</li>
              </ul>
            </div>

            <div>
              <p><strong>Improvements:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Cleaner CLI output</li>
                <li>YAML support</li>
                <li>Better help text</li>
                <li>Color disabled in piped output</li>
              </ul>
            </div>

            <div>
              <p><strong>Fixes:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>License, goreleaser config, version handling, merge conflicts</li>
              </ul>
            </div>

            <div>
              <p><strong>Other:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Project restructuring and build script additions</li>
              </ul>
            </div>

            <div className="mt-4 p-3 bg-yellow-50 dark:bg-yellow-900/20 rounded">
              <p className="text-sm"><strong>⚠️ Note:</strong> This release is experimental and not intended for production use.</p>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>

  <Accordion title="v0.1" icon="code" iconType="solid">
    <div className="mb-4">
      <p><strong>Repository:</strong> <a href="https://github.com/suprsend/cli">suprsend/cli</a></p>
      <p><strong>Release Date:</strong> May 6, 2025</p>
      <p><strong>Release:</strong> <a href="https://github.com/suprsend/cli/releases/tag/0.1">v0.1</a></p>
    </div>

    <div className="space-y-6">
      <div className="flex">
        <div className="w-1 bg-green-500 mr-3 flex-shrink-0" />

        <div className="flex-1">
          <div className="flex items-center justify-between mb-1">
            <h4 className="text-lg font-semibold">
              <a href="https://github.com/suprsend/cli/releases/tag/0.1" className="text-blue-600 hover:underline">v0.1</a>
            </h4>

            <span className="text-sm text-gray-500">May 6, 2025</span>
          </div>

          <div className="text-sm space-y-2">
            <div>
              <p><strong>Setup & Documentation:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Initial setup</li>
                <li>Added MCP Server documentation</li>
                <li>Created and updated README</li>
                <li>Improved docs with default mode set to pretty</li>
              </ul>
            </div>

            <div>
              <p><strong>Improvements:</strong></p>

              <ul className="ml-4 space-y-1">
                <li>Cleanup, minor changes</li>
                <li>Updated goreleaser config</li>
              </ul>
            </div>

            <div className="mt-4 p-3 bg-yellow-50 dark:bg-yellow-900/20 rounded">
              <p className="text-sm"><strong>⚠️ Note:</strong> This release is experimental and not intended for production use.</p>
            </div>
          </div>
        </div>
      </div>
    </div>
  </Accordion>
</AccordionGroup>
