Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Settings

ASecurity

Read and change the two slide-forge switches in config/settings.json: 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, 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 ...

2 stars
0 votes
0 copies
1 views
Added 9/19/2026
developmentpythongobashapi

Works with

api

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add wfukatsu/slide-forge --skill settings --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Settings?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Settings
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/wfukatsu-settings/badge)](https://www.skillsdirectory.com/skills/wfukatsu-settings)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: settings
description: >-
  Read and change the two slide-forge switches in config/settings.json:
  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, 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).
---

*[日本語](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-forge` on a local clone.

## Quick Reference

| Task | Command |
|------|---------|
| Show current values and where they come from | `.venv/bin/python scripts/settings.py --show` |
| Machine-readable | `.venv/bin/python scripts/settings.py --json` |
| Image generation off / on | `… scripts/settings.py --image-generation off` / `on` |
| Deliverable to a local `.pptx` | `… scripts/settings.py --output local` |
| Deliverable to Drive / Slides | `… scripts/settings.py --output google` |
| Change the local folder | `… scripts/settings.py --local-dir ~/decks` |

Flags combine in one call. Precedence, weakest first: defaults →
`config/settings.json` → `GSLIDES_IMAGE_GENERATION` / `GSLIDES_OUTPUT` /
`GSLIDES_LOCAL_DIR` → `build_deck.py --output`. If `--show` reports an
environment override, say so — the file the user is editing is not what that
run will use.

## Workflow

1. **Show the current values**, and quote them in the question descriptions so
   the user is choosing against a known state:

   ```bash
   .venv/bin/python scripts/settings.py --show
   ```

2. **Ask with `AskUserQuestion`** — one round, both switches, current value
   marked. Ask only about switches the user has not already decided:

   ```json
   {
     "questions": [
       {
         "header": "画像生成",
         "question": "Gemini による画像生成を使いますか?",
         "multiSelect": false,
         "options": [
           {"label": "使う(現在の設定)", "description": "aiImage 図・images.py・image-slots が使える。課金済みの GEMINI_API_KEY が要る(画像モデルは無料枠クォータが 0)"},
           {"label": "使わない", "description": "AI 画像を一切生成しない。aiImage は検証時に弾かれ、代わりに図形で描く illustrations / patterns を使う。API キーは不要"}
         ]
       },
       {
         "header": "出力先",
         "question": "成果物をどこに出しますか?",
         "multiSelect": false,
         "options": [
           {"label": "Google Drive / Google Slides(現在の設定)", "description": "生成したデッキの URL が成果物。共同編集・コメントができる。PPTX が要るときは pptx-export で個別に書き出す"},
           {"label": "ローカルフォルダ / PowerPoint", "description": "生成のたびに out/pptx へ .pptx を書き出す。デッキ自体は編集可能な原本として Drive に残る(削除はしない)"}
         ]
       }
     ]
   }
   ```

   Put the **current value first and label it 現在の設定**, so the safe answer
   is the top option. When "ローカルフォルダ" is chosen and the folder should
   not be `out/pptx`, ask the path in a follow-up question — the free-text
   "Other" answer is the path.

3. **Apply**, combining every change into one call:

   ```bash
   .venv/bin/python scripts/settings.py --image-generation off --output local
   ```

4. **Read back and report** — the file path, the resulting values, and what
   changes in practice. Two consequences are worth stating explicitly:

   - image generation off → propose `illustrations` / `patterns` /
     `diagrams` for visuals from now on; specs carrying `aiImage` will fail
     offline validation until they are rewritten;
   - output local → the PPTX question disappears from intake, generation
     prints a local path next to the deck URL, and visual QA still runs
     against the Slides deck (export is a snapshot: QA first, then export).

## When another skill sends the user here

The generation skills read these settings at intake
(`references/interactive-intake.md`) and drop the questions the settings
already answer. When a user asks to change one mid-workflow, run this skill,
then continue the interrupted workflow with the new values — no regeneration is
needed unless the deck was already built.

Attribution

wfukatsuwfukatsu
View sourceMore from wfukatsu →
SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

284722 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2192 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →