Install the Agentic Developer Toolkit

The toolkit ships as plugins for Claude Code, Cursor, and OpenAI Codex (see the fw-dev-tools repo). Where the Skills CLI is available, you can install every skill in one command with npx skills add … --all, or pick skills and install.

Install with the Skills CLI (all assistants)

These commands are the same for every supported assistant, as long as the Skills CLI is available in your environment.

All skills at once (installs into every agent the CLI detects; non-interactive):

npx skills add https://github.com/freshworks-developers/fw-dev-tools --all

All skills, one agent — Replace <agent> with your tool’s flag (for example cursor, opencode, codex, claude-code):

npx skills add https://github.com/freshworks-developers/fw-dev-tools --skill '*' -a <agent> -y

Individual skills — Use --skill once per skill you want:

npx skills add https://github.com/freshworks-developers/fw-dev-tools --skill fw-setup
npx skills add https://github.com/freshworks-developers/fw-dev-tools --skill fw-app-dev
npx skills add https://github.com/freshworks-developers/fw-dev-tools --skill fw-ai-actions-app
npx skills add https://github.com/freshworks-developers/fw-dev-tools --skill fw-review
npx skills add https://github.com/freshworks-developers/fw-dev-tools --skill fw-publish

Local clone — Same flags work with a file:// URL:

npx skills add file:///path/to/fw-dev-tools --all