
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
A CLI tool that connects to your backend server to execute tool calls locally on your machine.
npm install -g amai
# From the cli package directory
cd packages/cli
npm install
npm run build
# Link globally using npm
npm link
# Or use the install script
./install-global.sh
# In your other project directory
npm link /path/to/ama/packages/cli
In your project's package.json:
{
"dependencies": {
"amai": "file:../path/to/ama/packages/cli"
}
}
Then run npm install.
amai [command] [options]
login - Authorize devicelogout - Log out and remove credentialsstart - Start background daemon (recommended for better performance)stop - Stop background daemonstatus - Check daemon statusproject add <path> - Register a project directoryproject list - List registered projects--help, -h - Show help messageSERVER_URL - WebSocket server URL to connect to (optional, has a default)
ws://localhost:8787 or wss://your-server.com# Login first
amai login
# Start in background mode (recommended)
amai start
# Check daemon status
amai status
# Stop daemon
amai stop
# Register a project
amai project add /path/to/your/project
# List registered projects
amai project list
# Show help
amai --help
To build the CLI:
cd packages/cli
npm install
npm run build
The built files will be in the dist/ directory.
ws:// or wss://)amai login to authenticate~/.amai/credentials.jsonamai logout to clear credentials and re-authenticateFAQs
ama cli
We found that amai demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.