| name | syn-marketplace |
| description | Browse, install, update, export, and publish Syntropic137 workflows via GitHub repositories; the self-hosted workflow marketplace |
| argument-hint | <list|add|install|installed|update|remove|export|publish> [args] |
| model | sonnet |
/syn-marketplace: Workflow Marketplace
Use this skill when you need to find, install, or share workflow plugins. The Syntropic137 marketplace is distributed: workflows live in GitHub repos, not a central registry. You register a repo as a source, then install individual workflows from it.
When to Use This
Use /syn-marketplace when you want to: browse workflows available in registered sources, install a community workflow, update installed plugins to the latest version, export one of your workflows to share, or register a new source repo.
For the security model behind plugin installation (what to check before installing third-party workflows, and why allowed_tools declarations are NOT a control), the marketplace skill has the full guide.
The Distributed Marketplace Model
There is no central registry. Anyone can create a marketplace by making a GitHub repo with workflow YAML files. You register repos you trust, browse their contents, and install specific workflows.
The official Syntropic137 marketplace is syntropic137/syntropic137-marketplace; it includes code-review and sdlc-trunk (3 workflows for PR review, CI self-healing, release prep).
Before installing third-party plugins: review the phase prompts in phases/*.md. That is the real review - plugins execute with full agent permissions regardless of what allowed_tools declares, because it is not enforced at runtime (syntropic137#803).
Core Commands
syn marketplace add syntropic137/syntropic137-marketplace
syn marketplace add yourorg/your-marketplace
syn marketplace list
syn marketplace remove <name>
syn marketplace refresh
syn workflow search "code review"
syn workflow search ""
syn workflow info code-review
syn workflow install code-review
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
syn workflow export <workflow-id>
syn workflow export <workflow-id> --output ./workflow.yaml
Common Scenarios
"Set up the official Syntropic137 workflows."
syn marketplace add syntropic137/syntropic137-marketplace
syn workflow install code-review
syn workflow install sdlc-trunk
syn workflow list to verify 4 workflows are registered
- Set up trigger rules: see
/syn-triggers
"I built a workflow and want to share it with my team."
syn workflow export <workflow-id> --output ./my-workflow.yaml
- Add the YAML to a
workflows/ directory in a GitHub repo
- Push the repo
- Team members:
syn marketplace add yourorg/your-repo → syn workflow install my-workflow
"I want to check what's installed before running anything."
syn workflow packages lists workflow packages pulled from the marketplace, with their source. It reads LOCAL CLI history (~/.syntropic137/workflows/installed.json), not the running stack - use syn workflow list for what is actually on the stack.
Errors
On API errors, run /syn-health. For full security guidance on plugin installation, see the marketplace skill.