Automation is not configured inDocumentation Index
Fetch the complete documentation index at: https://eondr.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
综合设置. The current entry point is the Manager view’s 自动化 tab, rendered by AutoManagerPanel.
When
autoDiscovery is enabled, the plugin runs discovery on startup and also checks every 30 minutes whether autoCheckInterval has elapsed.Defaults
| Field | Default | Meaning |
|---|---|---|
autoDiscovery | false | background discovery enabled or disabled |
autoMatchStrategy | comprehensive | scoring strategy |
autoApply | false | apply immediately after a match or stop at review |
autoCheckInterval | 24 | interval in hours; 0 disables scheduled checks |
autoTrustedRepos | [] | trusted repositories |
autoExcludeList | [] | excluded plugin IDs |
autoScanMode | incremental | scan mode |
Turn it on
Match scoring
When multiple cloud translations exist for the same target,autoMatchStrategy rescoring picks the highest score. The current implementation builds the base score from:
- version compatibility: up to 50 points
- popularity: up to 30 points
- freshness: up to 20 points
- exact
supported_versionsmatch: 100 - same major version: 50
- anything else: 0
comprehensive (default)
comprehensive (default)
total = version + popularity + freshness
version_first
version_first
total =
1.5 × version + 0.5 × popularity + 0.5 × freshness, capped at 100popularity
popularity
total =
0.5 × version + 1.5 × popularity + 0.5 × freshness, capped at 100latest_update
latest_update
total =
0.5 × version + 0.5 × popularity + 1.5 × freshness, capped at 100Auto-apply
By default the discovery flow keeps matches in a reviewable task list. WhenautoApply is enabled, successful matches continue into the download and apply path instead of stopping at review.