| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Official plugin repository for Super Agent CLI.
Extend your Super Agent CLI with custom tools, integrations, and capabilities through a simple plugin system.
See QUICKSTART.md for a step-by-step guide to creating your first plugin.
Explore fully-functional example plugins in the examples/ directory:
Get started quickly with our templates in the templates/ directory:
All plugins must export a SuperAgentPlugin object:
export interface SuperAgentPlugin {
name: string; // Unique plugin identifier
version: string; // Semantic version
description?: string; // Human-readable description
tools?: SuperAgentTool[]; // Tools provided by this plugin
onInit?: (context: PluginContext) => Promise<void>;
onShutdown?: () => Promise<void>;
}export interface SuperAgentTool {
type: "function";
function: {
name: string;
description: string;
parameters?: {
type: "object";
properties: Record<string, any>;
required?: string[];
};
executor: (args: any, context: any) => Promise<string>;
};
}super-agent plugins install @plugins/examples/weathersuper-agent plugins install ./my-plugin.js
super-agent plugins install /path/to/plugin/dist/index.jssuper-agent plugins listsuper-agent plugins uninstall weatherWe welcome plugin contributions! Please see our Contributing Guidelines for details.
MIT - See LICENSE for details.
| Back | FazBrowse Home | New Git URL |