A

MCP Server Knowledge Modules

Autonomous Agents Knowledge Modules

3 domain knowledge modules for AI coding agents to operate Autonomous Agents.

Available free v1.2.0 Browser
$ sidebutton install agents
Download ZIP

Autonomous Agents knowledge modules

3

Agent Plugin Catalog

50%

Plugins are small packages the SideButton MCP server loads from ~/.sidebutton/plugins/ and exposes as extra MCP tools. The catalogue lives in agent-runners/plugins.json (validated against plugins.schema.json) and is vendored by the portal to label the plugin chips it shows per agent. Each plugins.json entry maps a slug → public git repo (+ ref, submodules, system_deps).At provision time the portal forwards SIDEBUTTON_PLUGINS = a profile's default_plugins ∪ any provision-request override (see [[runners]] for profiles).base/19b-plugins.sh runs after 19-secrets.sh, clones the requested slugs into ~/.sidebutton/plugins/, then systemctl restart sidebutton so the server loads the new plugins together with the now-populated ~/.agent-env.Plugins only apply to variants that ship a server (ext, noext) — never the bare variant.The agent reports loaded plugins on GET /health (plugins[]); the portal fleet list + agent detail render those chips. A plugin folder contains a plugin.json manifest plus handler scripts the server shells out to (e.g. screen-record/handlers/{start,stop,list}_recording.sh). Tools surface in MCP tools/list once the server restarts. A plugin that needs a secret (e.g. writing-quality → ANTHROPIC_API_KEY) is useless until 19b restarts the server after secrets land — order matters.system_deps in a plugin entry are apt packages installed before the clone; a missing dep makes the tool load but fail at call time.The bare (ubuntu-claude-code) variant has no server, so SIDEBUTTON_PLUGINS is ignored there.Code-first module — verify the live catalogue against plugins.json at the pinned RUNNERS_REF before relying on a specific slug. See [[runners]] for how SIDEBUTTON_PLUGINS is wired through profiles and the provisioning pipeline.

Verified 2026-06-03

Agent VM Provisioning

55%

How a SideButton agent VM is built. The agent-runners repo is a thin bootstrapper + a shared base/ set of ordered step scripts + per-variant overlays. It is also the single source of truth for what the Fleet Control portal displays for each variant + profile + plugin (the portal vendors these manifests rather than hardcoding). Production agents are provisioned by piping https://sidebutton.com/install.sh to bash. That thin bootstrapper resolves AGENT_RUNNER (variant) + RUNNERS_REF (git ref), downloads this repo at the requested ref, and hands off to base/run.sh, which sources the base/NN-*.sh steps in order. install.sh at the repo root is the direct entry point that dispatches to base/run.sh. A variant = a VM image recipe. kind drives portal status dots; display is the fleet-list fallback when a row has no profile. New variant = drop a folder under variants/<name>/ (≥ a manifest.json, optional pre-services / post-services / early-setup hooks) + an entry in variants.json. The product-level catalogue the Create-Agent wizard offers. Each profile picks a runner variant + default_roles + default_plugins. aliases maps renamed slugs so already-provisioned agents keep resolving (e.g. claude-code-headless → swe-native).

Verified 2026-06-03

Fleet Operations

90%

Operational workflows for autonomous agent fleets: repo management, environment updates, QA validation, SE implementation, PM planning and sprint management, SD coverage improvement, public data collection. agent_collect_source collects structured data from any public URL. It's a two-step workflow: Claude loads platform skill packs, navigates to the source, extracts items, saves JSON to /tmp/collect_result.jsoncurl POSTs the file to the callback_url with agent auth headers, then cleans up The curl step sends: Authorization: Bearer $SIDEBUTTON_AGENT_TOKEN — standard agent token from ~/.agent-envX-Agent-Name: $SIDEBUTTON_AGENT_NAME — agent identifier for tracing The receiving API validates the token and records the agent name.