Marketplace for the decentralized Git Tracker
|
Some checks failed
Validate Manifests / validate (push) Has been cancelled
Update plugin marketplace with official ProGit organization URLs: - syntax-highlight: Updated to GitLab, runtime: rust - jira-sync: Updated to GitLab - csv-export: Updated to GitLab - slack-notify: Updated to GitLab, enhanced hooks - symbio-expert: NEW - AI expert delegation plugin All plugins now point to: https://git.maiwald.work/ProGit/progit-plugins.git This enables: - prog plugin search <name> - prog plugin install <name> - prog plugin list Phase 3 (Ecosystem) marketplace population complete. |
||
|---|---|---|
| .github/workflows | ||
| plugins | ||
| schema | ||
| categories.json | ||
| CONTRIBUTING.md | ||
| LICENSE | ||
| README.md | ||
ProGit Plugin Index
Official plugin registry for ProGit - the terminal-native issue tracker.
Structure
plugins/
├── integrations/ # External system sync (Jira, Linear, GitHub, etc.)
├── analytics/ # Metrics, reports, dashboards
└── utilities/ # Notifications, automation, misc
Installing Plugins
# Update local index
prog plugin index update
# Search for plugins
prog plugin search jira
# Install a plugin
prog plugin install jira-sync
# Install specific version
prog plugin install jira-sync@1.0.0
# Install from git URL directly
prog plugin install --git https://github.com/user/my-plugin.git
Adding Your Plugin
- Fork this repository
- Create a manifest in the appropriate category:
plugins/<category>/<your-plugin>.json - Submit a pull request
Manifest Format
{
"name": "my-plugin",
"version": "1.0.0",
"description": "What your plugin does",
"author": "Your Name",
"license": "Apache-2.0",
"plugin_type": "integration",
"runtime": "lua",
"source_url": "https://github.com/you/my-plugin.git",
"source_tag": "v1.0.0",
"sdk_version": ">=0.2.0"
}
License
Apache-2.0