Skip to content

DynamoDS/dynamo-agent-plugins

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dynamo Agent Plugins

A plugin marketplace for the DynamoDS organization.

Plugins

A plugin is a self-contained directory that can bundle any combination of components:

Component Description
Skills /plugin:skill-name shortcuts Claude can invoke automatically
Agents Specialized subagents for specific tasks
Hooks Lifecycle event handlers (e.g. PreToolUse, SessionStart)
MCP Servers Model Context Protocol servers started automatically with the plugin
LSP Servers Language Server Protocol servers for real-time code intelligence
Executables Binaries added to the Bash tool's PATH
Settings Default configuration applied when the plugin is enabled

Usage

Claude Code

📖 Plugin documentation

1. Add the marketplace (one-time setup):

/plugin marketplace add DynamoDS/dynamo-agent-plugins

2. Install plugins:

/plugin install dynamo-dotnet@dynamo-agent-plugins

3. Use the plugin:

Once installed, plugin components activate automatically based on context. You can also invoke skills directly:

/dynamo-dotnet:<skill-name>

Updating:

/plugin update dynamo-dotnet

Load all plugins directly (without going through the marketplace):

claude --plugin-dir /path/to/dynamo-agent-plugins

GitHub Copilot CLI

📖 Plugin documentation

1. Add the marketplace (one-time setup):

copilot plugin marketplace add DynamoDS/dynamo-agent-plugins

2. Install plugins:

copilot plugin install dynamo-dotnet@dynamo-agent-plugins

Updating:

copilot plugin update dynamo-dotnet

VS Code

📖 Plugin documentation

Option A — via marketplace setting:

Add to your VS Code settings.json:

"chat.plugins.marketplaces": [
  { "url": "https://github.com/DynamoDS/dynamo-agent-plugins" }
]

Then install from the Extensions view using the @agentPlugins filter.

Option B — install directly from source:

Open the Command Palette and run Chat: Install Plugin From Source, then point it at this repository.

Cursor

📖 Plugin documentation

Requires a Teams or Enterprise plan. An admin sets up the team marketplace once, after which developers can install plugins from the marketplace panel.

Admin setup (one-time):

  1. Go to Dashboard → Settings → Plugins
  2. Under Team Marketplaces, click Import
  3. Paste https://github.com/DynamoDS/dynamo-agent-plugins and continue
  4. Review the parsed plugins, set access groups if needed, then save

Developers: open the marketplace panel in Cursor and install plugins from the DynamoDS marketplace.

Contributing

See CONTRIBUTING.md.