
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@squaredup/cli
Advanced tools
CLI tool for validating and deploying plugins to the SquaredUp platform.
npm install -g @squaredup/cli
# or
pnpm add -g @squaredup/cli
Requires Node.js 20 or later
Before deploying plugins you need to authenticate with your SquaredUp API key. You can generate one at app.squaredup.com → Settings → Advanced → API.
Interactive login (prompts for key and region):
squaredup login
Non-interactive login (useful in CI):
squaredup login --apiKey <your-api-key> --region eu
| Option | Values | Default | Description |
|---|---|---|---|
--apiKey | string | — | Your SquaredUp API key |
--region | us, eu | us | Target region |
Check your current authentication status:
squaredup status
Log out and clear stored credentials:
squaredup logout
| Command | Status | Description |
|---|---|---|
login | Available | Authenticate with the SquaredUp platform |
logout | Available | Clear stored credentials |
status | Available | Show current authentication status |
deploy | Available | Deploy a plugin to the platform |
list | Available | List deployed plugins for your tenant |
delete | Available | Delete a deployed plugin by ID |
| Flag | Description |
|---|---|
--silent | Suppress all output |
--debug | Enable verbose debug output |
--version | Print CLI version |
--help | Show help |
Prerequisites: Node.js ≥22, pnpm
git clone <repo>
cd plugin-cli
pnpm install
| Script | Command | Description |
|---|---|---|
| Build | pnpm build | Compile TypeScript to dist/ |
| Dev | pnpm dev | Watch mode — rebuild on file changes |
| Lint | pnpm lint | Run ESLint |
| Test | pnpm test | Run tests with Vitest |
After building, you can run the CLI locally:
node dist/index.js --help
To use the squaredup command globally from your local checkout, link the package after building:
pnpm build
pnpm link --global
The squaredup command will now resolve to your local dist/index.js. To unlink when you're done:
pnpm unlink --global @squaredup/cli
Credentials (API key, region, tenant name) are stored in the OS-specific user config directory managed by the conf package under the project name squaredup-cli. The config file is written with 0o600 permissions (owner read/write only).
FAQs
CLI tool for managing SquaredUp plugins
The npm package @squaredup/cli receives a total of 241 weekly downloads. As such, @squaredup/cli popularity was classified as not popular.
We found that @squaredup/cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.