New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

code-ai-installer

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

code-ai-installer

Production-ready CLI to install code-ai agents and skills for multiple AI coding assistants.

latest
Source
npmnpm
Version
1.5.6
Version published
Weekly downloads
283
-31.14%
Maintainers
1
Weekly downloads
 
Created
Source

code-ai installer

CLI for installing your agents/, .agents/skills/, and .agents/workflows/ assets into AI-specific layouts. The global package contains bundled templates, so code-ai works from any directory.

Supported targets

  • vscode-copilot
  • gpt-codex
  • claude
  • qwen-3.5
  • google-antugravity

Install

npm install
npm run build

Global install

# from npm registry
npm install -g code-ai-installer
# or
pnpm add -g code-ai-installer
# or
yarn global add code-ai-installer
# or
bun add -g code-ai-installer

# verify binary in system terminal
code-ai --help
# install globally from local repository
npm install -g .
code-ai --help

Usage

# interactive wizard (recommended)
code-ai

# list targets
code-ai targets

# list available agents and skills from current repository
code-ai list
code-ai list --lang en

# health checks
code-ai doctor --target claude
code-ai doctor --target claude --lang en

# dry-run install (default)
code-ai install --target claude --agents conductor,reviewer --skills board,security_review
code-ai install --target claude --lang en --agents conductor,reviewer --skills board,security_review

# install into a newly created folder under current directory
code-ai install --target gpt-codex --create-dir my-new-project --agents all --skills all --apply

# apply install with overwrite
code-ai install --target claude --agents all --skills all --overwrite --apply

# strict mode: require explicit target hints in agent/skill files
code-ai install --target claude --agents all --skills all --strict-hints --apply

# uninstall preview
code-ai uninstall --target claude

# uninstall apply
code-ai uninstall --target claude --apply

What gets generated

  • Root orchestration mirror: AGENTS.md
  • Target instruction file:
    • Copilot: .github/copilot-instructions.md
    • GPT Codex: CODEX.md
    • Claude: CLAUDE.md
    • Qwen: QWEN.md
    • Google Antugravity: AGENTS.md (GEMINI.md is also installed for compatibility)
  • Agent files copied to target-specific agents directory.
  • Skill files copied to target-specific skills directory.
  • For gpt-codex, assets are installed to agents/, .agents/skills/, and .agents/workflows/ for native Codex discovery.
  • For google-antugravity, root instructions are provided via AGENTS.md, and a mirrored GEMINI.md is installed for backward compatibility. Assets are installed in antugravity-friendly structure:
    • agents: .gemini/agents/<agent>/prompt.md and .gemini/agents/<agent>/config.json
    • skills: .gemini/skills/<skill>.md and .gemini/skills/<skill>.py
  • For qwen-3.5, installer also generates .qwen/settings.json with model/context defaults.
  • Markdown content is normalized per target (model-specific hint comments like codex: are transformed).
    • codex reasoning is mapped to target-native hints (copilot reasoning, claude thinking, qwen reasoning_effort, gemini reasoning).

Safety model

  • Default mode is dry-run.
  • Backup is created before writes under .code-ai-installer/backups/<target>/<timestamp>/.
  • State is tracked in .code-ai-installer/state/<target>.json for uninstall.
  • Rollback restores previous files on install failure.
  • Optional strict adaptation mode: --strict-hints enforces target-hint emission and auto-fills missing hints with target defaults.

Notes

  • Target aliases are accepted: copilot, codex, claude, qwen, google, antigravity.
  • If your AI tool requires a custom location, pass --destination <path>.
  • Source templates are resolved automatically: current directory first, bundled package templates second.
  • Template language is selectable via --lang ru|en (default: ru).

Keywords

cli

FAQs

Package last updated on 27 Mar 2026

Did you know?

Socket

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.

Install

Related posts