agentsclimarketplace

Crowdin api client

Skill crowdin/skills/crowdin-api-client

Agent Skills to help developers using AI agents with Crowdin

Install
npx -y skills add crowdin/skills --skill crowdin-api-client

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when implementing, refactoring, or reviewing `@crowdin/crowdin-api-client` usage in any JavaScript or TypeScript project, especially for endpoint selection, request/response typing, pagination, uploads, retries, timeouts, or `CrowdinError` handling.

SKILL.md

4.3 KB, as published. Nobody here has run it

Crowdin API Client

Overview

Use this skill when touching Crowdin API integration code in any project that depends on @crowdin/crowdin-api-client. Core principle: verify local client typings first, then implement with strict model types and correct response envelope handling.

When to Use

  • New or changed calls to @crowdin/crowdin-api-client.
  • Compile/type errors after API-client upgrades.
  • Confusion about method names, request fields, or ResponseList vs ResponseObject.
  • Refactors involving uploads, file translations, screenshots, tasks, comments, strings, or projects.
  • Reviews where behavior works at runtime but types/mapping look suspicious.

Do not use this skill for unrelated infra-only changes.

Required Preflight (Before Editing)

  1. Check local declarations first: node_modules/@crowdin/crowdin-api-client/out/<module>/index.d.ts.
  2. Confirm exact API class and method name in use.
  3. Confirm request model type and required fields.
  4. Confirm response envelope: ResponseList<T> or ResponseObject<T>.

Do not code from memory when typings and docs disagree.

Quick Reference

ScenarioPreferred Pattern
Multi-module flownew Client(credentials, options) and destructure needed APIs
Single narrow flowDirect module API class is acceptable
Full collection reads.withFetchAll()
Transient failuresretryConfig
Bounded request duration{ httpRequestTimeout: 60_000 }
UploadsuploadStorageApi.addStorage -> sourceFilesApi.createFile
Error branchingCrowdinValidationError before CrowdinError

Core Patterns

Bootstrap

import { Client, Credentials } from '@crowdin/crowdin-api-client';

const credentials: Credentials = {
  token: process.env.CROWDIN_TOKEN!,
  organization: process.env.CROWDIN_ORG,
};

const client = new Client(credentials);

Response Envelope Handling

const listResponse = await client.tasksApi.withFetchAll().listTasks(projectId, options);
const tasks = listResponse.data.map((entry) => entry.data); // ResponseList<T>

const createResponse = await client.tasksApi.addTask(projectId, request);
const task = createResponse.data; // ResponseObject<T>

Typed Request Models

const request: TasksModel.CreateTaskRequest = {
  title: 'My Task',
  languageId: 'de',
  type: 0,
  fileIds: [12],
};

Error Handling

import { CrowdinError, CrowdinValidationError } from '@crowdin/crowdin-api-client';

try {
  // API call
} catch (error) {
  if (error instanceof CrowdinValidationError) throw error;
  if (error instanceof CrowdinError) throw error;
  throw error;
}

Common Mistakes

MistakeFix
Guessing endpoint methods from memoryValidate in local index.d.ts first
Treating list response as object responseCheck ResponseList<T> vs ResponseObject<T> and map accordingly
Weakening or bypassing model typingUse client *Model types in service signatures and fixtures
Manual pagination loops by defaultPrefer .withFetchAll() unless custom batching is required
Uploading file directly to createFileCreate storage first, then pass storageId
Catching all errors as genericBranch CrowdinValidationError and CrowdinError explicitly

Verification Gate

After changing API-client usage:

  1. Run lint/type checks in the current project.
  2. Run at least one targeted test for the modified API flow.
  3. If tests fail on strict typing, fix fixture/model typing instead of loosening production types.

Review Checklist

  • Correct API module and method for the task.
  • Request models are explicit and include required fields.
  • Response mapping matches envelope shape.
  • Type safety is preserved without bypassing model contracts.
  • Pagination strategy matches expected volume.
  • Retry/timeout/runtime options fit environment.
  • Error handling distinguishes validation from generic API errors.

Reference docs: Crowdin API Client modules

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.