← ClaudeAtlas

settingslisted

Read and change the two slide-forge switches in config/settings.json through a short multiple-choice dialogue: whether Gemini generates images at all, and whether the deliverable is Google Drive / Slides or a local folder of .pptx. Use for: 設定を変えたい, 設定を確認して, 画像生成をオフにして, 出力先をローカルにして, PowerPoint で出したい, Google Drive に出したい. Not: OAuth credentials and API keys, which are never read or written here; the Drive sales root in config/sales.json (scalar-account-plan); per-deck choices such as QA or template selection, which stay in intake; exporting an existing deck (pptx-export).
wfukatsu/slide-forge · ★ 2 · Data & Documents · score 66
Install: claude install-skill wfukatsu/slide-forge
*[日本語](SKILL.ja.md)* # slide-forge Settings Two switches live in `config/settings.json` and apply to every run, so they are settled here once instead of being asked at every intake. The reference is `references/settings.md`; this skill is the dialogue around it. | Key | Values | Effect | |---|---|---| | `imageGeneration` | `true` / `false` | `false` refuses `aiImage` figures, `scripts/images.py`, and `fill_image_slots.py` — offline, before any quota is spent | | `output` | `"google"` / `"local"` | `local` exports the deck to `.pptx` under `localOutputDir` after every generation | | `localOutputDir` | path | where that `.pptx` goes (default `out/pptx`; relative to the repo root) | ## Important - **Never touch anything else in `config/`.** `credentials.json`, `token.json`, and `gemini_api_key` are secrets; this skill only reads and writes `settings.json`, and never prints a key or token. - **Show before you change, and read back after.** Every run starts with `--show` and ends with `--show`, so the user sees what changed. - **Don't ask what the user already said.** "画像生成をオフにして" is a complete instruction — apply it, report it, and only ask about the other switch if they asked to review settings generally. - **A change never touches an existing deck.** It affects the next generation. Say so when the user is mid-workflow. - **Run every command from the slide-forge root as cwd** — `${CLAUDE_PLUGIN_ROOT}` when running from an installed plugin, `/path/to/slide-forg