From syntropic137
Search, install, and manage Syntropic137 workflow plugins from marketplace registries; browse available workflows, review before installing, manage registry sources
How this skill is triggered — by the user, by Claude, or both
Slash command
/syntropic137:marketplaceThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this knowledge when the user wants to browse, install, or manage workflow plugins from marketplace registries, or set up a new marketplace source.
Use this knowledge when the user wants to browse, install, or manage workflow plugins from marketplace registries, or set up a new marketplace source.
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.
Marketplaces are registered locally and their indexes are cached (4-hour TTL).
# Register the default marketplace
syn marketplace add syntropic137/syntropic137-marketplace
# Register a third-party marketplace
syn marketplace add yourorg/your-marketplace
# List registered marketplaces
syn marketplace list
# Remove a marketplace
syn marketplace remove <name>
# Force refresh cached indexes
syn marketplace refresh
# Search across all registered marketplaces
syn workflow search "code review"
syn workflow search "deployment"
syn workflow search "" # Browse all available
# Get details about a specific plugin before installing
syn workflow info code-review
syn workflow info sdlc-trunk
Plugins can be installed by name (from a registered marketplace) or directly from a Git URL:
# Install from registered marketplace (by name)
syn workflow install code-review
syn workflow install sdlc-trunk
# Install directly from a GitHub repo
syn workflow install github.com/yourorg/your-plugin
# Install from a local directory (for development)
syn workflow install ./path/to/plugin
# List installed plugins
syn workflow installed
# Update an installed plugin
syn workflow update code-review
# Remove a plugin
syn workflow uninstall code-review
syntropic137-plugin.json manifestworkflow.yaml against the platform schemaphases/*.md) inlinesyn workflow list to confirm installed workflows appearsyn triggers registersyn workflow run <workflow-id> --input key=valueThe CLI validates workflow definitions against the platform's schema during install. You can also validate manually:
syn workflow validate ./path/to/workflow.yaml
Before installing plugins from third-party marketplaces:
phases/*.md filesallowed_tools declarations in workflow definitions. Be cautious of plugins requesting broad tool access (especially edit and bash) without clear justificationPlugins execute with the same permissions as any workflow on your platform. Treat third-party plugins like any other code dependency: review before installing.
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 |
# Register and install everything
syn marketplace add syntropic137/syntropic137-marketplace
syn workflow install code-review
syn workflow install sdlc-trunk
syn workflow list # Verify: 4 workflows created
syn marketplace add syntropic137/syntropic137-marketplacesyn workflow install code-review && syn workflow install sdlc-trunksyn workflow listsyn workflow search "review"syn workflow info code-reviewsyn workflow install code-reviewsyn workflow installed
syn workflow uninstall code-review
npx claudepluginhub syntropic137/syntropic137-claude-plugin --plugin syntropic137Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.