| name | marketplace |
| description | Search, install, and manage Syntropic137 workflow plugins from marketplace registries; browse available workflows, review before installing, manage registry sources |
Marketplace: Syntropic137
Use this knowledge when the user wants to browse, install, or manage workflow plugins from marketplace registries, or set up a new marketplace source.
What is a Marketplace?
A marketplace is a GitHub repository containing validated Syntropic137 workflow plugins. Each plugin packages one or more workflows with optional trigger examples. The syn CLI can register marketplace repos, search their indexes, and install plugins.
The default Syntropic137 marketplace is syntropic137/syntropic137-marketplace.
Registry Management
Marketplaces are registered locally and their indexes are cached (4-hour TTL).
syn marketplace add syntropic137/syntropic137-marketplace
syn marketplace add yourorg/your-marketplace
syn marketplace list
syn marketplace remove <name>
syn marketplace refresh
Browsing Workflows
syn workflow search "code review"
syn workflow search "deployment"
syn workflow search ""
syn workflow info code-review
syn workflow info sdlc-trunk
Installing Plugins
Plugins can be installed by name (from a registered marketplace) or directly from a Git URL:
syn workflow install code-review
syn workflow install sdlc-trunk
syn workflow install github.com/yourorg/your-plugin
syn workflow install ./path/to/plugin
syn workflow packages
syn workflow update code-review
syn workflow uninstall code-review
What Happens During Install
- CLI resolves the source (marketplace index, Git clone, or local path)
- Reads
syntropic137-plugin.json manifest
- Parses and validates each
workflow.yaml against the platform schema
- Resolves all phase prompt files (
phases/*.md) inline
- POSTs each workflow to the API
- Records the installation locally
After Installing
- Verify with
syn workflow list to confirm installed workflows appear
- Trigger definitions in plugins are examples only: they show which GitHub events and conditions are relevant, but users set up triggers manually with
syn triggers register
- Run a workflow:
syn workflow run <workflow-id> --input key=value
Validation
The CLI validates workflow definitions against the platform's schema during install. You can also validate manually:
syn workflow validate ./path/to/workflow.yaml
Security Considerations
Before installing plugins from third-party marketplaces:
- Review the source: plugins contain phase prompts that instruct agents. Check for suspicious patterns in
phases/*.md files
- Do NOT rely on
allowed_tools as a security control: it is declarative intent, not enforcement. Phase tool restrictions are not applied at runtime (syntropic137#803), so a plugin declaring a narrow tool list runs with the same access as one declaring none. Read the phase prompts instead - they are what actually determines what the agent does.
- Use the security-reviewer agent: ask Claude to review a marketplace or plugin for security before installing
Plugins execute with the same permissions as any workflow on your platform. Treat third-party plugins like any other code dependency: review before installing.
The Default Marketplace
The official Syntropic137 marketplace (syntropic137/syntropic137-marketplace) includes:
| Plugin | Workflows | Description |
|---|
code-review | 1 | AI-powered PR code review |
sdlc-trunk | 3 | Full trunk-based dev lifecycle: PR review, CI self-healing, release prep |
Quick Start
syn marketplace add syntropic137/syntropic137-marketplace
syn workflow install code-review
syn workflow install sdlc-trunk
syn workflow list
Common Scenarios
"Set up the default marketplace workflows"
- Register the marketplace:
syn marketplace add syntropic137/syntropic137-marketplace
- Install plugins:
syn workflow install code-review && syn workflow install sdlc-trunk
- Verify:
syn workflow list
- Set up triggers as needed: see the github-automation skill
"Find a workflow for PR reviews"
- Search:
syn workflow search "review"
- Inspect:
syn workflow info code-review
- Install:
syn workflow install code-review
"What plugins do I have installed?"
syn workflow packages
"Remove a plugin I no longer need"
syn workflow uninstall code-review