stellaris-search
Search Stellaris documentation for triggers, effects, modifiers, scopes, or localizations. Retrieve code snippets matching a keyword with optional context lines for efficient modding.
Instructions
OldEnt/stellaris-triggers-modifiers-effects-listリポジトリからStellarisの最新バージョンのドキュメントを検索し、指定したキーワードに一致する箇所をコードスニペットとして返します。大きなファイルを効率的に検索できます。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contextLines | No | 一致した行の前後に表示するコンテキスト行数(デフォルト: 2) | |
docType | Yes | 検索するドキュメントの種類: triggers (条件), effects (効果), modifiers (修正値), scopes (スコープ), localizations (ローカライゼーション) | |
keyword | Yes | 検索するキーワード(英語推奨、大文字小文字区別なし) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"contextLines": {
"default": 2,
"description": "一致した行の前後に表示するコンテキスト行数(デフォルト: 2)",
"maximum": 10,
"minimum": 0,
"type": "number"
},
"docType": {
"description": "検索するドキュメントの種類: triggers (条件), effects (効果), modifiers (修正値), scopes (スコープ), localizations (ローカライゼーション)",
"enum": [
"triggers",
"effects",
"modifiers",
"scopes",
"localizations"
],
"type": "string"
},
"keyword": {
"description": "検索するキーワード(英語推奨、大文字小文字区別なし)",
"minLength": 1,
"type": "string"
}
},
"required": [
"docType",
"keyword"
],
"type": "object"
}