Marketplace for the decentralized Git Tracker
Find a file
Markus Maiwald c0da5326b7
Some checks failed
Validate Manifests / validate (push) Has been cancelled
feat: update all plugins to point to ProGit GitLab
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.
2026-01-30 13:14:55 +01:00
.github/workflows Initial plugin registry commit with example plugins 2026-01-30 12:46:53 +01:00
plugins feat: update all plugins to point to ProGit GitLab 2026-01-30 13:14:55 +01:00
schema Initial plugin registry commit with example plugins 2026-01-30 12:46:53 +01:00
categories.json Initial plugin registry commit with example plugins 2026-01-30 12:46:53 +01:00
CONTRIBUTING.md Initial plugin registry commit with example plugins 2026-01-30 12:46:53 +01:00
LICENSE Initial plugin registry commit with example plugins 2026-01-30 12:46:53 +01:00
README.md Initial plugin registry commit with example plugins 2026-01-30 12:46:53 +01:00

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

  1. Fork this repository
  2. Create a manifest in the appropriate category:
    plugins/<category>/<your-plugin>.json
    
  3. 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