fix: address second review — agent path, display name, signal subtype

- plugin.json: use ./agents/workshop-ta.md path format (matches all other plugins)
- workshop-ta front matter: name 'Workshop TA' preserves acronym (was 'workshop-ta')
- signal-write: add subtype field (hands-up/blocked/done/checkpoint/partnership)
  so dashboard consumers can distinguish specific signal states
- npm run build: regenerated docs/README.agents.md

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copilot-Session: 26faf13e-639c-4a21-ac05-c0dc2bff7c62
This commit is contained in:
Jenny Ferries
2026-07-17 11:38:08 -07:00
parent 015abd15b1
commit 0673e59169
4 changed files with 16 additions and 7 deletions
+13 -4
View File
@@ -51,6 +51,7 @@ Create `desks/<desk-name>/.signals/<timestamp>.json`:
```json
{
"signal_type": "execution",
"subtype": "checkpoint",
"agent_name": "<desk-name>",
"self_assessment": {
"intent": 4,
@@ -71,11 +72,19 @@ Create `desks/<desk-name>/.signals/<timestamp>.json`:
}
```
For `hands-up` or `blocked` signals, populate the `escalation`
fields. Use `signal_type: "escalation"` for these — they sort to
the top of the dashboard.
### Signal type mapping
For `partnership` signals (TA only), use `signal_type: "partnership"`.
| Signal | `signal_type` | `subtype` |
|-----------|-----------------|----------------|
| hands-up | `"escalation"` | `"hands-up"` |
| blocked | `"escalation"` | `"blocked"` |
| done | `"execution"` | `"done"` |
| checkpoint| `"execution"` | `"checkpoint"` |
| partnership| `"partnership"` | `"partnership"`|
The `subtype` field preserves the specific signal state for
dashboard consumers. `signal_type` controls sort priority
(escalation → top).
### 2. Note the signal in the journal