Skip to content

Creating Plugins

Guide to creating custom plugins for SCC.

my-plugin/
├── manifest.json
├── hooks/
│ └── bash_guard.py
└── README.md
{
"name": "my-plugin",
"version": "1.0.0",
"description": "My custom plugin",
"hooks": {
"bash": "hooks/bash_guard.py"
}
}

Host your plugin in a marketplace repository and reference it in your org config.

See the official plugins for examples.