docs(sdk): fige le contrat command-and-feedback et aligne l'exemple hello-plugin
Documente la règle publique menu -> command handler -> tâche de fond optionnelle -> feedback (docs/commands-and-feedback.md + README), clarifie via JSDoc les invariants de runCommand/recordOnly/ownerAgentId dans runtime.ts, et met à jour l'exemple hello-plugin (feedback structuré launched/skipped, watch non-fatal) pour qu'il illustre fidèlement le contrat documenté. Publie docs/ dans le package npm. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@ -6,7 +6,10 @@ It exercises the current plugin primitives end to end:
|
||||
|
||||
- top-level menu: `Hello Plugin`;
|
||||
- menu entry: `hello-plugin`;
|
||||
- command: `hello-plugin`, returning `hello-world`;
|
||||
- command: `hello-plugin`, returning readable feedback:
|
||||
`{ status: "launched", taskId, state, message }` when it starts a background
|
||||
task, or `{ status: "skipped", reason, message }` when a precondition is not
|
||||
met;
|
||||
- layout contribution: `hello-plugin.hello-world`, rendered as `hello-world`.
|
||||
- plugin-owned storage: activation count, command run count and initialization flag;
|
||||
- tooling capability: logs the focused workspace project when `ctx.services` is available.
|
||||
@ -42,7 +45,15 @@ During activation the plugin logs:
|
||||
- successful registration of the `hello-plugin` command;
|
||||
- successful registration of the `hello-plugin.hello-world` layout;
|
||||
- availability of the workspace service from the `tooling` runtime capability;
|
||||
- best-effort workspace watch setup, including a non-fatal log when unavailable;
|
||||
- the first layout render, including project/node identifiers.
|
||||
|
||||
During command invocation the plugin logs and returns structured feedback for
|
||||
programmatic callers. The current human menu-click UI does not guarantee display
|
||||
of that return value.
|
||||
|
||||
- skipped command feedback when no project or no `helloPlugin.ownerAgentId` is available;
|
||||
- launched background command feedback when `helloPlugin.ownerAgentId` is configured;
|
||||
|
||||
These messages are intentionally small and stable so installation, bundle import, activation and
|
||||
layout rendering failures can be separated quickly in IdeA logs/devtools.
|
||||
|
||||
Reference in New Issue
Block a user