forked from bmad-code-org/bmad-loop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.toml
More file actions
21 lines (19 loc) · 813 Bytes
/
Copy pathplugin.toml
File metadata and controls
21 lines (19 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# A data-only example plugin: the smallest thing the plugin system can load.
#
# It declares metadata and one setting, but no [hooks] and no [python] — so it
# carries zero executable behavior and is byte-identical to "no plugin" at run
# time. It exists as the canonical reference for the manifest format and as the
# fixture proving bmad_loop/data/plugins/ ships in an installed wheel. A real
# plugin authoring walkthrough builds on this shape in the docs phase.
[plugin]
name = "example"
version = "1.0.0"
api_version = 1
description = "Data-only example plugin (settings only; no hooks, no code)."
author = "bmad-loop"
[[settings]]
key = "greeting"
type = "str"
default = "hello"
label = "Greeting"
help = "Demonstration setting; a data-only plugin is always active, so this renders in the settings UI."