source dump of claude code
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 23 lines 843 B view raw
1/** 2 * Built-in Plugin Initialization 3 * 4 * Initializes built-in plugins that ship with the CLI and appear in the 5 * /plugin UI for users to enable/disable. 6 * 7 * Not all bundled features should be built-in plugins — use this for 8 * features that users should be able to explicitly enable/disable. For 9 * features with complex setup or automatic-enabling logic (e.g. 10 * claude-in-chrome), use src/skills/bundled/ instead. 11 * 12 * To add a new built-in plugin: 13 * 1. Import registerBuiltinPlugin from '../builtinPlugins.js' 14 * 2. Call registerBuiltinPlugin() with the plugin definition here 15 */ 16 17/** 18 * Initialize built-in plugins. Called during CLI startup. 19 */ 20export function initBuiltinPlugins(): void { 21 // No built-in plugins registered yet — this is the scaffolding for 22 // migrating bundled skills that should be user-toggleable. 23}