Documentation Index
Fetch the complete documentation index at: https://simili.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Batch Command
Process multiple GitHub issues at once and export results as JSON or CSV. Always runs in dry-run mode — no changes are posted to GitHub.Syntax
Options
| Option | Short | Type | Description | Default |
|---|---|---|---|---|
--file | -f | file | JSON file containing array of issues | Required |
--out-file | -o | file | Output file path (stdout if omitted) | - |
--format | string | Output format: json or csv | json | |
--workers | -w | number | Concurrent workers | 1 |
--workflow | string | Workflow preset | issue-triage | |
--collection | string | Override Qdrant collection name | - | |
--threshold | number | Override similarity threshold | - | |
--duplicate-threshold | number | Override duplicate confidence threshold | - | |
--top-k | number | Override max similar issues to show | - | |
--config | -c | file | Path to configuration file | .github/simili.yaml |
--help | -h | bool | Show help message | - |
Batch mode always runs in dry-run. No comments, labels, or transfers are posted to GitHub.
Input format
Provide a JSON file containing an array of issue objects:org, repo, number, title
Examples
Basic JSON output
CSV export
Parallel processing
Override thresholds
Use a custom collection
Output
JSON output
CSV output
The CSV format includes 20+ flattened fields including:| Field | Description |
|---|---|
org | Organization |
repo | Repository |
number | Issue number |
title | Issue title |
duplicate_detected | true/false |
duplicate_of | Issue number of duplicate |
duplicate_confidence | Confidence score (0.0-1.0) |
quality_score | Quality score (0.0-1.0) |
suggested_labels | Comma-separated labels |
similar_1_number | Top similar issue number |
similar_1_score | Top similar issue score |
transfer_target | Target repo if routing suggested |
Performance
- Default 1 worker for safe rate-limit behaviour
- Increase workers to speed up large batches
- Each issue takes ~3-8 seconds depending on features enabled
Next steps
Process command
Process individual issues
Index command
Index issues before batching

