-
Notifications
You must be signed in to change notification settings - Fork 0
Plugin SDK
Jnyananjan edited this page Jun 10, 2026
·
1 revision
TechyPad allows developers to create custom plugins using scripts (like Python, PowerShell, or Bash). This lets you connect TechyPad to any software that provides an API or local interface, without needing to compile complex C++ code.
To create a new plugin, you don't need to reinvent the wheel. We provide a central Plugin SDK repository with templates.
-
Fork the SDK: Fork the official SDK repository to your personal GitHub account:
https://github.com/Jnyananjan/techypad-plugins-sdk - Clone: Clone your forked repository to your local machine.
- Copy the
templates/script-pluginfolder into a new subfolder underplugins/matching your desired identifier (e.g.plugins/com.yourname.myplugin). - Customize the
manifest.jsonfile to define your plugin's actions and name. - Write your operational code inside
run.py(or your chosen script).
You must turn on Developer Options before you can sideload and test your unverified plugins locally.
- Open the TechyPad Desktop App.
- Go to Settings and toggle Developer Mode ON. This permits local execution of unencrypted dev scripts.
- Copy your new plugin folder directly into your installed TechyPad
plugins/directory. - The system will instantly load, register, and activate your plugin without needing a restart!
For full API specifications, JSON manifest documentation, and submission guidelines, please read the README.md and the TechyPad_Plugin_Developer_Guide.pdf inside the techypad-plugins-sdk repository.