What's wrong with this entry?
Plugins can now declare user-configurable options in their manifest via a userConfig schema, with typed fields, defaults, and secure storage for sensitive values.
- Plugin manifests can include a
userConfigblock with named options of typestring,number,boolean,directory, orfile - Each option supports
title,description,required,default,sensitive,min/max, andmultiplefields - Option keys must be valid identifiers — they become
CLAUDE_PLUGIN_OPTION_<KEY>environment variables in hooks - Sensitive values are stored in secure storage (macOS keychain or
.credentials.json), non-sensitive values insettings.json - Available as
${user_config.KEY}in MCP/LSP server config, hook commands, and (non-sensitive only) skill/agent content
Plugin options schema and env var injection (search for "CLAUDE_PLUGIN_OPTION_", "User-configurable values this plugin needs")
Strings lifted out of the shipped bundle, so the claim above can be checked against them.
Related
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.