Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Meza-dev/Ghostly/llms.txt
Use this file to discover all available pages before exploring further.
ghostly update upgrades your globally installed @ghostly-io/cli package to the latest version published on npm. Because the CLI bundles every Ghostly component — the API server, the test runner, the MCP server, and the web dashboard — a single update command is all that is needed to keep your entire local environment current.
What it does
Runningghostly update executes the following command in your shell:
Usage
After updating
Restart your terminal
npm replaces the
ghostly and ghost wrapper scripts on disk. Open a new terminal session (or source your shell profile) so the shell picks up the new binary paths.Re-run the installer
Run
ghostly install again to refresh the Cursor rules, skills, and MCP server configuration with any changes shipped in the new version.Bundled components
The@ghostly-io/cli package ships every service Ghostly needs as part of its dist/ directory. Updating the CLI updates all of them in one step:
| Component | Purpose |
|---|---|
| API server | REST API and MCP tool handlers |
| Test runner | Playwright-based E2E execution engine |
| MCP server | Cursor tool integration via Model Context Protocol |
| Web frontend | Dashboard served as static files by the API |
If
npm install -g fails due to permission errors, you may need to fix your
global npm prefix ownership or use a Node version manager (such as nvm or
fnm) that installs global packages without requiring sudo.