---
createdAt: 2024-08-11
updatedAt: 2025-11-22
title: CLI SDK
description: Learn how to use the Intlayer CLI SDK in your own code.
keywords:
- SDK
- CLI
- Intlayer
- Programmatic
slugs:
- doc
- concept
- cli
- sdk
---
# CLI SDK
The CLI SDK is a library that allows you to use the Intlayer CLI in your own code.
```bash packageManager="npm"
npm install @intlayer/cli --save-dev
```
```bash packageManager="yarn"
yarn add @intlayer/cli --save-dev
```
```bash packageManager="pnpm"
pnpm add @intlayer/cli --save-dev
```
```bash packageManager="bun"
bun add @intlayer/cli --dev
```
Example of usage:
```ts
import {
push,
pull,
fill,
build,
listContentDeclaration,
testMissingTranslations,
docTranslate,
docReview,
extract,
} from "@intlayer/cli";
push();
// ...
pull();
// ...
fill();
// ...
build();
// ...
listContentDeclaration();
// ...
testMissingTranslations();
// ...
docTranslate();
// ...
docReview();
// ...
extract();
// ...
```