Skip to content

Marketplace & Plugins Overview

The Sartiq Marketplace is the central hub for shared Claude Code plugins. Install once and get task workflows, code review, issue management, research tools, and more.


Quick Setup

# 1. Register the marketplace (user-level, one-time)
/plugin marketplace add shootify-io/claude-marketplace

# 2. Install the core developer plugin
/plugin install sq-dev@sartiq-marketplace

# 3. Run onboarding (installs LSP binaries, checks prerequisites, configures tokens)
/sq-dev:setup

After setup completes, restart Claude Code for MCP servers and LSP servers to activate.


Plugin Catalog

Plugin Version Category What It Does Install
sq-dev 0.9.0 Development Task workflow, code review pipeline, commit/PR helpers, auto-format, simplify, LSP, MCP integrations /plugin install sq-dev
sq-scrum 0.1.0 Project Management Guided issue creation, editing, bulk text-to-issues, batch YouTrack operations /plugin install sq-scrum
sq-research 0.5.0 Research ML topic deep-dives, concept verification, audio transcription, prompt enhancement /plugin install sq-research
plugin-dev 0.2.0 Contributor Tools Extension/plugin creation, architecture guide, structure validator /plugin install plugin-dev

All plugins install from @sartiq-marketplace (e.g. /plugin install sq-research@sartiq-marketplace).


Which Plugins for Your Role

Role / Use Case Install These Why
Any developer sq-dev Core workflow: tasks, commits, PRs, code review, LSP
Sprint planning / issue management sq-dev + sq-scrum Adds guided issue creation, bulk updates
ML / research work sq-dev + sq-research Adds topic research, paper analysis, concept validation
Marketplace contributor sq-dev + plugin-dev Adds extension/plugin creation tools
Full stack (recommended) All four Complete tooling coverage

sq-dev

Core developer tools for the daily workflow.

  • 17 skills · 2 agents · 3 MCP servers · 2 LSP servers · 1 hook
  • Task lifecycle (start-task, close-task), commit helpers (make-commit, commit-conventions), PR creation (create-pr)
  • Multi-dimensional code review: full-review orchestrates code-check, code-review, and simplify-review
  • Language-specific simplification: simplify-typescript, simplify-python, simplify-staged
  • solve-conflicts, dep-audit, test-processor, project-summary
  • MCP: YouTrack, Sartiq Docs, Context7 · LSP: TypeScript, Python (Pyright)

See full sq-dev docs · Code Review Pipeline


sq-scrum

Sprint and issue management tools for project leads.

  • 4 skills · 1 MCP server (YouTrack)
  • create-issue — guided creation with smart defaults (Priority: Normal, State: Open, Category: inferred from project)
  • edit-issue — view and selectively update any fields on an existing issue
  • draft-to-issues — parse free-form text (meeting notes, Slack threads) into structured issues
  • batch-update — bulk YouTrack operations via REST API (field updates, moves, sprint management)

See full sq-scrum docs


sq-research

ML research and validation tools.

  • 6 skills · 2 agents
  • ml-research — deep-dive into ML topics using web search and autonomous research agents
  • ml-verify — validate ML concepts, math, and logic in code or text
  • research-insights — summarize and extract key insights from papers, articles, and docs
  • assembly-transcribe — transcribe audio/video files using AssemblyAI (requires ASSEMBLYAI_API_KEY)
  • nb2-prompt-enhancer — optimize prompts for Google Nano Banana 2 image generation
  • port-to-cs — port code to compute server patterns

See full sq-research docs


plugin-dev

Contributor tools for building and validating marketplace extensions.

  • 4 skills · 1 agent
  • guide — reference documentation for marketplace architecture and conventions
  • create-extension — interactive workflow to create a new extension (skill, agent, hook, MCP, or LSP)
  • create-plugin — compose a new plugin bundle from existing extensions
  • port-extension — port an extension between plugins
  • validator agent — validates plugin structure, symlinks, JSON configs, registration, and security

See full plugin-dev docs


Environment Setup

Plugins that connect to external services need tokens stored in ~/.config/sartiq/marketplace.env:

Variable Required By Purpose Where to Get It
SARTIQ_YOUTRACK_USER_TOKEN sq-dev, sq-scrum YouTrack MCP access YouTrack profile → Authentication → New token
SARTIQ_DOCS_TOKEN sq-dev Sartiq Docs MCP access Get from your team lead or docs platform admin
ASSEMBLYAI_API_KEY sq-research (optional) Audio/video transcription AssemblyAI dashboard

The /sq-dev:setup skill walks you through this interactively. It never asks you to paste tokens in the chat.

Shell Auto-Loading

Add to your shell profile so tokens are available in every session:

# Bash (Linux/WSL)
echo 'source ~/.config/sartiq/marketplace.env' >> ~/.bashrc

# Zsh
echo 'source ~/.config/sartiq/marketplace.env' >> ~/.zshrc

# Fish
cp setup/sartiq-marketplace.fish ~/.config/fish/conf.d/

Restart required

After setting tokens, restart Claude Code. MCP servers read environment variables at startup.


Managing Plugins

/plugin list                              # List installed plugins
/plugin install <name>@<marketplace>      # Install a plugin
/plugin remove <name>                     # Remove a plugin
/plugin update                            # Update all plugins
/plugin marketplace add <source>          # Add a marketplace source

Other Marketplaces

Anthropic Official

The Anthropic marketplace is auto-available:

/plugin install document-skills@anthropic-agent-skills

Community Plugins

Add any GitHub repo or Git URL as a marketplace source:

/plugin marketplace add owner/repo
/plugin marketplace add https://gitlab.com/org/repo

Contributing

  1. Install the plugin-dev plugin
  2. Use /plugin-dev:create-extension or /plugin-dev:create-plugin
  3. Run the plugin-validator agent to verify
  4. Submit a PR to shootify-io/claude-marketplace

See the marketplace README for full contributor guidelines.