objectiveai-sdk 2.0.8

ObjectiveAI SDK, definitions, and utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "title": "cli.output.notification.Plugin",
  "description": "Wire shape: `{\"type\":\"notification\",\"value\":{\"plugin\": <manifest> | null}}`.\nEmitted by `objectiveai plugins get <name>`. The value is the\nresolved `ManifestWithNameAndSource` when the manifest file exists\nand parses, or JSON `null` when it doesn't (same silent-skip policy\nas `list`).",
  "type": "object",
  "properties": {
    "plugin": {
      "anyOf": [
        {
          "$ref": "filesystem.plugins.ManifestWithNameAndSource"
        },
        {
          "type": "null"
        }
      ]
    }
  }
}