Skip to content

siddsachar/row-bot-plugins

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Row-Bot Plugins

This repository is the first-party marketplace catalog for Row-Bot Plugin System v2. A plugin can add only these supported surfaces:

  • Native Row-Bot tools
  • Plugin-packaged MCP-backed tools
  • Bundled plugin skills
  • Channels

Row-Bot renders one native Plugin Center for every plugin. Plugins declare metadata, permissions, settings, secrets, auth, health checks, tools, channels, skills, logs, and updates in plugin.json; they do not ship arbitrary custom UI.

Quick Start

Use adjacent checkouts while Plugin System v2 is under active development:

$Workspace = "$env:USERPROFILE\Code"
git clone https://github.com/siddsachar/row-bot.git "$Workspace\row-bot"
git clone https://github.com/siddsachar/row-bot-plugins.git "$Workspace\row-bot-plugins"
cd "$Workspace\row-bot"
git checkout main
uv sync --locked --all-extras --group test

Validate this marketplace repo from the Row-Bot checkout:

$env:ROW_BOT_SOURCE = "$Workspace\row-bot"
uv run python "$Workspace\row-bot-plugins\scripts\validate_repo.py" "$Workspace\row-bot-plugins"

Build or refresh the catalog index:

uv run python "$Workspace\row-bot-plugins\scripts\build_index.py" "$Workspace\row-bot-plugins" --source "https://github.com/siddsachar/row-bot-plugins"

Install from a local catalog while developing:

$env:ROW_BOT_PLUGIN_INDEX_URL = "$Workspace\row-bot-plugins\index.json"
uv run python launcher.py

Then open Settings -> Plugins -> Plugin Marketplace, install the plugin, review permissions, configure required settings/secrets/auth, run Test, and enable it. Installs must stay disabled until configured, tested, and explicitly enabled.

Repository Layout

row-bot-plugins/
  index.json                    # Marketplace catalog generated from plugins/
  plugins/                      # Installable plugins
  templates/                    # Starter plugin skeletons
  scripts/
    validate_plugin.py          # Validate one plugin directory
    validate_repo.py            # Validate plugins, templates, and index.json
    build_index.py              # Generate index.json
  docs/
    PLUGIN_AUTHOR_GUIDE.md
    MANIFEST_V2_REFERENCE.md
    VALIDATION_AND_CATALOG.md
    PLUGIN_REVIEW_CHECKLIST.md

Add A Plugin

  1. Copy the closest template from templates/ into plugins/<plugin-id>/.
  2. Rename ids, labels, descriptions, and tool/channel names.
  3. Define a small first MVP. Prefer read-only or draft-only behavior until the setup, auth, tests, permissions, and approval gates are clear.
  4. Declare every setting, secret, auth flow, permission, and health check in plugin.json.
  5. Add a plugin README that explains setup, provider scopes, manual/live checks, safety behavior, and known limitations.
  6. Implement only supported surfaces.
  7. Validate the plugin and the whole repo.
  8. Rebuild index.json.
  9. Test local install from the marketplace catalog.
  10. Open a PR with the checklist in .github/pull_request_template.md.

Detailed instructions live in docs/PLUGIN_AUTHOR_GUIDE.md.

Contributor Rules

  • Do not commit API keys, OAuth tokens, private local paths, real customer data, real messages, or generated logs.
  • Do not make default validation require live providers, live channels, live MCP servers, real network availability, or a local Ollama model.
  • Do not add unsupported extension surfaces such as provider plugins, custom NiceGUI panels, memory providers, workflow triggers, or general hooks.
  • Do not install plugin dependencies into Row-Bot's main environment.
  • Prefer deterministic fakes, dry-run modes, and local fixtures.
  • Make external-send, delete, publish, payment, refund, permission, and other mutate operations approval-aware before exposing them to agents.
  • Update index.json in the same PR as plugin changes.

See CONTRIBUTING.md and AGENTS.md before changing plugin code.

About

No description, website, or topics provided.

Resources

Contributing

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages