
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.
@agent-skills-sh/cli
Advanced tools
Interactive CLI to manage AI agent skills in your project.
# With npx (recommended)
npx @agent-skills-sh/cli init
# Global
npm install -g @agent-skills-sh/cli
skills init
skills initInitialize skills in your project with an interactive wizard.
skills init # Interactive wizard
skills init --editor claude # Specify editor
skills init --preset nextjs # Use preset
skills init --yes # Non-interactive, use defaults
Options:
-e, --editor <editor> - Editor: claude, cursor, copilot, antigravity-p, --preset <preset> - Preset: nextjs, react, node, full-y, --yes - Skip prompts, use default configurationskills listList available and installed skills.
skills list # Show full catalog
skills list --local # Show only installed skills
skills add <skill>Add a skill to your project.
skills add forms # Install forms skill
skills add zod-4 # Install Zod 4 skill
skills remove <skill>Remove a skill from your project.
skills remove forms # Remove forms skill
After skills init, a .skillsrc.json file is created:
{
"version": "1.0.0",
"editor": "claude",
"skills": {
"directory": ".claude/skills",
"active": ["react-19", "nextjs", "typescript"]
},
"agents": {
"directory": ".claude/agents",
"active": ["planner", "reviewer"]
},
"source": {
"repo": "gpolanco/agent-skills-sh",
"branch": "main"
}
}
| Editor | Skills Path | Agents Path |
|---|---|---|
| Claude Code | .claude/skills/ | .claude/agents/ |
| Cursor | .cursor/skills/ | .cursor/agents/ |
| GitHub Copilot | .github/skills/ | .github/agents/ |
| Antigravity | .gemini/skills/ | .gemini/agents/ |
| Preset | Skills |
|---|---|
nextjs | react-19, nextjs, typescript, tailwind-4, zod-4, structuring-projects |
react | react-19, typescript, tailwind-4, zod-4, structuring-projects |
node | typescript, zod-4, structuring-projects |
full | All available skills |
cd cli
pnpm install
pnpm run build
./dist/index.js --help
FAQs
CLI for managing AI agent skills
We found that @agent-skills-sh/cli 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
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.