cwtools-config
Retrieve Stellaris config rules (.cwt files) for modding, including specific files or entire directories from stable or development versions. Supports listing files for quick reference.
Instructions
CWToolsのStellarisコンフィグルール(.cwt files)を取得します。最新の安定版または開発版から、config/直下およびサブディレクトリ(common/等)内の特定のファイルまたは全ファイルを取得できます。
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| file | No | 取得する特定の.cwtファイル名またはパス (例: common.cwt, common/agreements.cwt) | |
| listOnly | No | ファイル一覧のみを表示する場合はtrue | |
| version | No | 取得するバージョン: stable (最新タグ) または latest (開発版) | stable | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "file": {
      "description": "取得する特定の.cwtファイル名またはパス (例: common.cwt, common/agreements.cwt)",
      "type": "string"
    },
    "listOnly": {
      "default": false,
      "description": "ファイル一覧のみを表示する場合はtrue",
      "type": "boolean"
    },
    "version": {
      "default": "stable",
      "description": "取得するバージョン: stable (最新タグ) または latest (開発版)",
      "enum": [
        "stable",
        "latest"
      ],
      "type": "string"
    }
  },
  "type": "object"
}