more prompts for the LLM user

This commit is contained in:
lda
2026-05-18 17:24:37 +07:00 Verified
parent 4d90101e4b
commit 40f4d53352
9 changed files with 172 additions and 7 deletions
+22 -1
View File
@@ -20,7 +20,7 @@ connections into that model rather than owning the model itself.
```text
CapabilitySource
id: "wf.std" | "wf.mcp" | "wf.admin" | "<server>.<account>"
id: "wf.std" | "wf.docs" | "wf.mcp" | "wf.admin" | "<server>.<account>"
kind: "system" | "connection"
enabled: bool
visibility:
@@ -49,6 +49,27 @@ future saved wrapper artifacts, see
## Canonical Sources
### `wf.docs`
Local platform documentation.
- Planner-visible: no.
- MCP-client-visible: yes.
- Admin-dashboard-visible: yes.
- MCP tools: none.
- Workflow safety: not applicable; it owns docs, not workflow nodes.
Current capabilities:
- `prompts`: `wf.docs.operator_guide`, `wf.docs.workflow_authoring_guide`,
`wf.docs.troubleshooting_guide`.
- `resources`: `wf://docs/operator-manual`,
`wf://docs/end-to-end-runbook`, `wf://docs/troubleshooting`.
The documentation resource model lives in `wf_platform`, not in the MCP
projection layer. That lets the same manuals feed MCP resources now and other
surfaces such as a future CLI or UI later.
### `wf.std`
Workflow standard library.
+22 -1
View File
@@ -27,7 +27,7 @@ with each other just because MCP transports them all.
| Noun | Meaning | Example |
| --- | --- | --- |
| Connection | A configured upstream MCP account/profile with auth and transport settings. | `everything.default` |
| Source | A named owner of capabilities. A source may be local or backed by a connection. | `wf.std`, `wf.mcp`, `everything.default` |
| Source | A named owner of capabilities. A source may be local or backed by a connection. | `wf.std`, `wf.docs`, `wf.mcp`, `everything.default` |
| Catalog | A discovered snapshot of backend MCP capabilities. | tools/resources/prompts loaded from `everything.default` |
| Workflow capability | A workflow-ready `NodeSpec` contract that graphs can consume. | `wf.std.runtime_error`, `everything.default.echo` |
| Artifact | An immutable saved workflow definition or saved wrapper workflow. | `codex_echo_probe` version `2` |
@@ -92,6 +92,26 @@ Typical tools:
- `wf.workflow.validate_deployment`
- `wf.workflow.run_deployment`
### `wf.docs`
Local documentation source.
It owns stable documentation resources such as:
- `wf://docs/operator-manual`
- `wf://docs/end-to-end-runbook`
- `wf://docs/troubleshooting`
It also owns short guide prompts such as:
- `wf.docs.operator_guide`
- `wf.docs.workflow_authoring_guide`
- `wf.docs.troubleshooting_guide`
This source exists so manuals are discoverable through the same capability model
as everything else. The docs themselves are provider-neutral platform
resources; MCP is only one projection of them.
### Proxied Upstream Tools
These are the upstream MCP tools themselves, projected under connection/source
@@ -257,6 +277,7 @@ connection.
Examples:
- `everything.default`: both a connection and a source
- `wf.docs`: a local documentation source, not a connection
- `wf.std`: a local source, not a connection
- `wf.admin`: a privileged local source, not a connection