Skip to content

datasynx/claude-plugins

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Datasynx Claude Plugins

Official plugin marketplace by Datasynx AI for Claude Code. Install plugins — including slash commands, hooks, sub-agents, and MCP servers — with a single command.

Quick Start

# 1. Add this marketplace
/plugin marketplace add datasynx/claude-plugins

# 2. Install a plugin (syntax: <plugin>@<marketplace>)
/plugin install shadowing@datasynx

Or browse and install interactively with /plugin.

Available Plugins

Plugin Description
shadowing Observe your work, generate anonymized SOPs — task tracking, hooks and MCP tools, fully local.

How MCP Servers Are Integrated

Plugins ship their own MCP server definition (in .mcp.json), and Claude Code registers it automatically on install — no manual MCP configuration needed:

{
  "mcpServers": {
    "shadowing": {
      "command": "node",
      "args": ["${CLAUDE_PLUGIN_ROOT}/server/index.js"]
    }
  }
}

${CLAUDE_PLUGIN_ROOT} is replaced with the plugin's install path at load time. Run /mcp to check server status and the tools they expose.

Managing Plugins

Action Command
Update marketplace /plugin marketplace update datasynx
Disable / enable plugin /plugin disable <name>@datasynx · /plugin enable <name>@datasynx
Uninstall plugin /plugin uninstall <name>@datasynx
Check MCP servers /mcp

Contributing a Plugin

Add an entry to the plugins array in .claude-plugin/marketplace.json:

{
  "name": "my-plugin",
  "description": "What the plugin does.",
  "source": {
    "source": "git-subdir",
    "url": "https://github.com/datasynx/my-plugin.git",
    "path": "plugin"
  }
}

See the Claude Code docs for the full plugin structure.


Maintained by Datasynx AI · info@datasynx.de

About

datasynx claude-plugins

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors