Creating Plugins
Guide to creating custom plugins for SCC.
Plugin Structure
Section titled “Plugin Structure”my-plugin/├── manifest.json├── hooks/│ └── bash_guard.py└── README.mdManifest
Section titled “Manifest”{ "name": "my-plugin", "version": "1.0.0", "description": "My custom plugin", "hooks": { "bash": "hooks/bash_guard.py" }}Publishing
Section titled “Publishing”Host your plugin in a marketplace repository and reference it in your org config.
See the official plugins for examples.