Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@specd/plugin-manager

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@specd/plugin-manager

Plugin infrastructure for [specd](https://github.com/specd-sdd/SpecD). For more information, visit [getspecd.dev](https://getspecd.dev). Defines the base plugin contracts (`SpecdPlugin`, `AgentPlugin`) and provides loading and validation utilities consume

latest
Source
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

@specd/plugin-manager

Plugin infrastructure for specd. For more information, visit getspecd.dev. Defines the base plugin contracts (SpecdPlugin, AgentPlugin) and provides loading and validation utilities consumed by the CLI and agent plugins.

Exports

Domain types

  • SpecdPlugin — base plugin interface (name, type, version, configSchema, init, destroy).
  • AgentPlugin — extends SpecdPlugin with install and uninstall for AI-agent integrations.
  • InstallOptions / InstallResult — input and output types for skill install operations.
  • isSpecdPlugin() / isAgentPlugin() — type guards for runtime validation.

Infrastructure

  • Plugin loader — discovers and instantiates plugins from package manifests.

Usage

Agent plugins implement the AgentPlugin interface and export a create() factory:

import type { AgentPlugin } from '@specd/plugin-manager'

export function create(): AgentPlugin {
  // return your plugin instance
}

License

MIT

FAQs

Package last updated on 30 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts