Ask your question and get a summary of the document by referencing this page and the AI provider of your choice
Version History
- "Add --log option"v9.0.017/06/2026
The content of this page was translated using an AI.
See the last version of the original content in EnglishIf you have an idea for improving this documentation, please feel free to contribute by submitting a pull request on GitHub.
GitHub link to the documentationCopy doc Markdown to clipboard
Review Document
The doc review command analyses documentation files for quality, consistency, and completeness across different locales.
Key Points:
- Split large markdown files into chunks to stay within the AI model's context window limits.
- Optimize the chunks to review, and skip the parts that are already translated, and not changed.
- Process files, chunks, and locales in parallel using a queue system to increase speed.
Copy the code to the clipboard
npx intlayer doc reviewIt can be used to review files that are already translated, and to check if the translation is correct.
For most use cases,
- prefer using the
doc translatewhen the translated version of this file is not available. - prefer using the
doc reviewwhen the translated version of this file already exists.
Note that the review process consumes more entry tokens than the translate process to review the same file entirely. However, the review process will optimise the chunks to review, and will skip the parts that are not changed.
Arguments:
File list options:
--doc-pattern [docPattern...]: Glob patterns to match documentation files to review.Example:
npx intlayer doc review --doc-pattern "docs/**/*.md" "src/**/*.mdx"--excluded-glob-pattern [excludedGlobPattern...]: Glob patterns to exclude from review.Example:
npx intlayer doc review --excluded-glob-pattern "docs/internal/**"--skip-if-modified-before [skipIfModifiedBefore]: Skip the file if it has been modified before the specified time.- Can be an absolute time such as "2025-12-05" (string or Date)
- Can be a relative time in ms
1 * 60 * 60 * 1000(1 hour) - This option checks the update time of the file using the
fs.statmethod. Therefore, it could be affected by Git or other tools that modify the file.
Example:
npx intlayer doc review --skip-if-modified-before "2025-12-05"--skip-if-modified-after [skipIfModifiedAfter]: Skip the file if it has been modified within the specified time.- Can be an absolute time such as "2025-12-05" (string or Date)
- Can be a relative time in ms
1 * 60 * 60 * 1000(1 hour) - This option checks the update time of the file using the
fs.statmethod. Therefore, it could be affected by Git or other tools that modify the file.
Example:
npx intlayer doc review --skip-if-modified-after "2025-12-05"--skip-if-exists: Skip the file if it already exists.Example:
npx intlayer doc review --skip-if-exists
Review mode options:
--log: Log-only mode. Do not translate with AI; instead log the blocks that need attention (with line numbers and content) for the base and target locales, to help another agent generate the translations.Example:
npx intlayer doc review --log
Entry output options:
--locales [locales...]: Target locales to review documentation for.Example:
npx intlayer doc review --locales fr es de--base-locale [baseLocale]: Source locale (base document) to compare with.Example:
npx intlayer doc review --base-locale en
File processing options:
--nb-simultaneous-file-processed [nbSimultaneousFileProcessed]: Number of files to process simultaneously for review.Example:
npx intlayer doc review --nb-simultaneous-file-processed 5
AI options:
--model [model]: The AI model to use for review (e.g.,gpt-3.5-turbo).--provider [provider]: The AI provider to use for review.--temperature [temperature]: Temperature setting for the AI model.--api-key [apiKey]: Provide your own API key for the AI service.--application-context [applicationContext]: Provide additional context for the AI review.--data-serialization [dataSerialization]: The data serialization format to use for the AI features of Intlayer. Options:json(standard, reliable),toon(fewer tokens, less consistent).--custom-prompt [prompt]: Customise the base prompt used for review. (Note: For most use cases, the--custom-instructionsoption is recommended instead.)Example:
npx intlayer doc review --model deepseek-chat --provider deepseek --temperature 0.5 --api-key sk-1234567890 --application-context "My application is a cat store"
Environment variables options:
--env: Specify the environment (e.g.,development,production).--env-file [envFile]: Provide a custom environment file to load variables from.--base-dir: Specify the base directory for the project.--no-cache: Disable the cache.Example:
npx intlayer doc review --base-dir ./docs --env-file .env.production.local
Log options:
--verbose: Enable verbose logging for debugging. (defaults to true when using CLI)Example:
npx intlayer doc review --verbose
Custom instructions options:
--custom-instructions [customInstructions]: Custom instructions added to the prompt. Useful for applying specific rules regarding formatting, URL translation, etc.Example:
npx intlayer doc review --custom-instructions "Avoid translating URLs, and keep the markdown format"Example:
npx intlayer doc review --custom-instructions "$(cat ./instructions.md)"
Git options:
--git-diff: Only run on files that include changes from base (defaultorigin/main) to current branch (default:HEAD).--git-diff-base: Specify the base reference for git diff (defaultorigin/main).--git-diff-current: Specify the current reference for git diff (default:HEAD).--uncommitted: Include uncommitted changes.--unpushed: Include unpushed changes.--untracked: Include untracked files.Example:
npx intlayer doc review --git-diff --git-diff-base origin/main --git-diff-current HEADExample:
npx intlayer doc review --uncommitted --unpushed --untracked
Note that the output file path will be determined by replacing the following patterns:
/{{baseLocale}}/with/{{locale}}/(Unix){{baseLocale}}` with{{locale}}` (Windows)_{{baseLocale}}.with_{{locale}}.{{baseLocale}}_with{{locale}}_.{{baseLocaleName}}.with.{{localeName}}.If the pattern is not found, the output file will add
.{{locale}}to the file extension. For example,./my/file.mdwill be reviewed and updated to./my/file.fr.mdfor the French locale.