@standardagents/code-plugin-sdk 1.0.0-alpha.5-usage.0 → 1.0.0-alpha.6-surfaces.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/REFERENCE.md +7 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,8 +11,8 @@ Its `package.json` includes a static `standardPlugin` manifest.
|
|
|
11
11
|
{
|
|
12
12
|
"name": "example-status",
|
|
13
13
|
"type": "module",
|
|
14
|
-
"peerDependencies": { "@standardagents/code-plugin-sdk": "^1.0.0-alpha.
|
|
15
|
-
"devDependencies": { "@standardagents/code-plugin-sdk": "^1.0.0-alpha.
|
|
14
|
+
"peerDependencies": { "@standardagents/code-plugin-sdk": "^1.0.0-alpha.6-surfaces.0" },
|
|
15
|
+
"devDependencies": { "@standardagents/code-plugin-sdk": "^1.0.0-alpha.6-surfaces.0" },
|
|
16
16
|
"standardPlugin": {
|
|
17
17
|
"apiVersion": 1,
|
|
18
18
|
"id": "example-status",
|
package/REFERENCE.md
CHANGED
|
@@ -234,6 +234,11 @@ add node types.
|
|
|
234
234
|
|
|
235
235
|
### Card views
|
|
236
236
|
|
|
237
|
+
Titles come from the contribution's `title`. The host adds no status dot,
|
|
238
|
+
health text, or machine label to a card title or panel. Authors can include
|
|
239
|
+
indicators in their own title or content. Runtime health remains available in
|
|
240
|
+
plugin management through `ctx.health.set()`.
|
|
241
|
+
|
|
237
242
|
A card shows a short summary. Its view can contain `stack`, `row`, `text`,
|
|
238
243
|
`badge`, `dot`, `progress`, `segments`, `stat`, and `divider` nodes, and it
|
|
239
244
|
is at most 6 lines tall. A `stack` is as tall as its children plus `gap`
|
|
@@ -346,8 +351,8 @@ contributions when their target disappears or changes generation.
|
|
|
346
351
|
|
|
347
352
|
Sections, plugin cards, machine slots, stacked pane header/footer slots, canvas surfaces, host-rendered views,
|
|
348
353
|
global command palette entries, and the three
|
|
349
|
-
panel presentations are implemented. A popover
|
|
350
|
-
modal area. A column attaches to the sidebar and resizes the workspace. A
|
|
354
|
+
panel presentations are implemented. A popover follows the content width and height within the
|
|
355
|
+
modal area. Its title is the contribution title and its body starts beneath it. A column attaches to the sidebar and resizes the workspace. A
|
|
351
356
|
plugin pane has a tab and focus, drag, close, and reveal behavior; its width
|
|
352
357
|
follows content and it does not create a tmux pane or resize a terminal.
|
|
353
358
|
|