add-extension-settings Skill
Add a settings page to your Command Palette extension. Use when asked to add settings, preferences, configuration options, toggles, text inputs, dropdowns, or user-customizable behavior. Covers ToggleSetting, TextSetting, ChoiceSetSetting, and persistence. Published by microsoft in PowerToys.
What is add-extension-settings Skill?
Add a settings page to your Command Palette extension. Use when asked to add settings, preferences, configuration options, toggles, text inputs, dropdowns, or user-customizable behavior. Covers ToggleSetting, TextSetting, ChoiceSetSetting, and persistence. Published by microsoft in PowerToys. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Developers using PowerToys
Technical details
- Install or run with Copy skill directory
When to use add-extension-settings Skill
- Use it for developers using powertoys.
Built with
Editorial notes
Source
- Creator: microsoft
- Repository: microsoft/PowerToys
- Skill file: src/modules/cmdpal/ExtensionTemplate/TemplateCmdPalExtension/.github/skills/add-extension-settings/SKILL.md
What it does
Add a settings page to your Command Palette extension. Use when asked to add settings, preferences, configuration options, toggles, text inputs, dropdowns, or user-customizable behavior. Covers ToggleSetting, TextSetting, ChoiceSetSetting, and persistence.
Skill instructions
Add Extension Settings Add a settings page to your Command Palette extension using the built-in settings helpers. Settings are automatically persisted and restored by the extension host. When to Use This Skill - Adding user-configurable options to your extension - Creating toggle switches for features - Adding text input fields for configuration - Creating dropdown menus for option selection - Persisting user preferences across sessions Quick Start Step 1: Create a Settings Manager Create a new file SettingsManager.cs: csharp using Microsoft.CommandPalette.Extensions; using Microsoft.CommandPalette.Extensions.Toolkit; namespace YourExtension; internal sealed class SettingsManager { private readonly Settings settings; public SettingsManager() { settings = new Settings(); var maxResults = new TextSetting( "maxResults", "Maximum Results", "Maximum number of results to display", "10"); var showSubtitles = new ToggleSetting( "showSubtitles", "Show Subtitles", "Display subtitle text under ea
Explore related resources
Frequently asked questions
What is add-extension-settings?
add-extension-settings is a open-source AI agent skill with Copy skill directory. Add a settings page to your Command Palette extension. Use when asked to add settings, preferences, configuration options, toggles, text inputs, dropdowns, or user-customizable behavior.
Who is add-extension-settings best for?
add-extension-settings is best for reusing agent instructions, scripts, and references.
How do I install add-extension-settings?
Install or run add-extension-settings using Copy skill directory. Check add-extension-settings for the latest setup command.
Is add-extension-settings actively maintained?
add-extension-settings may need a closer maintenance check before production use.
Auto-fetched from GitHub.