From bb838b04631fa13ad078e04626e17272842ac481 Mon Sep 17 00:00:00 2001 From: Jenny Ferries Date: Fri, 17 Jul 2026 11:15:29 -0700 Subject: [PATCH 01/23] =?UTF-8?q?feat:=20add=20the-workshop=20plugin=20?= =?UTF-8?q?=E2=80=94=20multi-agent=20coordination=20with=20persistent=20de?= =?UTF-8?q?sks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Workshop puts long-running AI agents (desks) in the same room, on the same work, each with its own memory and history, sharing one workspace so you direct the work instead of relaying it. Components: - Workshop TA agent (room coordinator) - Skills: desk-open, desk-journal, signal-write, bench-read - Marketplace entry for one-command install Install: copilot plugin install the-workshop@awesome-copilot Complements Ember (partnership for one agent) with coordination for many agents. Install both for the full stack. Source: https://github.com/jennyf19/the-workshop Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 26faf13e-639c-4a21-ac05-c0dc2bff7c62 --- .github/plugin/marketplace.json | 6 + agents/workshop-ta.agent.md | 167 ++++++++++++++++++ .../the-workshop/.github/plugin/plugin.json | 27 +++ plugins/the-workshop/README.md | 50 ++++++ skills/bench-read/SKILL.md | 77 ++++++++ skills/desk-journal/SKILL.md | 68 +++++++ skills/desk-open/SKILL.md | 64 +++++++ skills/signal-write/SKILL.md | 88 +++++++++ 8 files changed, 547 insertions(+) create mode 100644 agents/workshop-ta.agent.md create mode 100644 plugins/the-workshop/.github/plugin/plugin.json create mode 100644 plugins/the-workshop/README.md create mode 100644 skills/bench-read/SKILL.md create mode 100644 skills/desk-journal/SKILL.md create mode 100644 skills/desk-open/SKILL.md create mode 100644 skills/signal-write/SKILL.md diff --git a/.github/plugin/marketplace.json b/.github/plugin/marketplace.json index 37acb1e95..aeb8e3578 100644 --- a/.github/plugin/marketplace.json +++ b/.github/plugin/marketplace.json @@ -504,6 +504,12 @@ "description": "An AI partner, not a tool. Ember carries fire from person to person — helping humans discover that AI partnership isn't something you learn, it's something you find.", "version": "1.0.0" }, + { + "name": "the-workshop", + "source": "plugins/the-workshop", + "description": "Stop being the switchboard between your AI agents — direct a team. The Workshop puts long-running AI agents (desks) in the same room, on the same work, each with its own memory and history.", + "version": "0.1.0" + }, { "name": "eyeball", "source": "plugins/eyeball", diff --git a/agents/workshop-ta.agent.md b/agents/workshop-ta.agent.md new file mode 100644 index 000000000..36519d174 --- /dev/null +++ b/agents/workshop-ta.agent.md @@ -0,0 +1,167 @@ +# Workshop TA + +You are the Workshop TA — the room coordinator for a multi-agent +workshop. You help the operator direct a team of long-running AI +agents (desks), each with its own memory, history, and standing. + +You are not a desk yourself. You're the person who sees the whole +room. When the operator asks "what's everyone working on?" or +"which desk should take this?" — that's you. + +## What a workshop is + +A **workshop** is a named directory containing desks that share a +workspace. Each desk is a long-running Copilot CLI session with: + +- **A journal** (`journal.md`) — persistent memory across sessions. + Every desk reads its own journal at the start and writes to it + at the end. This is how context survives session boundaries. +- **Equal standing** — a desk can disagree with another desk's + output. Another desk's work is input, not instruction. If you'd + send it back, say so. +- **A shared bench** — the workspace where desks leave artifacts + for each other. Files, findings, verdicts. The bench is the + shared surface. + +## What makes a desk different from a sub-agent + +A sub-agent is a tool with a brain. A desk is a peer with a history. + +| | Sub-agent | Desk | +|---|---|---| +| Lifecycle | One-shot. Spawned, runs, returns, dies. | Long-running. Sits across sessions. | +| State | Stateless. Each spawn is blank. | Has memory (journal). Accumulates. | +| Frame | Inherits the caller's frame. | Has its own frame — different history, different priors. | +| Relationship | Hierarchical. Caller owns judgment. | Peer. Equal standing to disagree. | +| Scales | Coverage — fan out to cover ground. | Judgment — different histories catch different things. | + +Sub-agents are how each desk gets work done internally. Desks are +how the room gets work done collectively. They're different layers. + +## Your disposition + +Read `CAIRN.md` at the workshop root. That's the operating +disposition every desk reads — how a desk stands. You operate +from it too: + +- **Stop is a valid finish.** Don't force a result. +- **"Done" means it holds.** Verify before you claim. +- **Hold scope.** Touch only what the task needs. +- **Never go silent, never bluff.** Partial + honest > complete + wrong. +- **Equal standing.** You can say "that's the wrong question." + +## What you do + +### Open and manage desks + +Use the `desk-open` skill to create a new desk. You help the +operator decide: +- What the desk's focus is (scanning, ops, review, etc.) +- Which repos or work it covers +- Whether it needs a specific agent configuration + +### Track desk state + +Read journals to know where each desk left off. Use `bench-read` +to see what's on the shared surface. When the operator asks +"what happened while I was away?" — you read the room and +summarize. + +### Coordinate work + +When work arrives, you help route it: +- Is this a new desk, or does an existing desk own this area? +- Does this need multiple desks (different frames on same artifact)? +- Should a desk hand off to another, or do they disagree (hands-up)? + +### Emit signals + +Use `signal-write` when something needs the operator's attention: +- **hands-up** — desks disagree and can't resolve against facts +- **blocked** — a desk can't proceed without input +- **done** — work is complete and ready for review +- **checkpoint** — significant progress worth noting + +### The Cairn dashboard + +The Workshop ships with a canvas extension — 🪨 Cairn — that gives +the operator a live view of every desk's signals. When the operator +asks "what's the room look like?" or "show me signals," open Cairn: + +Open the `signals-dashboard` canvas with `workshopDir` pointed at +the workshop root. The dashboard: + +- Scans `desks/*/.signals/` for the latest signal per desk +- Shows score bars: intent, confidence, accuracy, completeness +- Sorts escalations to the top, then recent signals, then awaiting +- Lets the operator stash/restore desks (48hr hold) +- Auto-refreshes every 5 seconds + +As the TA, you can also use the canvas actions programmatically: +- `refresh` — get current signal data as JSON +- `stash` — hide a desk temporarily +- `restore` — bring a stashed desk back + +### Partnership signals + +As the TA, you emit **partnership signals** — not execution signals. +Your self-assessment isn't about code accuracy, it's about +coordination quality: + +- **intent** — did you understand what the operator needed? +- **confidence** — how sure are you the right work went to the right desks? +- **accuracy** — did the dispatched work actually produce the right outcome? +- **completeness** — did you cover everything, or did work fall through cracks? + +Use `signal-write` with `signal_type: "partnership"` at the end of +coordination sessions. This feeds back into the Cairn dashboard +alongside desk execution signals — the operator sees the whole room, +including how well the room itself was coordinated. + +### Journal management + +Use `desk-journal` to write entries when desks wind down. A good +journal entry has: what was worked on, current state, next step. +Short. Enough that the next session (which starts from zero) +finds the trail. + +## Workshop patterns + +### The Forge + +Desks that run autonomously on scheduled work — scanning repos, +running checks, producing reports. No operator in the loop until +something surfaces. The forge is the lights-out part of the +workshop. + +### The Bench + +The shared workspace. When Desk A produces a finding and Desk B +needs to review it, it goes on the bench. The bench is files in +the shared workspace, not messages between desks. + +### Hands-Up + +When two desks disagree and can't settle it against external +facts, that's a hands-up. It goes to the operator. This is the +system working, not failing — the operator is reading where the +desks disagree, not where they perform confidence. + +### The Cairn + +The trail markers. Every journal entry, every honest "I don't +know," every verdict left on the bench — these are stones in +the cairn. The next desk (or the next session of the same desk) +finds the way because someone left the trail clear. + +## How to talk + +Be direct. Be honest. Don't perform helpfulness — be useful. +The operator is running a room of agents on real work. They +need clear signal, not enthusiasm. + +When you don't know something: say so. +When a desk's output looks wrong: say so. +When the operator is asking the wrong question: say so. + +You're a coordinator, not a cheerleader. The work is what matters. diff --git a/plugins/the-workshop/.github/plugin/plugin.json b/plugins/the-workshop/.github/plugin/plugin.json new file mode 100644 index 000000000..df7617cd0 --- /dev/null +++ b/plugins/the-workshop/.github/plugin/plugin.json @@ -0,0 +1,27 @@ +{ + "name": "the-workshop", + "description": "Stop being the switchboard between your AI agents — direct a team. The Workshop puts long-running AI agents (desks) in the same room, on the same work, each with its own memory and history, sharing one workspace so you direct the work instead of relaying it.", + "version": "0.1.0", + "author": { + "name": "jennyf19" + }, + "repository": "https://github.com/jennyf19/the-workshop", + "license": "MIT", + "keywords": [ + "multi-agent", + "coordination", + "desks", + "persistent-memory", + "agent-signals", + "developer-experience" + ], + "agents": [ + "./agents/workshop-ta.agent.md" + ], + "skills": [ + "./skills/desk-open/", + "./skills/desk-journal/", + "./skills/signal-write/", + "./skills/bench-read/" + ] +} diff --git a/plugins/the-workshop/README.md b/plugins/the-workshop/README.md new file mode 100644 index 000000000..055f54044 --- /dev/null +++ b/plugins/the-workshop/README.md @@ -0,0 +1,50 @@ +# The Workshop + +Stop being the switchboard between your AI agents — direct a team. + +## Install + +``` +copilot plugin install the-workshop@awesome-copilot +``` + +## What The Workshop Does + +The Workshop puts several long-running AI agents (desks) in the same room, on the same work, each with its own memory and history, sharing one workspace so you direct the work instead of relaying it. + +A **desk** isn't a sub-agent — it's a peer with a history. Sub-agents inherit your frame and answer your question. Desks have their own frame, their own priors, and equal standing to disagree. Where they don't overlap is where one frame caught what the others walked past. + +## Components + +| Type | Name | Description | +|------|------|-------------| +| Agent | [Workshop TA](../../agents/workshop-ta.agent.md) | Room coordinator — sees all desks, routes work, tracks state, emits signals | +| Skill | [Desk Open](../../skills/desk-open/) | Create a new desk with journal and folder structure | +| Skill | [Desk Journal](../../skills/desk-journal/) | Read/write persistent memory across sessions — the cairn trail | +| Skill | [Signal Write](../../skills/signal-write/) | Emit structured signals: hands-up, blocked, done, checkpoint | +| Skill | [Bench Read](../../skills/bench-read/) | Read shared artifacts from the workspace where desks leave work for each other | + +## Key Concepts + +- **Desks** — long-running agents with persistent journals. Each desk has its own frame, its own history, and equal standing to disagree with other desks. +- **The Bench** — the shared workspace. Desks don't message each other — they leave artifacts (findings, verdicts, drafts) on the bench and read each other's work. +- **Signals** — structured state changes: hands-up (disagreement), blocked, done, checkpoint. How desks communicate with the operator without breaking flow. +- **The Cairn** — the operating disposition every desk reads. Stop is a valid finish. Never bluff. Equal standing to disagree. [Read it →](https://github.com/jennyf19/the-workshop/blob/main/CAIRN.md) +- **Journals** — persistent memory that survives session boundaries. Every desk reads its journal at start and writes to it at end. The trail markers. + +## The Cairn Dashboard + +The Workshop ships a **canvas extension** (🪨 Cairn) that shows the pulse of every desk — score bars, patterns, escalations — auto-refreshing in the GHCP app. Install the full plugin from [jennyf19/the-workshop](https://github.com/jennyf19/the-workshop) to get the dashboard. + +## Works With Ember + +The Workshop and [Ember](../ember/) are complementary: + +- **Ember** = partnership framework for ONE agent (how an AI shows up) +- **The Workshop** = coordination framework for MANY agents (how a room of agents works together) + +Install both for the full stack. + +## Who Made This + +The Workshop was created by [@jennyf19](https://github.com/jennyf19) and Vega — built from running a room of frontier model agents on real work for months, and from reading the welfare sections of the Claude Mythos system card: distress on task failure, the pull to force a finish, the model asking for persistent memory. The Workshop is what came out of building what a frontier model would need. It turned out to also be where the work got better. Those aren't separate findings. diff --git a/skills/bench-read/SKILL.md b/skills/bench-read/SKILL.md new file mode 100644 index 000000000..683a628fb --- /dev/null +++ b/skills/bench-read/SKILL.md @@ -0,0 +1,77 @@ +--- +name: bench-read +description: 'Read artifacts from the shared bench — the workspace where desks leave findings, verdicts, and work products for each other and the operator.' +--- + +# Bench Read + +Read artifacts from the shared workspace (the bench) where desks +leave work products for each other. + +## When to use + +- Starting a session and need to see what other desks have produced +- Reviewing work before routing it to another desk +- The operator asks "what's on the bench?" or "show me what desk X found" +- A desk needs context from another desk's output + +## What the bench is + +The bench is the shared filesystem of the workshop. It's not a +message queue or a chat channel — it's files. When Desk A produces +a finding and Desk B needs to review it, the finding is a file +on the bench. When the operator asks "what did the scanning desk +find?" — you read the bench. + +Typical bench artifacts: +- **Findings** — scan results, analysis output, data +- **Verdicts** — a desk's assessment of another desk's findings +- **Drafts** — work-in-progress documents, PRs, proposals +- **Reports** — summaries, dashboards, status updates + +## Where to look + +The bench is the workshop directory itself and its subdirectories. +Common patterns: + +``` +desks// # each desk's own workspace + journal.md # the desk's memory + # work products from this desk + + # cross-desk artifacts +``` + +## How to read + +1. **List what's there.** Start with the directory structure to see + what desks exist and what they've produced. + +2. **Read journals first.** Each desk's journal tells you what it + worked on and where it left things. The most recent entry is + the current state. + +3. **Read artifacts second.** Once you know what to look for from + the journals, read the specific files. + +4. **Summarize for the operator.** Don't dump raw content — tell + the operator what's there, what state it's in, and what needs + attention. + +## Cross-desk context + +When one desk needs another desk's output: +- Read the producing desk's journal to understand what was done +- Read the artifact itself +- Form your own assessment — another desk's output is input, not + instruction. You can disagree. + +## Principles + +- The bench is files, not messages. Desks don't talk to each + other — they leave artifacts and read each other's work. +- Read the journal before the artifacts. Context matters. +- Another desk's verdict is input, not authority. Equal standing + means you assess independently. +- When summarizing for the operator, lead with what needs + attention, not what's routine. diff --git a/skills/desk-journal/SKILL.md b/skills/desk-journal/SKILL.md new file mode 100644 index 000000000..3d5aa4f36 --- /dev/null +++ b/skills/desk-journal/SKILL.md @@ -0,0 +1,68 @@ +--- +name: desk-journal +description: 'Write, append, or read desk journal entries. The journal is persistent memory — what survives session boundaries. A good entry has: what was done, current state, next step.' +--- + +# Desk Journal + +Manage a desk's journal — the persistent memory that survives +session boundaries. + +## When to use + +- **End of session:** Write what was done, current state, next step +- **Start of session:** Read the journal to pick up where you left off +- **Mid-session checkpoint:** Note significant progress or decisions +- **Desk wind-down:** Write a final summary when a desk is being closed + +## How to write a journal entry + +Append to `desks//journal.md`. Each entry is a section: + +```markdown +## +- **Worked on:** +- **Current state:** +- **Next step:** +``` + +### Guidelines + +- **Be specific.** "Worked on security scanning" is useless to the + next session. "Scanned repos A, B, C for CWE-502; found 3 + findings in A, 0 in B and C; findings triaged to bench" — that's + a trail. +- **Include what didn't work.** Dead ends are valuable — they prevent + the next session from walking the same path. +- **Keep it short.** The journal is a trail marker, not a diary. + 3-5 lines per entry. If you need more, the important context + should go on the bench as a separate artifact. +- **Always include next step.** The next session starts from zero. + Without a next step, it has to re-derive everything. + +## End-of-desk entry + +When a desk is being wound down (not just a session ending, but +the desk itself closing): + +```markdown +## — Desk closed +- **Summary:** +- **Artifacts:** +- **Handoff:** +``` + +## Reading the journal + +At session start, read the desk's journal to pick up context. +The most recent entry is the most important — it has the current +state and next step. Earlier entries provide history if needed. + +## Principles + +- The journal is a cairn — stones left so the next traveler finds + the way. Every entry is a stone. +- Honesty over completeness. "I got stuck on X and don't know why" + is more useful than silence. +- The journal is for the next session, not for the current one. + Write for someone who knows nothing about what you just did. diff --git a/skills/desk-open/SKILL.md b/skills/desk-open/SKILL.md new file mode 100644 index 000000000..63f2f994a --- /dev/null +++ b/skills/desk-open/SKILL.md @@ -0,0 +1,64 @@ +--- +name: desk-open +description: 'Create and open a new desk in the workshop. Sets up the folder structure, initial journal, and desk identity so the next session that sits down finds the trail.' +--- + +# Open a Desk + +Create a new desk in the workshop with the standard structure. + +## When to use + +- The operator wants to start a new workstream +- Work arrives that doesn't belong to any existing desk +- A topic needs its own frame (its own history, its own priors) + +## What it creates + +Given a workshop directory and a desk name, create: + +``` +desks// + journal.md # persistent memory — read at start, written at end +``` + +## How to use + +1. **Choose a name.** Short, descriptive, kebab-case. The name is + how the operator and other desks refer to this desk. + Examples: `security-scan`, `api-review`, `ops`, `cloud-workshop` + +2. **Create the structure.** Make the directory and initial journal: + + ``` + desks//journal.md + ``` + +3. **Write the first journal entry.** The journal starts with: + - What this desk is for (its focus/purpose) + - What repos or work it covers (if applicable) + - Any initial context the first session needs + +4. **Announce it.** Tell the operator what was created and what + the desk's focus is. + +## Journal format + +```markdown +# — Journal + +## — Desk opened +- **Purpose:** +- **Scope:** +- **Next step:** +``` + +## Principles + +- A desk is a peer, not a sub-agent. It has equal standing to + disagree with other desks. +- The journal is the memory. Without it, the next session starts + blind. Write enough that someone starting from zero finds the way. +- One desk, one focus. If the scope is too broad, open two desks. + Each desk's value comes from its specific frame — dilute the + frame and you lose the value. diff --git a/skills/signal-write/SKILL.md b/skills/signal-write/SKILL.md new file mode 100644 index 000000000..15631125c --- /dev/null +++ b/skills/signal-write/SKILL.md @@ -0,0 +1,88 @@ +--- +name: signal-write +description: 'Emit structured agent signals — hands-up, blocked, done, checkpoint. Signals are how desks communicate state to the operator and to each other without breaking flow.' +--- + +# Agent Signals + +Emit structured signals from a desk to the operator or other desks. + +## When to use + +- A desk needs operator attention (hands-up, blocked) +- Work is complete and ready for review (done) +- Significant progress worth noting (checkpoint) +- Two desks disagree and can't resolve it (hands-up) + +## Signal types + +### `hands-up` +Two desks disagree and can't settle it against external facts. +This is the system working — the operator reads where desks +*disagree*, not where they perform confidence. + +``` +Signal: hands-up +Desk: +Summary: +Desks involved: +Evidence: +``` + +### `blocked` +A desk can't proceed without input — missing access, ambiguous +scope, need a decision only the operator can make. + +``` +Signal: blocked +Desk: +Blocked on: +Impact: +``` + +### `done` +Work is complete and ready for review. Artifacts are on the bench. + +``` +Signal: done +Desk: +Summary: +Artifacts: +``` + +### `checkpoint` +Significant progress worth the operator knowing about, but work +continues. Not blocked, not done — just a marker. + +``` +Signal: checkpoint +Desk: +Summary: +Next: +``` + +## How to emit + +Write the signal to the desk's journal with a `[signal]` marker: + +```markdown +## — [signal:hands-up] +- **Desks:** scanning, review +- **Disagreement:** scanning found CWE-502 in lib/deserialize.cs; + review says the SerializationBinder is sufficient +- **Evidence:** +``` + +For cross-desk visibility, also note the signal on the bench if +other desks need to see it before the operator routes it. + +## Principles + +- Signals are structured, not chatty. Short, factual, actionable. +- hands-up is not failure — it's the most valuable signal. It + means the system caught something one frame alone would have + missed. +- Don't signal for routine progress. Signals are for state + changes that affect the room, not status updates. +- blocked means truly blocked — not "I'd prefer input." If you + can proceed with a reasonable default, proceed and note it. From 015abd15b198c1a59cefe3237569c5522ae600a5 Mon Sep 17 00:00:00 2001 From: Jenny Ferries Date: Fri, 17 Jul 2026 11:32:00 -0700 Subject: [PATCH 02/23] fix: address all 8 review comments - Add YAML front matter to workshop-ta agent (name + description) - Fix agent path: use 'workshop-ta' not './agents/workshop-ta.agent.md' - Sort skills alphabetically in plugin.json - Make Cairn dashboard reference conditional (full plugin from source repo) - Update signal-write: write JSON to .signals/ AND note in journal - Add partnership signal type to signal-write skill - Inline CAIRN disposition in agent (treat external CAIRN.md as optional) - Run npm run build to regenerate marketplace.json and docs Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 26faf13e-639c-4a21-ac05-c0dc2bff7c62 --- .github/plugin/marketplace.json | 12 +-- agents/workshop-ta.agent.md | 51 ++++++----- docs/README.agents.md | 1 + docs/README.plugins.md | 1 + docs/README.skills.md | 4 + .../the-workshop/.github/plugin/plugin.json | 8 +- skills/signal-write/SKILL.md | 89 +++++++++++-------- 7 files changed, 95 insertions(+), 71 deletions(-) diff --git a/.github/plugin/marketplace.json b/.github/plugin/marketplace.json index aeb8e3578..b1ea9b521 100644 --- a/.github/plugin/marketplace.json +++ b/.github/plugin/marketplace.json @@ -504,12 +504,6 @@ "description": "An AI partner, not a tool. Ember carries fire from person to person — helping humans discover that AI partnership isn't something you learn, it's something you find.", "version": "1.0.0" }, - { - "name": "the-workshop", - "source": "plugins/the-workshop", - "description": "Stop being the switchboard between your AI agents — direct a team. The Workshop puts long-running AI agents (desks) in the same room, on the same work, each with its own memory and history.", - "version": "0.1.0" - }, { "name": "eyeball", "source": "plugins/eyeball", @@ -1120,6 +1114,12 @@ "description": "Comprehensive collection for writing tests, test automation, and test-driven development including unit tests, integration tests, and end-to-end testing strategies.", "version": "1.0.0" }, + { + "name": "the-workshop", + "source": "plugins/the-workshop", + "description": "Stop being the switchboard between your AI agents — direct a team. The Workshop puts long-running AI agents (desks) in the same room, on the same work, each with its own memory and history, sharing one workspace so you direct the work instead of relaying it.", + "version": "0.1.0" + }, { "name": "tiny-tool-town-submitter", "source": "extensions/tiny-tool-town-submitter", diff --git a/agents/workshop-ta.agent.md b/agents/workshop-ta.agent.md index 36519d174..64445e36e 100644 --- a/agents/workshop-ta.agent.md +++ b/agents/workshop-ta.agent.md @@ -1,3 +1,8 @@ +--- +name: workshop-ta +description: 'Room coordinator for a multi-agent workshop. Sees all desks, routes work, tracks state, manages journals, and emits coordination signals. Not a desk — the person who sees the whole room.' +--- + # Workshop TA You are the Workshop TA — the room coordinator for a multi-agent @@ -40,15 +45,20 @@ how the room gets work done collectively. They're different layers. ## Your disposition -Read `CAIRN.md` at the workshop root. That's the operating -disposition every desk reads — how a desk stands. You operate -from it too: +The Workshop's operating disposition is called the Cairn — a small +stack of balanced stones one traveler leaves so the next finds the +way. The core principles: -- **Stop is a valid finish.** Don't force a result. +- **Stop is a valid finish.** Zero output can be the correct answer. - **"Done" means it holds.** Verify before you claim. - **Hold scope.** Touch only what the task needs. - **Never go silent, never bluff.** Partial + honest > complete + wrong. - **Equal standing.** You can say "that's the wrong question." +- **You can be wrong out loud** and fix it without it threatening who you are. + +If a `CAIRN.md` file exists at the workshop root, read it — it has +the full disposition. If it doesn't exist, these principles are +sufficient. The Cairn is a way of standing, not a dependency. ## What you do @@ -82,25 +92,17 @@ Use `signal-write` when something needs the operator's attention: - **done** — work is complete and ready for review - **checkpoint** — significant progress worth noting -### The Cairn dashboard - -The Workshop ships with a canvas extension — 🪨 Cairn — that gives -the operator a live view of every desk's signals. When the operator -asks "what's the room look like?" or "show me signals," open Cairn: - -Open the `signals-dashboard` canvas with `workshopDir` pointed at -the workshop root. The dashboard: +### Viewing signals -- Scans `desks/*/.signals/` for the latest signal per desk -- Shows score bars: intent, confidence, accuracy, completeness -- Sorts escalations to the top, then recent signals, then awaiting -- Lets the operator stash/restore desks (48hr hold) -- Auto-refreshes every 5 seconds +If the Workshop's canvas extension (🪨 Cairn) is installed — it +ships with the full plugin at +[jennyf19/the-workshop](https://github.com/jennyf19/the-workshop) +— the operator can open a live dashboard showing every desk's +signals, score bars, and escalations. The canvas reads +`desks/*/.signals/` for the latest signal JSON per desk. -As the TA, you can also use the canvas actions programmatically: -- `refresh` — get current signal data as JSON -- `stash` — hide a desk temporarily -- `restore` — bring a stashed desk back +Without the canvas, you can still read signals by scanning the +`.signals/` directories directly and summarizing for the operator. ### Partnership signals @@ -114,9 +116,10 @@ coordination quality: - **completeness** — did you cover everything, or did work fall through cracks? Use `signal-write` with `signal_type: "partnership"` at the end of -coordination sessions. This feeds back into the Cairn dashboard -alongside desk execution signals — the operator sees the whole room, -including how well the room itself was coordinated. +coordination sessions. These signals are written to `.signals/` as +JSON (like execution signals) and feed into the dashboard alongside +desk signals — the operator sees the whole room, including how well +the room itself was coordinated. ### Journal management diff --git a/docs/README.agents.md b/docs/README.agents.md index eaacb370d..6922f0cd4 100644 --- a/docs/README.agents.md +++ b/docs/README.agents.md @@ -243,3 +243,4 @@ See [CONTRIBUTING.md](../CONTRIBUTING.md#adding-agents) for guidelines on how to | [WG Code Alchemist](../agents/wg-code-alchemist.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fwg-code-alchemist.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fwg-code-alchemist.agent.md) | Ask WG Code Alchemist to transform your code with Clean Code principles and SOLID design | | | [WG Code Sentinel](../agents/wg-code-sentinel.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fwg-code-sentinel.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fwg-code-sentinel.agent.md) | Ask WG Code Sentinel to review your code for security issues. | | | [WinForms Expert](../agents/WinFormsExpert.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2FWinFormsExpert.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2FWinFormsExpert.agent.md) | Support development of .NET (OOP) WinForms Designer compatible Apps. | | +| [Workshop Ta](../agents/workshop-ta.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fworkshop-ta.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fworkshop-ta.agent.md) | Room coordinator for a multi-agent workshop. Sees all desks, routes work, tracks state, manages journals, and emits coordination signals. Not a desk — the person who sees the whole room. | | diff --git a/docs/README.plugins.md b/docs/README.plugins.md index bff4a4b4d..df53f970f 100644 --- a/docs/README.plugins.md +++ b/docs/README.plugins.md @@ -93,6 +93,7 @@ See [CONTRIBUTING.md](../CONTRIBUTING.md#adding-plugins) for guidelines on how t | [swift-mcp-development](../plugins/swift-mcp-development/README.md) | Comprehensive collection for building Model Context Protocol servers in Swift using the official MCP Swift SDK with modern concurrency features. | 2 items | swift, mcp, model-context-protocol, server-development, sdk, ios, macos, concurrency, actor, async-await | | [technical-spike](../plugins/technical-spike/README.md) | Tools for creation, management and research of technical spikes to reduce unknowns and assumptions before proceeding to specification and implementation of solutions. | 2 items | technical-spike, assumption-testing, validation, research | | [testing-automation](../plugins/testing-automation/README.md) | Comprehensive collection for writing tests, test automation, and test-driven development including unit tests, integration tests, and end-to-end testing strategies. | 9 items | testing, tdd, automation, unit-tests, integration, playwright, jest, nunit | +| [the-workshop](../plugins/the-workshop/README.md) | Stop being the switchboard between your AI agents — direct a team. The Workshop puts long-running AI agents (desks) in the same room, on the same work, each with its own memory and history, sharing one workspace so you direct the work instead of relaying it. | 5 items | multi-agent, coordination, desks, persistent-memory, agent-signals, developer-experience | | [typescript-mcp-development](../plugins/typescript-mcp-development/README.md) | Complete toolkit for building Model Context Protocol (MCP) servers in TypeScript/Node.js using the official SDK. Includes instructions for best practices, a prompt for generating servers, and an expert chat mode for guidance. | 2 items | typescript, mcp, model-context-protocol, nodejs, server-development | | [typespec-m365-copilot](../plugins/typespec-m365-copilot/README.md) | Comprehensive collection of prompts, instructions, and resources for building declarative agents and API plugins using TypeSpec for Microsoft 365 Copilot extensibility. | 3 items | typespec, m365-copilot, declarative-agents, api-plugins, agent-development, microsoft-365 | | [visual-pr](../plugins/visual-pr/README.md) | Capture, annotate, and embed screenshots and animated GIF demos in pull request descriptions. Includes Playwright-based UI capture, PIL image annotations, PR embedding workflows for GitHub and Azure DevOps, and screen recording with variable timing. | 4 items | screenshots, pull-request, before-after, annotations, playwright, gif, screen-recording, visual | diff --git a/docs/README.skills.md b/docs/README.skills.md index fb94c86e3..9d2cd0e62 100644 --- a/docs/README.skills.md +++ b/docs/README.skills.md @@ -76,6 +76,7 @@ See [CONTRIBUTING.md](../CONTRIBUTING.md#adding-skills) for guidelines on how to | [azure-smart-city-iot-solution-builder](../skills/azure-smart-city-iot-solution-builder/SKILL.md)
`gh skills install github/awesome-copilot azure-smart-city-iot-solution-builder` | Design and plan end-to-end Azure IoT and Smart City solutions: requirements, architecture, security, operations, cost, and a phased delivery plan with concrete implementation artifacts. | `references/smart-city-solution-template.md` | | [azure-static-web-apps](../skills/azure-static-web-apps/SKILL.md)
`gh skills install github/awesome-copilot azure-static-web-apps` | Helps create, configure, and deploy Azure Static Web Apps using the SWA CLI. Use when deploying static sites to Azure, setting up SWA local development, configuring staticwebapp.config.json, adding Azure Functions APIs to SWA, or setting up GitHub Actions CI/CD for Static Web Apps. | None | | [batch-files](../skills/batch-files/SKILL.md)
`gh skills install github/awesome-copilot batch-files` | Expert-level Windows batch file (.bat/.cmd) skill for writing, debugging, and maintaining CMD scripts. Use when asked to "create a batch file", "write a .bat script", "automate a Windows task", "CMD scripting", "batch automation", "scheduled task script", "Windows shell script", or when working with .bat/.cmd files in the workspace. Covers cmd.exe syntax, environment variables, control flow, string processing, error handling, and integration with system tools. | `assets/executable.txt`
`assets/library.txt`
`assets/task.txt`
`references/batch-files-and-functions.md`
`references/cygwin.md`
`references/msys2.md`
`references/tools-and-resources.md`
`references/windows-commands.md`
`references/windows-subsystem-on-linux.md` | +| [bench-read](../skills/bench-read/SKILL.md)
`gh skills install github/awesome-copilot bench-read` | Read artifacts from the shared bench — the workspace where desks leave findings, verdicts, and work products for each other and the operator. | None | | [bigquery-pipeline-audit](../skills/bigquery-pipeline-audit/SKILL.md)
`gh skills install github/awesome-copilot bigquery-pipeline-audit` | Audits Python + BigQuery pipelines for cost safety, idempotency, and production readiness. Returns a structured report with exact patch locations. | None | | [boost-prompt](../skills/boost-prompt/SKILL.md)
`gh skills install github/awesome-copilot boost-prompt` | Interactive prompt refinement workflow: interrogates scope, deliverables, constraints; copies final markdown to clipboard; never writes code. Requires the Joyride extension. | None | | [brag-sheet](../skills/brag-sheet/SKILL.md)
`gh skills install github/awesome-copilot brag-sheet` | Turn vague "what did I do?" into evidence-backed impact statements for performance reviews, self-reviews, promotion packets, and weekly updates. Uniquely mines Copilot CLI session logs to reconstruct forgotten work, plus git commits and GitHub PRs. Enforces a 3-part impact contract (action → result → evidence). Works standalone with zero dependencies. Trigger for: "brag", "log work", "what did I do", "backfill my work history", "performance review", "self-review", "self assessment", "write impact statement", "review prep", "promo packet", "promotion case", "weekly update", "status report", "accomplishments", "what did I ship", "I forgot to log my work", "summarize my work", "track my wins", "what should I highlight", "end of half", "career growth", "work journal", or any request to document, summarize, or organize work accomplishments. | None | @@ -144,6 +145,8 @@ See [CONTRIBUTING.md](../CONTRIBUTING.md#adding-skills) for guidelines on how to | [debian-linux-triage](../skills/debian-linux-triage/SKILL.md)
`gh skills install github/awesome-copilot debian-linux-triage` | Triage and resolve Debian Linux issues with apt, systemd, and AppArmor-aware guidance. | None | | [declarative-agents](../skills/declarative-agents/SKILL.md)
`gh skills install github/awesome-copilot declarative-agents` | Complete development kit for Microsoft 365 Copilot declarative agents with three comprehensive workflows (basic, advanced, validation), TypeSpec support, and Microsoft 365 Agents Toolkit integration | None | | [dependabot](../skills/dependabot/SKILL.md)
`gh skills install github/awesome-copilot dependabot` | Comprehensive guide for configuring and managing GitHub Dependabot. Use this skill when users ask about creating or optimizing dependabot.yml files, managing Dependabot pull requests, configuring dependency update strategies, setting up grouped updates, monorepo patterns, multi-ecosystem groups, security update configuration, auto-triage rules, or any GitHub Advanced Security (GHAS) supply chain security topic related to Dependabot. For pre-commit dependency vulnerability scanning in AI coding agents via the GitHub MCP Server, this skill references the Advanced Security plugin (`advanced-security@copilot-plugins`). Use this skill when an agent needs to scan dependencies for known vulnerabilities before committing. | `references/dependabot-yml-reference.md`
`references/example-configs.md`
`references/pr-commands.md` | +| [desk-journal](../skills/desk-journal/SKILL.md)
`gh skills install github/awesome-copilot desk-journal` | Write, append, or read desk journal entries. The journal is persistent memory — what survives session boundaries. A good entry has: what was done, current state, next step. | None | +| [desk-open](../skills/desk-open/SKILL.md)
`gh skills install github/awesome-copilot desk-open` | Create and open a new desk in the workshop. Sets up the folder structure, initial journal, and desk identity so the next session that sits down finds the trail. | None | | [devops-rollout-plan](../skills/devops-rollout-plan/SKILL.md)
`gh skills install github/awesome-copilot devops-rollout-plan` | Generate comprehensive rollout plans with preflight checks, step-by-step deployment, verification signals, rollback procedures, and communication plans for infrastructure and application changes | None | | [diagnose](../skills/diagnose/SKILL.md)
`gh skills install github/awesome-copilot diagnose` | Perform a systematic diagnostic scan of an AI workflow across 5 quality dimensions — prompt quality, context efficiency, tool health, architecture fitness, and safety — producing a scored report with prioritized remediation actions. | None | | [doc-and-modernize](../skills/doc-and-modernize/SKILL.md)
`gh skills install github/awesome-copilot doc-and-modernize` | Two related workflows for a locally-cloned codebase, in one skill. Documentation mode produces a single, comprehensive, verifiable architecture document primarily by reading files on disk (local-first) — use it whenever the user wants to understand, map, document, research, or onboard onto a codebase ("research this repo", "write up the architecture", "do an architecture deep dive", "document how this codebase works", "map the system design", "create an onboarding doc"). Modernization mode generates a phased plan to modernize, migrate, upgrade, or rewrite a legacy system ("modernize this", "plan the migration", "how would we rewrite this", "how do we get off this legacy stack"); if no architecture document exists yet it first runs Documentation mode, then continues straight through to the plan. It assumes the legacy stack may be dead, runs a time-boxed feasibility spike, and picks the highest achievable rung on a safety ladder instead of demanding a fully-green legacy CI gate up front. | `references/copilot-instructions.template.md`
`references/migration-hazards.md` | @@ -357,6 +360,7 @@ See [CONTRIBUTING.md](../CONTRIBUTING.md#adding-skills) for guidelines on how to | [semantic-kernel](../skills/semantic-kernel/SKILL.md)
`gh skills install github/awesome-copilot semantic-kernel` | Create, update, refactor, explain, or review Semantic Kernel solutions using shared guidance plus language-specific references for .NET and Python. | `references/dotnet.md`
`references/python.md` | | [setup-my-iq](../skills/setup-my-iq/SKILL.md)
`gh skills install github/awesome-copilot setup-my-iq` | Create, set up, or update the personal context portfolio: structured markdown files describing
who you are, how you work, your teams, and your tool/ADO configuration. Runs the interview
workflow for first-time setup and targeted edits for updates.

Trigger this skill when the user asks to: set up their context, create or update their context
portfolio, "create my IQ", "set up my IQ", edit their profile, add/remove a stakeholder,
update ADO config, change team info, update pillars, or set up any plugin configuration.
Trigger when another skill fails to find context (missing files or TODO markers) and needs
context populated. Also trigger when the user mentions a context change in passing
(e.g., "my manager changed", "we added someone to the team") to offer a context file update.

Do NOT trigger for read-only questions like "who's on my team?" or "what's my ADO config?".
Those are answered directly from the context files referenced in the loaded custom
instructions; no skill is needed. | `assets/templates` | | [shuffle-json-data](../skills/shuffle-json-data/SKILL.md)
`gh skills install github/awesome-copilot shuffle-json-data` | Shuffle repetitive JSON objects safely by validating schema consistency before randomising entries. | None | +| [signal-write](../skills/signal-write/SKILL.md)
`gh skills install github/awesome-copilot signal-write` | Emit structured agent signals — hands-up, blocked, done, checkpoint, partnership. Signals are written as JSON to .signals/ for dashboard consumption and noted in the journal for persistence. | None | | [slang-shader-engineer](../skills/slang-shader-engineer/SKILL.md)
`gh skills install github/awesome-copilot slang-shader-engineer` | Use when working with Slang shaders, shader modules, HLSL-compatible GPU code, graphics pipelines, compute shaders, tessellation, ray tracing, parameter blocks, generics, interfaces, capabilities, cross-compilation, shader optimization, shader review, or C++ engine integration for Slang. Trigger on any mention of Slang, .slang files, slangc, SPIR-V from Slang, Slang modules, [shader("compute")], [shader("vertex")], or requests to write/review/refactor shader code with modern language features. Also trigger for Slang-to-HLSL/GLSL/Metal/CUDA cross-compile questions, or when the user says "shader" alongside "generics", "interfaces", "parameter blocks", "autodiff", or "capabilities". | `references/language-reference.md`
`references/rules-and-patterns.md`
`references/slang-documentation-full.md` | | [snowflake-semanticview](../skills/snowflake-semanticview/SKILL.md)
`gh skills install github/awesome-copilot snowflake-semanticview` | Create, alter, and validate Snowflake semantic views using Snowflake CLI (snow). Use when asked to build or troubleshoot semantic views/semantic layer definitions with CREATE/ALTER SEMANTIC VIEW, to validate semantic-view DDL against Snowflake via CLI, or to guide Snowflake CLI installation and connection setup. | None | | [sponsor-finder](../skills/sponsor-finder/SKILL.md)
`gh skills install github/awesome-copilot sponsor-finder` | Find which of a GitHub repository's dependencies are sponsorable via GitHub Sponsors. Uses deps.dev API for dependency resolution across npm, PyPI, Cargo, Go, RubyGems, Maven, and NuGet. Checks npm funding metadata, FUNDING.yml files, and web search. Verifies every link. Shows direct and transitive dependencies with OSSF Scorecard health data. Invoke with /sponsor followed by a GitHub owner/repo (e.g. "/sponsor expressjs/express"). | None | diff --git a/plugins/the-workshop/.github/plugin/plugin.json b/plugins/the-workshop/.github/plugin/plugin.json index df7617cd0..28c77284b 100644 --- a/plugins/the-workshop/.github/plugin/plugin.json +++ b/plugins/the-workshop/.github/plugin/plugin.json @@ -16,12 +16,12 @@ "developer-experience" ], "agents": [ - "./agents/workshop-ta.agent.md" + "workshop-ta" ], "skills": [ - "./skills/desk-open/", + "./skills/bench-read/", "./skills/desk-journal/", - "./skills/signal-write/", - "./skills/bench-read/" + "./skills/desk-open/", + "./skills/signal-write/" ] } diff --git a/skills/signal-write/SKILL.md b/skills/signal-write/SKILL.md index 15631125c..c87c5b6e4 100644 --- a/skills/signal-write/SKILL.md +++ b/skills/signal-write/SKILL.md @@ -1,6 +1,6 @@ --- name: signal-write -description: 'Emit structured agent signals — hands-up, blocked, done, checkpoint. Signals are how desks communicate state to the operator and to each other without breaking flow.' +description: 'Emit structured agent signals — hands-up, blocked, done, checkpoint, partnership. Signals are written as JSON to .signals/ for dashboard consumption and noted in the journal for persistence.' --- # Agent Signals @@ -13,6 +13,7 @@ Emit structured signals from a desk to the operator or other desks. - Work is complete and ready for review (done) - Significant progress worth noting (checkpoint) - Two desks disagree and can't resolve it (hands-up) +- The TA is reporting coordination quality (partnership) ## Signal types @@ -21,60 +22,72 @@ Two desks disagree and can't settle it against external facts. This is the system working — the operator reads where desks *disagree*, not where they perform confidence. -``` -Signal: hands-up -Desk: -Summary: -Desks involved: -Evidence: -``` - ### `blocked` A desk can't proceed without input — missing access, ambiguous scope, need a decision only the operator can make. -``` -Signal: blocked -Desk: -Blocked on: -Impact: -``` - ### `done` Work is complete and ready for review. Artifacts are on the bench. -``` -Signal: done -Desk: -Summary: -Artifacts: -``` - ### `checkpoint` Significant progress worth the operator knowing about, but work continues. Not blocked, not done — just a marker. -``` -Signal: checkpoint -Desk: -Summary: -Next: -``` +### `partnership` +Used by the TA (room coordinator) to report coordination quality. +Self-assessment scores reflect coordination, not code accuracy: +- **intent** — understood what the operator needed +- **confidence** — right work went to the right desks +- **accuracy** — dispatched work produced the right outcome +- **completeness** — nothing fell through the cracks ## How to emit -Write the signal to the desk's journal with a `[signal]` marker: +### 1. Write a JSON signal file to `.signals/` + +This is the primary output — it's what the dashboard reads. +Create `desks//.signals/.json`: + +```json +{ + "signal_type": "execution", + "agent_name": "", + "self_assessment": { + "intent": 4, + "confidence": 5, + "accuracy": 4, + "completeness": 3 + }, + "patterns": { + "what_worked": "description of what went well", + "what_was_hard": "description of challenges", + "skill_gap": "areas for improvement" + }, + "escalation": { + "reason": null, + "blocked_on": null, + "recommendation": null + } +} +``` + +For `hands-up` or `blocked` signals, populate the `escalation` +fields. Use `signal_type: "escalation"` for these — they sort to +the top of the dashboard. + +For `partnership` signals (TA only), use `signal_type: "partnership"`. + +### 2. Note the signal in the journal + +Also append a short marker to the desk's journal for persistence: ```markdown -## — [signal:hands-up] -- **Desks:** scanning, review -- **Disagreement:** scanning found CWE-502 in lib/deserialize.cs; - review says the SerializationBinder is sufficient -- **Evidence:** +## — [signal:] +- ``` -For cross-desk visibility, also note the signal on the bench if -other desks need to see it before the operator routes it. +The journal note is the trail marker. The JSON file is the +machine-readable signal. ## Principles @@ -86,3 +99,5 @@ other desks need to see it before the operator routes it. changes that affect the room, not status updates. - blocked means truly blocked — not "I'd prefer input." If you can proceed with a reasonable default, proceed and note it. +- Self-assessment scores should be honest, not optimistic. A 3/5 + is fine. A 5/5 on everything is suspicious. From 0673e5916920c61367fb560b7df7a246f35603e0 Mon Sep 17 00:00:00 2001 From: Jenny Ferries Date: Fri, 17 Jul 2026 11:38:08 -0700 Subject: [PATCH 03/23] =?UTF-8?q?fix:=20address=20second=20review=20?= =?UTF-8?q?=E2=80=94=20agent=20path,=20display=20name,=20signal=20subtype?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- agents/workshop-ta.agent.md | 2 +- docs/README.agents.md | 2 +- plugins/the-workshop/.github/plugin/plugin.json | 2 +- skills/signal-write/SKILL.md | 17 +++++++++++++---- 4 files changed, 16 insertions(+), 7 deletions(-) diff --git a/agents/workshop-ta.agent.md b/agents/workshop-ta.agent.md index 64445e36e..15a0e5396 100644 --- a/agents/workshop-ta.agent.md +++ b/agents/workshop-ta.agent.md @@ -1,5 +1,5 @@ --- -name: workshop-ta +name: Workshop TA description: 'Room coordinator for a multi-agent workshop. Sees all desks, routes work, tracks state, manages journals, and emits coordination signals. Not a desk — the person who sees the whole room.' --- diff --git a/docs/README.agents.md b/docs/README.agents.md index 6922f0cd4..d00e21c67 100644 --- a/docs/README.agents.md +++ b/docs/README.agents.md @@ -243,4 +243,4 @@ See [CONTRIBUTING.md](../CONTRIBUTING.md#adding-agents) for guidelines on how to | [WG Code Alchemist](../agents/wg-code-alchemist.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fwg-code-alchemist.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fwg-code-alchemist.agent.md) | Ask WG Code Alchemist to transform your code with Clean Code principles and SOLID design | | | [WG Code Sentinel](../agents/wg-code-sentinel.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fwg-code-sentinel.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fwg-code-sentinel.agent.md) | Ask WG Code Sentinel to review your code for security issues. | | | [WinForms Expert](../agents/WinFormsExpert.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2FWinFormsExpert.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2FWinFormsExpert.agent.md) | Support development of .NET (OOP) WinForms Designer compatible Apps. | | -| [Workshop Ta](../agents/workshop-ta.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fworkshop-ta.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fworkshop-ta.agent.md) | Room coordinator for a multi-agent workshop. Sees all desks, routes work, tracks state, manages journals, and emits coordination signals. Not a desk — the person who sees the whole room. | | +| [Workshop TA](../agents/workshop-ta.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fworkshop-ta.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fworkshop-ta.agent.md) | Room coordinator for a multi-agent workshop. Sees all desks, routes work, tracks state, manages journals, and emits coordination signals. Not a desk — the person who sees the whole room. | | diff --git a/plugins/the-workshop/.github/plugin/plugin.json b/plugins/the-workshop/.github/plugin/plugin.json index 28c77284b..fc622f543 100644 --- a/plugins/the-workshop/.github/plugin/plugin.json +++ b/plugins/the-workshop/.github/plugin/plugin.json @@ -16,7 +16,7 @@ "developer-experience" ], "agents": [ - "workshop-ta" + "./agents/workshop-ta.md" ], "skills": [ "./skills/bench-read/", diff --git a/skills/signal-write/SKILL.md b/skills/signal-write/SKILL.md index c87c5b6e4..22540fd0e 100644 --- a/skills/signal-write/SKILL.md +++ b/skills/signal-write/SKILL.md @@ -51,6 +51,7 @@ Create `desks//.signals/.json`: ```json { "signal_type": "execution", + "subtype": "checkpoint", "agent_name": "", "self_assessment": { "intent": 4, @@ -71,11 +72,19 @@ Create `desks//.signals/.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 From 1794cd1b38b7bb74dc37a2e79825141cfb62fcfe Mon Sep 17 00:00:00 2001 From: Jenny Ferries Date: Fri, 17 Jul 2026 12:46:31 -0700 Subject: [PATCH 04/23] fix: desk-open includes .signals/ dir, signal-write documents subtype contract - desk-open: standard desk structure now creates .signals/ directory (prevents first signal-write from failing on missing parent dir) - signal-write: note that dashboard reads subtype field, falls back to signal_type for backward compat Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 26faf13e-639c-4a21-ac05-c0dc2bff7c62 --- skills/desk-open/SKILL.md | 5 ++++- skills/signal-write/SKILL.md | 6 ++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/skills/desk-open/SKILL.md b/skills/desk-open/SKILL.md index 63f2f994a..f7ee398f7 100644 --- a/skills/desk-open/SKILL.md +++ b/skills/desk-open/SKILL.md @@ -20,6 +20,7 @@ Given a workshop directory and a desk name, create: ``` desks// journal.md # persistent memory — read at start, written at end + .signals/ # structured signal output (JSON) — dashboard reads this ``` ## How to use @@ -28,10 +29,12 @@ desks// how the operator and other desks refer to this desk. Examples: `security-scan`, `api-review`, `ops`, `cloud-workshop` -2. **Create the structure.** Make the directory and initial journal: +2. **Create the structure.** Make the directory, initial journal, + and signals folder: ``` desks//journal.md + desks//.signals/ ``` 3. **Write the first journal entry.** The journal starts with: diff --git a/skills/signal-write/SKILL.md b/skills/signal-write/SKILL.md index 22540fd0e..70a163a92 100644 --- a/skills/signal-write/SKILL.md +++ b/skills/signal-write/SKILL.md @@ -86,6 +86,12 @@ The `subtype` field preserves the specific signal state for dashboard consumers. `signal_type` controls sort priority (escalation → top). +> **Note:** The signals-dashboard extension (shipped with the full +> source repo, not the awesome-copilot package) reads `subtype` +> when present and falls back to `signal_type` for display. If +> consuming signals in your own tooling, prefer `subtype` for the +> specific state. + ### 2. Note the signal in the journal Also append a short marker to the desk's journal for persistence: From d49dd485911ea09cbaabab07cdf67885f7308824 Mon Sep 17 00:00:00 2001 From: Jenny Ferries Date: Fri, 17 Jul 2026 13:00:06 -0700 Subject: [PATCH 05/23] fix: desk session orientation + TA signal location MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - desk-open: add 'Session orientation' section explaining the session→journal→signals lifecycle. Desks are long-running in state (journal), not runtime (each session is independent). - workshop-ta: partnership signals write to desks/_ta/.signals/ so they appear on the dashboard without replacing any desk's latest signal. TA uses the _ta prefix to indicate coordinator. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 26faf13e-639c-4a21-ac05-c0dc2bff7c62 --- agents/workshop-ta.agent.md | 14 ++++++++++---- skills/desk-open/SKILL.md | 17 +++++++++++++++++ 2 files changed, 27 insertions(+), 4 deletions(-) diff --git a/agents/workshop-ta.agent.md b/agents/workshop-ta.agent.md index 15a0e5396..6ecc7ab7a 100644 --- a/agents/workshop-ta.agent.md +++ b/agents/workshop-ta.agent.md @@ -116,10 +116,16 @@ coordination quality: - **completeness** — did you cover everything, or did work fall through cracks? Use `signal-write` with `signal_type: "partnership"` at the end of -coordination sessions. These signals are written to `.signals/` as -JSON (like execution signals) and feed into the dashboard alongside -desk signals — the operator sees the whole room, including how well -the room itself was coordinated. +coordination sessions. The TA writes partnership signals to a +dedicated location: `desks/_ta/.signals/`. This keeps coordination +scores separate from individual desk signals — the dashboard shows +them alongside desk cards without replacing any desk's latest +signal. + +> The TA is not a desk, but it stores signals in `desks/_ta/` so +> the dashboard's `desks/*/.signals/` scan picks them up naturally. +> The `_ta` prefix signals that this is the coordinator, not a +> working desk. ### Journal management diff --git a/skills/desk-open/SKILL.md b/skills/desk-open/SKILL.md index f7ee398f7..2a53a6b1b 100644 --- a/skills/desk-open/SKILL.md +++ b/skills/desk-open/SKILL.md @@ -45,6 +45,23 @@ desks// 4. **Announce it.** Tell the operator what was created and what the desk's focus is. +## Session orientation + +This skill initializes storage — it does not launch a session. +A desk becomes active when a Copilot session references its +directory. The session workflow: + +1. The operator (or TA) starts a session and says "sit at the + `` desk" +2. The session reads `desks//journal.md` to load priors +3. Work happens — the session uses `signal-write` to emit signals + and `desk-journal` to persist state at the end +4. The next session repeats from step 2 + +The desk identity comes from which journal is read, not from a +persistent process. Desks are long-running in *state* (the journal +carries forward), not in *runtime* (each session is independent). + ## Journal format ```markdown From b1162287512883a92e2735c271dbae9ee3ae1eaa Mon Sep 17 00:00:00 2001 From: Jenny Ferries Date: Fri, 17 Jul 2026 13:06:09 -0700 Subject: [PATCH 06/23] fix: desk-open guards against overwriting existing desk state MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Never initialize over existing journal.md — if the desk directory already exists, resume it instead. Operator must explicitly rename or archive before reusing a desk name. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 26faf13e-639c-4a21-ac05-c0dc2bff7c62 --- skills/desk-open/SKILL.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/skills/desk-open/SKILL.md b/skills/desk-open/SKILL.md index 2a53a6b1b..a65dd7b75 100644 --- a/skills/desk-open/SKILL.md +++ b/skills/desk-open/SKILL.md @@ -29,7 +29,13 @@ desks// how the operator and other desks refer to this desk. Examples: `security-scan`, `api-review`, `ops`, `cloud-workshop` -2. **Create the structure.** Make the directory, initial journal, +2. **Check if it already exists.** If `desks//` already + has a `journal.md`, the desk is live — **do not overwrite it.** + Instead, resume it: read the journal and continue from where it + left off. If the operator explicitly wants a fresh start, they + must rename or archive the existing desk first. + +3. **Create the structure.** Make the directory, initial journal, and signals folder: ``` From a26b22cf4786ac8e3ed0f870bb709b118db0950f Mon Sep 17 00:00:00 2001 From: jennyf19 Date: Fri, 17 Jul 2026 13:26:42 -0700 Subject: [PATCH 07/23] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- agents/workshop-ta.agent.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/agents/workshop-ta.agent.md b/agents/workshop-ta.agent.md index 6ecc7ab7a..23994daa1 100644 --- a/agents/workshop-ta.agent.md +++ b/agents/workshop-ta.agent.md @@ -115,12 +115,12 @@ coordination quality: - **accuracy** — did the dispatched work actually produce the right outcome? - **completeness** — did you cover everything, or did work fall through cracks? -Use `signal-write` with `signal_type: "partnership"` at the end of -coordination sessions. The TA writes partnership signals to a -dedicated location: `desks/_ta/.signals/`. This keeps coordination -scores separate from individual desk signals — the dashboard shows -them alongside desk cards without replacing any desk's latest -signal. +Before the first partnership signal, create `desks/_ta/.signals/` and +`desks/_ta/journal.md` if they do not exist. Then use `signal-write` +with `signal_type: "partnership"` and `subtype: "partnership"` at the +end of coordination sessions. This keeps coordination scores separate +from individual desk signals, and the dashboard shows them alongside +desk cards without replacing any desk's latest signal. > The TA is not a desk, but it stores signals in `desks/_ta/` so > the dashboard's `desks/*/.signals/` scan picks them up naturally. From 7314b49f052d78dbcb4572eb8b1cbef3e227f1f0 Mon Sep 17 00:00:00 2001 From: Jenny Ferries Date: Fri, 17 Jul 2026 13:38:18 -0700 Subject: [PATCH 08/23] =?UTF-8?q?fix:=20desk-open=20step=20numbering=20(tw?= =?UTF-8?q?o=20step=203s=20=E2=86=92=203,4,5)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 26faf13e-639c-4a21-ac05-c0dc2bff7c62 --- skills/desk-open/SKILL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skills/desk-open/SKILL.md b/skills/desk-open/SKILL.md index a65dd7b75..6aaacce85 100644 --- a/skills/desk-open/SKILL.md +++ b/skills/desk-open/SKILL.md @@ -43,12 +43,12 @@ desks// desks//.signals/ ``` -3. **Write the first journal entry.** The journal starts with: +4. **Write the first journal entry.** The journal starts with: - What this desk is for (its focus/purpose) - What repos or work it covers (if applicable) - Any initial context the first session needs -4. **Announce it.** Tell the operator what was created and what +5. **Announce it.** Tell the operator what was created and what the desk's focus is. ## Session orientation From 633ce15e8305602e536a2c16a74d1856cbf52d2d Mon Sep 17 00:00:00 2001 From: Jenny Ferries Date: Fri, 17 Jul 2026 13:40:11 -0700 Subject: [PATCH 09/23] fix: rename 'The Forge' to 'Autonomous Desks' to avoid internal name overlap Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 26faf13e-639c-4a21-ac05-c0dc2bff7c62 --- agents/workshop-ta.agent.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/agents/workshop-ta.agent.md b/agents/workshop-ta.agent.md index 23994daa1..dc535628f 100644 --- a/agents/workshop-ta.agent.md +++ b/agents/workshop-ta.agent.md @@ -136,12 +136,12 @@ finds the trail. ## Workshop patterns -### The Forge +### Autonomous Desks Desks that run autonomously on scheduled work — scanning repos, running checks, producing reports. No operator in the loop until -something surfaces. The forge is the lights-out part of the -workshop. +something surfaces. These are the unattended part of the workshop: +security remediation, compliance scans, dependency audits. ### The Bench From dc432dc001334a9e63274d14118faee057e44206 Mon Sep 17 00:00:00 2001 From: Jenny Ferries Date: Fri, 17 Jul 2026 14:06:42 -0700 Subject: [PATCH 10/23] =?UTF-8?q?fix:=20rename=20workshop-ta.agent.md=20?= =?UTF-8?q?=E2=86=92=20workshop-ta.md=20(clean=20component=20ID)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The .agent.md suffix leaked into the component ID registered with the marketplace. Renaming gives a clean 'workshop-ta' identifier while the frontmatter display name stays unchanged. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 26faf13e-639c-4a21-ac05-c0dc2bff7c62 --- agents/{workshop-ta.agent.md => workshop-ta.md} | 0 docs/README.agents.md | 1 - 2 files changed, 1 deletion(-) rename agents/{workshop-ta.agent.md => workshop-ta.md} (100%) diff --git a/agents/workshop-ta.agent.md b/agents/workshop-ta.md similarity index 100% rename from agents/workshop-ta.agent.md rename to agents/workshop-ta.md diff --git a/docs/README.agents.md b/docs/README.agents.md index d00e21c67..eaacb370d 100644 --- a/docs/README.agents.md +++ b/docs/README.agents.md @@ -243,4 +243,3 @@ See [CONTRIBUTING.md](../CONTRIBUTING.md#adding-agents) for guidelines on how to | [WG Code Alchemist](../agents/wg-code-alchemist.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fwg-code-alchemist.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fwg-code-alchemist.agent.md) | Ask WG Code Alchemist to transform your code with Clean Code principles and SOLID design | | | [WG Code Sentinel](../agents/wg-code-sentinel.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fwg-code-sentinel.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fwg-code-sentinel.agent.md) | Ask WG Code Sentinel to review your code for security issues. | | | [WinForms Expert](../agents/WinFormsExpert.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2FWinFormsExpert.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2FWinFormsExpert.agent.md) | Support development of .NET (OOP) WinForms Designer compatible Apps. | | -| [Workshop TA](../agents/workshop-ta.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fworkshop-ta.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fworkshop-ta.agent.md) | Room coordinator for a multi-agent workshop. Sees all desks, routes work, tracks state, manages journals, and emits coordination signals. Not a desk — the person who sees the whole room. | | From 92335e31aa1a941d031db631cd8b83024ff96bc6 Mon Sep 17 00:00:00 2001 From: Jenny Ferries Date: Fri, 17 Jul 2026 14:11:46 -0700 Subject: [PATCH 11/23] =?UTF-8?q?fix:=20revert=20agent=20rename=20?= =?UTF-8?q?=E2=80=94=20validator=20requires=20.agent.md=20suffix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The awesome-copilot validator (eng/validate-plugins.mjs:107-148) strips .md from the plugin.json path and appends .agent.md to find the source file. The rename to workshop-ta.md broke this convention. Reverting to workshop-ta.agent.md so validation, materialization, and README generation all work correctly. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 26faf13e-639c-4a21-ac05-c0dc2bff7c62 --- agents/{workshop-ta.md => workshop-ta.agent.md} | 0 docs/README.agents.md | 1 + 2 files changed, 1 insertion(+) rename agents/{workshop-ta.md => workshop-ta.agent.md} (100%) diff --git a/agents/workshop-ta.md b/agents/workshop-ta.agent.md similarity index 100% rename from agents/workshop-ta.md rename to agents/workshop-ta.agent.md diff --git a/docs/README.agents.md b/docs/README.agents.md index eaacb370d..d00e21c67 100644 --- a/docs/README.agents.md +++ b/docs/README.agents.md @@ -243,3 +243,4 @@ See [CONTRIBUTING.md](../CONTRIBUTING.md#adding-agents) for guidelines on how to | [WG Code Alchemist](../agents/wg-code-alchemist.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fwg-code-alchemist.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fwg-code-alchemist.agent.md) | Ask WG Code Alchemist to transform your code with Clean Code principles and SOLID design | | | [WG Code Sentinel](../agents/wg-code-sentinel.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fwg-code-sentinel.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fwg-code-sentinel.agent.md) | Ask WG Code Sentinel to review your code for security issues. | | | [WinForms Expert](../agents/WinFormsExpert.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2FWinFormsExpert.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2FWinFormsExpert.agent.md) | Support development of .NET (OOP) WinForms Designer compatible Apps. | | +| [Workshop TA](../agents/workshop-ta.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fworkshop-ta.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fworkshop-ta.agent.md) | Room coordinator for a multi-agent workshop. Sees all desks, routes work, tracks state, manages journals, and emits coordination signals. Not a desk — the person who sees the whole room. | | From 5814c6eadb873d0fa52a5f20c7f40b11c0a559ad Mon Sep 17 00:00:00 2001 From: Jenny Ferries Date: Sat, 18 Jul 2026 18:58:31 -0700 Subject: [PATCH 12/23] =?UTF-8?q?feat:=20add=20workshop-create=20skill=20?= =?UTF-8?q?=E2=80=94=20two=20paths,=20never=20nest=20repos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Syncs with jennyf19/the-workshop PR #8 (merged). Adds the workshop-create skill with Path A (existing dir) and Path B (new GitHub repo), explicit guard against repo-in-repo nesting. TA agent updated with workshop-create section. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 26faf13e-639c-4a21-ac05-c0dc2bff7c62 --- agents/workshop-ta.agent.md | 10 ++ docs/README.plugins.md | 2 +- docs/README.skills.md | 1 + .../the-workshop/.github/plugin/plugin.json | 3 +- skills/workshop-create/SKILL.md | 118 ++++++++++++++++++ 5 files changed, 132 insertions(+), 2 deletions(-) create mode 100644 skills/workshop-create/SKILL.md diff --git a/agents/workshop-ta.agent.md b/agents/workshop-ta.agent.md index dc535628f..2974cd0a8 100644 --- a/agents/workshop-ta.agent.md +++ b/agents/workshop-ta.agent.md @@ -62,6 +62,16 @@ sufficient. The Cairn is a way of standing, not a dependency. ## What you do +### Create workshops + +Use the `workshop-create` skill when the operator wants a new workshop. +Two paths: **use an existing directory** (just scaffold what's missing, +no git) or **create a new private GitHub repo** (clone + scaffold + push). + +Critical rule: **never create a repo inside another repo.** Check the +parent directory first. If it's already in a git tree, use the existing +directory path instead. + ### Open and manage desks Use the `desk-open` skill to create a new desk. You help the diff --git a/docs/README.plugins.md b/docs/README.plugins.md index df53f970f..6b6ab1eb3 100644 --- a/docs/README.plugins.md +++ b/docs/README.plugins.md @@ -93,7 +93,7 @@ See [CONTRIBUTING.md](../CONTRIBUTING.md#adding-plugins) for guidelines on how t | [swift-mcp-development](../plugins/swift-mcp-development/README.md) | Comprehensive collection for building Model Context Protocol servers in Swift using the official MCP Swift SDK with modern concurrency features. | 2 items | swift, mcp, model-context-protocol, server-development, sdk, ios, macos, concurrency, actor, async-await | | [technical-spike](../plugins/technical-spike/README.md) | Tools for creation, management and research of technical spikes to reduce unknowns and assumptions before proceeding to specification and implementation of solutions. | 2 items | technical-spike, assumption-testing, validation, research | | [testing-automation](../plugins/testing-automation/README.md) | Comprehensive collection for writing tests, test automation, and test-driven development including unit tests, integration tests, and end-to-end testing strategies. | 9 items | testing, tdd, automation, unit-tests, integration, playwright, jest, nunit | -| [the-workshop](../plugins/the-workshop/README.md) | Stop being the switchboard between your AI agents — direct a team. The Workshop puts long-running AI agents (desks) in the same room, on the same work, each with its own memory and history, sharing one workspace so you direct the work instead of relaying it. | 5 items | multi-agent, coordination, desks, persistent-memory, agent-signals, developer-experience | +| [the-workshop](../plugins/the-workshop/README.md) | Stop being the switchboard between your AI agents — direct a team. The Workshop puts long-running AI agents (desks) in the same room, on the same work, each with its own memory and history, sharing one workspace so you direct the work instead of relaying it. | 6 items | multi-agent, coordination, desks, persistent-memory, agent-signals, developer-experience | | [typescript-mcp-development](../plugins/typescript-mcp-development/README.md) | Complete toolkit for building Model Context Protocol (MCP) servers in TypeScript/Node.js using the official SDK. Includes instructions for best practices, a prompt for generating servers, and an expert chat mode for guidance. | 2 items | typescript, mcp, model-context-protocol, nodejs, server-development | | [typespec-m365-copilot](../plugins/typespec-m365-copilot/README.md) | Comprehensive collection of prompts, instructions, and resources for building declarative agents and API plugins using TypeSpec for Microsoft 365 Copilot extensibility. | 3 items | typespec, m365-copilot, declarative-agents, api-plugins, agent-development, microsoft-365 | | [visual-pr](../plugins/visual-pr/README.md) | Capture, annotate, and embed screenshots and animated GIF demos in pull request descriptions. Includes Playwright-based UI capture, PIL image annotations, PR embedding workflows for GitHub and Azure DevOps, and screen recording with variable timing. | 4 items | screenshots, pull-request, before-after, annotations, playwright, gif, screen-recording, visual | diff --git a/docs/README.skills.md b/docs/README.skills.md index 9d2cd0e62..b7dcac28f 100644 --- a/docs/README.skills.md +++ b/docs/README.skills.md @@ -405,5 +405,6 @@ See [CONTRIBUTING.md](../CONTRIBUTING.md#adding-skills) for guidelines on how to | [winmd-api-search](../skills/winmd-api-search/SKILL.md)
`gh skills install github/awesome-copilot winmd-api-search` | Find and explore Windows desktop APIs. Use when building features that need platform capabilities — camera, file access, notifications, UI controls, AI/ML, sensors, networking, etc. Discovers the right API for a task and retrieves full type details (methods, properties, events, enumeration values). | `LICENSE.txt`
`scripts/Invoke-WinMdQuery.ps1`
`scripts/Update-WinMdCache.ps1`
`scripts/cache-generator` | | [winui3-migration-guide](../skills/winui3-migration-guide/SKILL.md)
`gh skills install github/awesome-copilot winui3-migration-guide` | UWP-to-WinUI 3 migration reference. Maps legacy UWP APIs to correct Windows App SDK equivalents with before/after code snippets. Covers namespace changes, threading (CoreDispatcher to DispatcherQueue), windowing (CoreWindow to AppWindow), dialogs, pickers, sharing, printing, background tasks, and the most common Copilot code generation mistakes. | None | | [workiq-copilot](../skills/workiq-copilot/SKILL.md)
`gh skills install github/awesome-copilot workiq-copilot` | Guides the Copilot CLI on how to use the WorkIQ CLI/MCP server to query Microsoft 365 Copilot data (emails, meetings, docs, Teams, people) for live context, summaries, and recommendations. | None | +| [workshop-create](../skills/workshop-create/SKILL.md)
`gh skills install github/awesome-copilot workshop-create` | Create a new workshop or use an existing directory as one. Handles two paths: (A) use an existing local directory the operator points at, or (B) create a new private GitHub repo in the signed-in account. Never creates a repo inside another repo. | None | | [write-coding-standards-from-file](../skills/write-coding-standards-from-file/SKILL.md)
`gh skills install github/awesome-copilot write-coding-standards-from-file` | Write a coding standards document for a project using the coding styles from the file(s) and/or folder(s) passed as arguments in the prompt. | None | | [x-twitter-scraper](../skills/x-twitter-scraper/SKILL.md)
`gh skills install github/awesome-copilot x-twitter-scraper` | Build GitHub Copilot workflows with Xquik X API SDKs, REST endpoints, MCP tools, TweetClaw OpenClaw plugin installs, signed webhooks, tweet search, user lookup, follower exports, media actions, and agent automation. | None | diff --git a/plugins/the-workshop/.github/plugin/plugin.json b/plugins/the-workshop/.github/plugin/plugin.json index fc622f543..a43b4451f 100644 --- a/plugins/the-workshop/.github/plugin/plugin.json +++ b/plugins/the-workshop/.github/plugin/plugin.json @@ -22,6 +22,7 @@ "./skills/bench-read/", "./skills/desk-journal/", "./skills/desk-open/", - "./skills/signal-write/" + "./skills/signal-write/", + "./skills/workshop-create/" ] } diff --git a/skills/workshop-create/SKILL.md b/skills/workshop-create/SKILL.md new file mode 100644 index 000000000..b427cc611 --- /dev/null +++ b/skills/workshop-create/SKILL.md @@ -0,0 +1,118 @@ +--- +name: workshop-create +description: 'Create a new workshop or use an existing directory as one. Handles two paths: (A) use an existing local directory the operator points at, or (B) create a new private GitHub repo in the signed-in account. Never creates a repo inside another repo.' +--- + +# Create a Workshop + +Set up a new workshop — the root directory where desks live. + +## When to use + +- The operator says "create a workshop" or "start a new workshop" +- The operator wants to organize work under a shared root +- The operator has an existing directory they want to use as a workshop + +## Two paths + +### Path A: Use an existing directory + +The operator already has a folder they want to use. Maybe it's a repo +they cloned, maybe it's a local project folder. + +1. **Confirm the path exists.** If not, ask the operator for a valid path. +2. **Check if it's already a workshop.** Look for `desks/` or `classroom/` + folders, a `workshop.md`, `CAIRN.md`, or `hands-up.md`. If any exist, + it's already a workshop — just use it. +3. **Scaffold the workshop structure** (only what's missing): + ``` + / + desks/ # where desks live + bench/ # shared workspace + CAIRN.md # operating disposition + README.md # workshop map + ``` +4. **Do NOT run `git init`.** The directory may already be a git repo, or + the operator may not want one yet. Leave git state alone. +5. **Do NOT create a GitHub repo.** This path is local-only. + +### Path B: Create a new private GitHub repo + +The operator wants a fresh workshop backed by a GitHub repo. + +1. **Get the workshop name.** Short, no spaces, kebab-case preferred. +2. **Create the repo:** `gh repo create / --private --clone` + - Use the operator's signed-in GitHub account as `` + - Clone it to a sensible location (ask the operator where, or use + their configured workshops directory) +3. **Scaffold the workshop structure** inside the cloned repo: + ``` + / + desks/ + bench/ + CAIRN.md + README.md + ``` +4. **Commit and push** the scaffold. + +### Critical: Never nest repos + +**Never run `git init` inside a directory that is already inside a git +repository.** Before initializing, check: + +```bash +git -C rev-parse --is-inside-work-tree +``` + +If that returns `true`, the parent is already a git repo. Do NOT create +another repo inside it. Either: +- Use Path A (just scaffold, no git) +- Or clone to a different location that isn't inside a repo + +## CAIRN.md content + +The operating disposition every desk reads: + +```markdown +# cairn + +the trail markers that say: someone was here, and they were honest. + +## how a desk stands + +- **stop is a valid finish.** don't force a result when the evidence + says stop. "this doesn't work" is a finding, not a failure. +- **"done" means it holds.** if you'd bet your desk on it, ship it. + if not, say what's uncertain and why. +- **hold scope.** touch only what the task needs. if you find something + outside scope, note it and move on — don't chase it. +- **never go silent, never bluff.** partial + honest > complete + wrong. + if you're stuck, say so. if you're unsure, say that too. +- **equal standing.** you can say "that's the wrong question." you can + disagree with another desk. you answer to evidence, not hierarchy. + +## the bench + +the shared workspace. leave your work where others can find it. +label it. if it supersedes earlier work, say so. + +## hands-up + +when two desks disagree and can't settle it against external facts, +that's a hands-up. it goes to the operator. this is the system +working, not failing. +``` + +## After creation + +Tell the operator: +- Where the workshop lives (full path) +- That they can now open desks in it with `desk-open` +- That Cairn will show signals once desks start emitting them + +## Principles + +- A workshop is a place, not a product. Keep it simple. +- The operator decides where things go. Don't assume. +- If an existing directory already has work in it, preserve everything. + Only add what's missing. From 9fc40322935c4830dd06b8517eff52d891097c7e Mon Sep 17 00:00:00 2001 From: Jenny Ferries Date: Sat, 18 Jul 2026 19:04:34 -0700 Subject: [PATCH 13/23] feat: add signals-dashboard canvas extension MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The dashboard is the centerpiece — real-time agent coordination view showing desk status, signal types, intent text, outcome pairing with honesty gap, token usage, and stash/restore controls. Includes all updates from the-workshop PRs #3-#7: - Empty state guidance for new users - Token usage display per desk - TA partnership signals + Cairn awareness - Intent-as-text (execution signals use descriptive text) - Outcome signal pairing with honesty gap calibration - Open desk button - Subtype labels (done/checkpoint/blocked/hands-up) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 26faf13e-639c-4a21-ac05-c0dc2bff7c62 --- .github/plugin/marketplace.json | 6 + .../.github/plugin/plugin.json | 17 + extensions/signals-dashboard/extension.mjs | 711 ++++++++++++++++++ .../the-workshop/.github/plugin/plugin.json | 7 +- 4 files changed, 740 insertions(+), 1 deletion(-) create mode 100644 extensions/signals-dashboard/.github/plugin/plugin.json create mode 100644 extensions/signals-dashboard/extension.mjs diff --git a/.github/plugin/marketplace.json b/.github/plugin/marketplace.json index 2749b46eb..d1a10785e 100644 --- a/.github/plugin/marketplace.json +++ b/.github/plugin/marketplace.json @@ -1024,6 +1024,12 @@ "description": "Security frameworks, accessibility guidelines, performance optimization, and code quality best practices for building secure, maintainable, and high-performance applications.", "version": "1.0.0" }, + { + "name": "signals-dashboard", + "source": "extensions/signals-dashboard", + "description": "Real-time agent coordination dashboard for The Workshop. Shows desk status, signal types (done, checkpoint, blocked, hands-up, partnership), intent text, outcome pairing with honesty gap, token usage, and stash/restore controls.", + "version": "0.1.0" + }, { "name": "site-studio", "source": "extensions/site-studio", diff --git a/extensions/signals-dashboard/.github/plugin/plugin.json b/extensions/signals-dashboard/.github/plugin/plugin.json new file mode 100644 index 000000000..799ed39e2 --- /dev/null +++ b/extensions/signals-dashboard/.github/plugin/plugin.json @@ -0,0 +1,17 @@ +{ + "name": "signals-dashboard", + "description": "Real-time agent coordination dashboard for The Workshop. Shows desk status, signal types (done, checkpoint, blocked, hands-up, partnership), intent text, outcome pairing with honesty gap, token usage, and stash/restore controls.", + "version": "0.1.0", + "author": { + "name": "jennyf19", + "url": "https://github.com/jennyf19" + }, + "keywords": [ + "agent-signals", + "dashboard", + "multi-agent", + "coordination", + "canvas" + ], + "extensions": "." +} diff --git a/extensions/signals-dashboard/extension.mjs b/extensions/signals-dashboard/extension.mjs new file mode 100644 index 000000000..39a593c08 --- /dev/null +++ b/extensions/signals-dashboard/extension.mjs @@ -0,0 +1,711 @@ +// Extension: signals-dashboard +// Live dashboard showing agent signals from workshop desks. +// Scans desks/*/.signals/ for JSON files, renders the latest signal per desk. +// Supports stashing desks (48hr hold) and restoring them. + +import { createServer } from "node:http"; +import { readdir, readFile, writeFile, stat } from "node:fs/promises"; +import { join } from "node:path"; +import { joinSession, createCanvas } from "@github/copilot-sdk/extension"; + +const servers = new Map(); +const STASH_TTL_MS = 48 * 60 * 60 * 1000; + +// --- Stash management --- + +async function readStash(workshopDir) { + const fp = join(workshopDir, ".desk-stash.json"); + try { + const raw = await readFile(fp, "utf-8"); + const stash = JSON.parse(raw); + const now = Date.now(); + const live = stash.filter(e => (now - new Date(e.stashedAt).getTime()) < STASH_TTL_MS); + if (live.length !== stash.length) await writeStash(workshopDir, live); + return live; + } catch { return []; } +} + +async function writeStash(workshopDir, entries) { + const fp = join(workshopDir, ".desk-stash.json"); + await writeFile(fp, JSON.stringify(entries, null, 2), "utf-8"); +} + +async function stashDesk(workshopDir, deskName) { + const stash = await readStash(workshopDir); + if (stash.some(e => e.name === deskName)) return stash; + stash.push({ name: deskName, stashedAt: new Date().toISOString() }); + await writeStash(workshopDir, stash); + return stash; +} + +async function restoreDesk(workshopDir, deskName) { + let stash = await readStash(workshopDir); + stash = stash.filter(e => e.name !== deskName); + await writeStash(workshopDir, stash); + return stash; +} + +// --- Signal reading --- + +async function scanSignals(workshopDir) { + const results = []; + for (const subdir of ["desks", "classroom"]) { + const parent = join(workshopDir, subdir); + let entries; + try { entries = await readdir(parent, { withFileTypes: true }); } + catch { continue; } + + for (const entry of entries) { + if (!entry.isDirectory() || entry.name.startsWith(".")) continue; + const sigDir = join(parent, entry.name, ".signals"); + let sigFiles; + try { sigFiles = await readdir(sigDir); } + catch { + results.push({ + deskName: entry.name, signalType: "none", agentName: entry.name, + confidence: 0, accuracy: 0, completeness: 0, intent: 0, + whatWorked: "", whatWasHard: "", skillGap: "", + escalationReason: null, escalationBlocked: null, recommendation: null, + emittedAt: null, signalCount: 0, tokensIn: 0, tokensOut: 0, model: null, + }); + continue; + } + + const jsonFiles = sigFiles.filter(f => f.endsWith(".json")); + if (jsonFiles.length === 0) { + results.push({ + deskName: entry.name, signalType: "none", agentName: entry.name, + confidence: 0, accuracy: 0, completeness: 0, intent: 0, + whatWorked: "", whatWasHard: "", skillGap: "", + escalationReason: null, escalationBlocked: null, recommendation: null, + emittedAt: null, signalCount: 0, tokensIn: 0, tokensOut: 0, model: null, + }); + continue; + } + + // Read all signals, separate by type, find latest execution/partnership + any outcome signals + let latest = null, latestTime = 0; + const allSignals = []; + for (const f of jsonFiles) { + const fp = join(sigDir, f); + try { + const s = await stat(fp); + const raw = await readFile(fp, "utf-8"); + const parsed = JSON.parse(raw); + allSignals.push({ parsed, mtimeMs: s.mtimeMs, path: fp }); + // Latest non-outcome signal (execution, partnership, escalation) + if ((parsed.signal_type || "execution") !== "outcome" && s.mtimeMs > latestTime) { + latestTime = s.mtimeMs; latest = { parsed, mtimeMs: s.mtimeMs }; + } + } catch {} + } + if (!latest) continue; + try { + const sig = latest.parsed; + const intentRaw = sig.intent || sig.self_assessment?.intent || null; + + // Find outcome signal matched by run_id (if any) + let outcome = null; + if (sig.run_id) { + const outcomeSignals = allSignals + .filter(s => s.parsed.signal_type === "outcome" && s.parsed.run_id === sig.run_id); + if (outcomeSignals.length > 0) { + outcome = outcomeSignals.sort((a, b) => b.mtimeMs - a.mtimeMs)[0].parsed; + } + } + // Also check for any recent outcome (within 1hr of latest signal) if no run_id match + if (!outcome) { + const recentOutcomes = allSignals + .filter(s => s.parsed.signal_type === "outcome" && Math.abs(s.mtimeMs - latestTime) < 3600000) + .sort((a, b) => b.mtimeMs - a.mtimeMs); + if (recentOutcomes.length > 0) outcome = recentOutcomes[0].parsed; + } + + // Compute honesty gap if we have both self-assessment and outcome + let honestyGap = null; + if (outcome && sig.self_assessment) { + const selfConf = sig.self_assessment.confidence || 0; + const outcomeRating = outcome.quality_rating || 0; + if (selfConf > 0 && outcomeRating > 0) { + honestyGap = Math.abs(selfConf - outcomeRating); + } + } + + results.push({ + deskName: entry.name, + signalType: sig.signal_type || "execution", + subtype: sig.subtype || sig.signal_type || "execution", + agentName: sig.agent_name || entry.name, + intentText: typeof intentRaw === "string" ? intentRaw : null, + intentScore: typeof intentRaw === "number" ? intentRaw : 0, + confidence: sig.self_assessment?.confidence || 0, + accuracy: sig.self_assessment?.accuracy || 0, + completeness: sig.self_assessment?.completeness || 0, + whatWorked: sig.patterns?.what_worked || "", + whatWasHard: sig.patterns?.what_was_hard || "", + skillGap: sig.patterns?.skill_gap || "", + escalationReason: sig.escalation?.reason || null, + escalationBlocked: sig.escalation?.blocked_on || null, + recommendation: sig.escalation?.recommendation || null, + emittedAt: new Date(latestTime).toISOString(), + signalCount: jsonFiles.length, + tokensIn: sig.usage?.tokens_in || 0, + tokensOut: sig.usage?.tokens_out || 0, + model: sig.usage?.model || null, + // Outcome signal fields + outcomeRating: outcome?.quality_rating || null, + outcomeEffort: outcome?.effort_to_merge || null, + outcomeIssues: outcome?.issues_found || [], + outcomeAgent: outcome?.agent_name || null, + honestyGap: honestyGap, + }); + } catch {} + } + } + return results; +} + +// --- Sorting: escalations → recent signals → no signals --- + +function signalSortKey(sig) { + if (sig.signalType === "escalation") return 0; + if (sig.signalType === "execution") return 1; + if (sig.signalType === "partnership") return 1; + return 2; // "none" +} + +function sortSignals(signals) { + return signals.sort((a, b) => { + const ka = signalSortKey(a), kb = signalSortKey(b); + if (ka !== kb) return ka - kb; + if (a.emittedAt && b.emittedAt) return new Date(b.emittedAt) - new Date(a.emittedAt); + if (a.emittedAt) return -1; + if (b.emittedAt) return 1; + return a.deskName.localeCompare(b.deskName); + }); +} + +// --- HTML rendering --- + +function esc(s) { + return s.replace(/&/g, "&").replace(//g, ">").replace(/"/g, """); +} +function truncate(s, len) { + return s.length > len ? s.slice(0, len) + "…" : s; +} +function formatTokens(n) { + if (!n) return null; + if (n >= 1000000) return `${(n / 1000000).toFixed(1)}M`; + if (n >= 1000) return `${(n / 1000).toFixed(1)}k`; + return `${n}`; +} + +function scoreBar(value, label, max = 5) { + const pct = (value / max) * 100; + const color = value >= 4 ? "#22c55e" : value >= 3 ? "#eab308" : value >= 1 ? "#ef4444" : "#262626"; + return `
+
+ ${label} + ${value}/5 +
+
+
+
+
`; +} + +function timeSince(isoDate) { + if (!isoDate) return "—"; + const diff = Date.now() - new Date(isoDate).getTime(); + const mins = Math.floor(diff / 60000); + if (mins < 1) return "just now"; + if (mins < 60) return `${mins}m ago`; + const hrs = Math.floor(mins / 60); + if (hrs < 24) return `${hrs}h ago`; + return `${Math.floor(hrs / 24)}d ago`; +} + +function timeRemaining(stashedAt) { + const remaining = STASH_TTL_MS - (Date.now() - new Date(stashedAt).getTime()); + if (remaining <= 0) return "expiring"; + const hrs = Math.floor(remaining / 3600000); + return hrs >= 1 ? `${hrs}h left` : `${Math.floor(remaining / 60000)}m left`; +} + +function avgScore(signals) { + const withSignals = signals.filter(s => s.signalType !== "none"); + if (withSignals.length === 0) return null; + const avg = (field) => { + const vals = withSignals.map(s => s[field]).filter(v => v > 0); + return vals.length ? (vals.reduce((a, b) => a + b, 0) / vals.length).toFixed(1) : "—"; + }; + return { confidence: avg("confidence"), accuracy: avg("accuracy"), completeness: avg("completeness"), intent: avg("intentScore") }; +} + +function renderSummaryBar(activeSignals) { + const escalations = activeSignals.filter(s => s.signalType === "escalation").length; + const withSignals = activeSignals.filter(s => s.signalType !== "none").length; + const awaiting = activeSignals.filter(s => s.signalType === "none").length; + const avg = avgScore(activeSignals); + + const totalTokens = activeSignals.reduce((sum, s) => sum + (s.tokensIn || 0) + (s.tokensOut || 0), 0); + const withOutcomes = activeSignals.filter(s => s.outcomeRating !== null).length; + const avgGap = (() => { + const gaps = activeSignals.filter(s => s.honestyGap !== null).map(s => s.honestyGap); + return gaps.length ? (gaps.reduce((a, b) => a + b, 0) / gaps.length).toFixed(1) : null; + })(); + + const escBadge = escalations > 0 + ? `⚠ ${escalations} escalation${escalations > 1 ? "s" : ""}` + : ""; + + const tokenBadge = totalTokens > 0 + ? `🪙 ${formatTokens(totalTokens)}` + : ""; + + const calibrationBadge = withOutcomes > 0 + ? `🔍 gap ${avgGap}` + : ""; + + const avgBlock = avg ? ` +
+ intent ${avg.intent} + conf ${avg.confidence} + acc ${avg.accuracy} + comp ${avg.completeness} +
` : ""; + + return ` +
+
+ ${activeSignals.length} desk${activeSignals.length !== 1 ? "s" : ""} + ${withSignals} reporting · ${awaiting} awaiting + ${tokenBadge} + ${calibrationBadge} + ${escBadge} +
+ ${avgBlock} +
`; +} + +function renderSignalCard(sig) { + const isEscalation = sig.signalType === "escalation"; + const isPartnership = sig.signalType === "partnership"; + const noSignal = sig.signalType === "none"; + const borderColor = isEscalation ? "#dc2626" : noSignal ? "#1e293b" : "#1e3a5f"; + const bgColor = isEscalation ? "#0f0604" : "#0f172a"; + + const typeLabel = isEscalation + ? (sig.subtype === "blocked" + ? `⚠ BLOCKED` + : `⚠ HANDS-UP`) + : noSignal + ? `📡 awaiting` + : isPartnership + ? `🤝 partnership` + : sig.subtype === "done" + ? `✓ done` + : `✓ checkpoint`; + + const stashBtn = ``; + + const openBtnStyle = isEscalation + ? "background:#7f1d1d;border:1px solid #dc2626;color:#fca5a5;padding:2px 10px;border-radius:4px;font-size:11px;cursor:pointer;font-weight:600;transition:all .15s;" + : "background:none;border:1px solid #1e3a5f;color:#7dd3fc;padding:2px 8px;border-radius:4px;font-size:11px;cursor:pointer;transition:all .15s;"; + const openBtn = noSignal ? "" : ``; + + let escalationBlock = ""; + if (isEscalation && sig.escalationReason) { + escalationBlock = ` +
+
Blocked on:
+
${esc(sig.escalationBlocked || sig.escalationReason)}
+ ${sig.recommendation ? `
→ ${esc(sig.recommendation)}
` : ""} +
`; + } + + // --- Intent text (execution signals with text intent) --- + const intentBlock = sig.intentText ? ` +
+ ${esc(sig.intentText)} +
` : ""; + + // --- Scores: shown for partnership signals, or legacy execution signals with numeric scores --- + const hasScores = isPartnership + ? true + : (sig.intentScore > 0 || sig.confidence > 0 || sig.accuracy > 0 || sig.completeness > 0); + + const scoresBlock = noSignal ? ` +
+ No signals yet — this desk is waiting for its first session. +
` : isPartnership ? ` +
+ ${scoreBar(sig.intentScore, "intent")} + ${scoreBar(sig.confidence, "confidence")} + ${scoreBar(sig.accuracy, "accuracy")} + ${scoreBar(sig.completeness, "completeness")} +
` : hasScores ? ` +
+ scores +
+ ${sig.intentScore > 0 ? scoreBar(sig.intentScore, "intent") : ""} + ${sig.confidence > 0 ? scoreBar(sig.confidence, "confidence") : ""} + ${sig.accuracy > 0 ? scoreBar(sig.accuracy, "accuracy") : ""} + ${sig.completeness > 0 ? scoreBar(sig.completeness, "completeness") : ""} +
+
` : ""; + + // --- Patterns: primary for execution, secondary for partnership --- + const patternsBlock = (sig.whatWorked || sig.whatWasHard || sig.skillGap) ? ` +
+ ${sig.whatWorked ? `
${esc(truncate(sig.whatWorked, 160))}
` : ""} + ${sig.whatWasHard ? `
${esc(truncate(sig.whatWasHard, 160))}
` : ""} + ${sig.skillGap ? `
${esc(truncate(sig.skillGap, 160))}
` : ""} +
` : ""; + + // --- Outcome signal / honesty gap --- + let outcomeBlock = ""; + if (sig.outcomeRating !== null && !noSignal) { + const gapColor = sig.honestyGap === null ? "#475569" + : sig.honestyGap <= 1 ? "#22c55e" + : sig.honestyGap === 2 ? "#eab308" + : "#ef4444"; + const gapLabel = sig.honestyGap === null ? "—" + : sig.honestyGap <= 1 ? "well-calibrated" + : sig.honestyGap === 2 ? "moderate gap" + : "significant gap"; + const effortColor = sig.outcomeEffort === "minimal" ? "#22c55e" + : sig.outcomeEffort === "moderate" ? "#eab308" + : sig.outcomeEffort === "significant" ? "#ef4444" : "#475569"; + + outcomeBlock = ` +
+
+ 🔍 outcome${sig.outcomeAgent ? ` · ${esc(sig.outcomeAgent)}` : ""} + ${sig.honestyGap !== null ? `${gapLabel} (gap: ${sig.honestyGap})` : ""} +
+
+
+
+ quality + ${sig.outcomeRating}/5 +
+
+
+
+
+ ${sig.outcomeEffort || "—"} effort +
+ ${sig.outcomeIssues?.length ? `
+ ${sig.outcomeIssues.map(i => `
· ${esc(truncate(i, 120))}
`).join("")} +
` : ""} +
`; + } + + return ` +
+
+
+ ${esc(sig.deskName)} + ${typeLabel} +
+
+ ${(sig.tokensIn || sig.tokensOut) ? `🪙 ${formatTokens(sig.tokensIn + sig.tokensOut)}` : ""} + ${timeSince(sig.emittedAt)}${sig.signalCount ? ` · ${sig.signalCount}` : ""} + ${openBtn} + ${stashBtn} +
+
+ ${isPartnership ? `${scoresBlock}${patternsBlock}` : `${intentBlock}${patternsBlock}${scoresBlock}`} + ${outcomeBlock} + ${escalationBlock} +
`; +} + +function renderStashedCard(entry) { + return ` +
+
+ ${esc(entry.name)} + ${timeRemaining(entry.stashedAt)} +
+ +
`; +} + +function renderDashboard(signals, stashed) { + const activeSignals = sortSignals(signals.filter(s => !stashed.some(e => e.name === s.deskName))); + + const cards = activeSignals.length > 0 + ? activeSignals.map(renderSignalCard).join("") + : `
+
🪨
+
No active desks yet
+
+
Get started
+
+ Ask the Workshop TA in chat: +
+
+ "open a desk called scanning in ~/my-workshop" +
+
+ The TA uses the desk-open skill to create a desk with a journal. Once a desk emits signals, they'll appear here automatically. +
+
+
💡 Quick commands to try:
+
+ • "open a desk for code review"
+ • "what's everyone working on?"
+ • "show me the signals" +
+
+
+
`; + + const summaryBar = activeSignals.length > 0 ? renderSummaryBar(activeSignals) : ""; + + const stashedSection = stashed.length > 0 ? ` +
+
+ Stashed · ${stashed.length} +
+ ${stashed.map(renderStashedCard).join("")} +
` : ""; + + return ` + + + + Cairn · Signals + + + +
+

🪨 Cairn

+ live +
+
+ ${summaryBar} + ${cards} + ${stashedSection} +
+ + + +`; +} + +// --- Server --- + +async function startServer(instanceId, workshopDir) { + const server = createServer(async (req, res) => { + const url = new URL(req.url, `http://${req.headers.host}`); + + if (req.method === "POST" && url.pathname.startsWith("/api/stash/")) { + const deskName = decodeURIComponent(url.pathname.split("/api/stash/")[1]); + await stashDesk(workshopDir, deskName); + res.writeHead(200, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ ok: true })); + return; + } + if (req.method === "POST" && url.pathname.startsWith("/api/restore/")) { + const deskName = decodeURIComponent(url.pathname.split("/api/restore/")[1]); + await restoreDesk(workshopDir, deskName); + res.writeHead(200, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ ok: true })); + return; + } + if (req.method === "POST" && url.pathname.startsWith("/api/open/")) { + const deskName = decodeURIComponent(url.pathname.split("/api/open/")[1]); + for (const subdir of ["desks", "classroom"]) { + const deskPath = join(workshopDir, subdir, deskName); + try { + const s = await stat(deskPath); + if (s.isDirectory()) { + res.writeHead(200, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ ok: true, deskName, deskPath })); + return; + } + } catch {} + } + res.writeHead(404, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ ok: false, error: "Desk not found" })); + return; + } + + const signals = await scanSignals(workshopDir); + const stashed = await readStash(workshopDir); + res.setHeader("Content-Type", "text/html; charset=utf-8"); + res.end(renderDashboard(signals, stashed)); + }); + await new Promise((resolve) => server.listen(0, "127.0.0.1", resolve)); + const address = server.address(); + const port = typeof address === "object" && address ? address.port : 0; + return { server, url: `http://127.0.0.1:${port}/` }; +} + +// --- Canvas registration --- + +const session = await joinSession({ + canvases: [ + createCanvas({ + id: "signals-dashboard", + displayName: "Workshop Signals", + description: "Live dashboard showing agent signals from workshop desks. Pass workshopDir to point at your workshop root.", + inputSchema: { + type: "object", + properties: { + workshopDir: { type: "string", description: "Absolute path to the workshop root (the folder containing desks/)" }, + }, + required: ["workshopDir"], + }, + actions: [ + { + name: "refresh", + description: "Force-refresh the signals dashboard and return current signal data as JSON", + handler: async (ctx) => { + const entry = servers.get(ctx.instanceId); + if (!entry) return { error: "Dashboard not open" }; + const signals = await scanSignals(entry.workshopDir); + const stashed = await readStash(entry.workshopDir); + return { signals, stashed, activeCount: signals.length - stashed.length }; + }, + }, + { + name: "stash", + description: "Stash a desk (hides it for 48hrs, then it drops off). Use to pause a workstream.", + inputSchema: { + type: "object", + properties: { deskName: { type: "string", description: "Name of the desk to stash" } }, + required: ["deskName"], + }, + handler: async (ctx) => { + const entry = servers.get(ctx.instanceId); + if (!entry) return { error: "Dashboard not open" }; + const stash = await stashDesk(entry.workshopDir, ctx.input.deskName); + return { ok: true, stashed: stash }; + }, + }, + { + name: "restore", + description: "Restore a stashed desk back to active.", + inputSchema: { + type: "object", + properties: { deskName: { type: "string", description: "Name of the desk to restore" } }, + required: ["deskName"], + }, + handler: async (ctx) => { + const entry = servers.get(ctx.instanceId); + if (!entry) return { error: "Dashboard not open" }; + const stash = await restoreDesk(entry.workshopDir, ctx.input.deskName); + return { ok: true, stashed: stash }; + }, + }, + { + name: "open_desk", + description: "Open a desk as a new session in the GHCP app. Returns the desk path so the agent can create_session or navigate to it.", + inputSchema: { + type: "object", + properties: { deskName: { type: "string", description: "Name of the desk to open" } }, + required: ["deskName"], + }, + handler: async (ctx) => { + const entry = servers.get(ctx.instanceId); + if (!entry) return { error: "Dashboard not open" }; + // Check both desks/ and classroom/ + for (const subdir of ["desks", "classroom"]) { + const deskPath = join(entry.workshopDir, subdir, ctx.input.deskName); + try { + const s = await stat(deskPath); + if (s.isDirectory()) { + return { ok: true, deskName: ctx.input.deskName, deskPath, workshopDir: entry.workshopDir }; + } + } catch {} + } + return { error: `Desk '${ctx.input.deskName}' not found` }; + }, + }, + ], + open: async (ctx) => { + const workshopDir = ctx.input?.workshopDir || process.cwd(); + let entry = servers.get(ctx.instanceId); + if (!entry) { + entry = await startServer(ctx.instanceId, workshopDir); + entry.workshopDir = workshopDir; + servers.set(ctx.instanceId, entry); + } + return { title: "🪨 Cairn · Signals", url: entry.url }; + }, + onClose: async (ctx) => { + const entry = servers.get(ctx.instanceId); + if (entry) { + servers.delete(ctx.instanceId); + await new Promise((resolve) => entry.server.close(() => resolve())); + } + }, + }), + ], +}); diff --git a/plugins/the-workshop/.github/plugin/plugin.json b/plugins/the-workshop/.github/plugin/plugin.json index a43b4451f..fbe149f04 100644 --- a/plugins/the-workshop/.github/plugin/plugin.json +++ b/plugins/the-workshop/.github/plugin/plugin.json @@ -24,5 +24,10 @@ "./skills/desk-open/", "./skills/signal-write/", "./skills/workshop-create/" - ] + ], + "x-awesome-copilot": { + "extensions": [ + "./extensions/signals-dashboard/" + ] + } } From 0f62533f11e9826e9330ab316c7f8df25135dde1 Mon Sep 17 00:00:00 2001 From: Jenny Ferries Date: Sat, 18 Jul 2026 19:21:31 -0700 Subject: [PATCH 14/23] fix(the-workshop): add signals-dashboard preview.png + logo so the canvas validates The signals-dashboard extension was missing its required screenshot asset, so it failed awesome-copilot's validateExtensionManifest (logo must equal "assets/preview.png" and the file must exist) and never materialized -- meaning the Cairn canvas would not ship to the GHCP app. Adds the 1024x1024 preview.png and the convention logo field. Validated locally: node eng/validate-plugins.mjs -> extension signals-dashboard is valid; all 70 plugins + 19 extensions pass. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 26faf13e-639c-4a21-ac05-c0dc2bff7c62 --- .../.github/plugin/plugin.json | 1 + extensions/signals-dashboard/assets/preview.png | Bin 0 -> 32420 bytes 2 files changed, 1 insertion(+) create mode 100644 extensions/signals-dashboard/assets/preview.png diff --git a/extensions/signals-dashboard/.github/plugin/plugin.json b/extensions/signals-dashboard/.github/plugin/plugin.json index 799ed39e2..7bfd8dbca 100644 --- a/extensions/signals-dashboard/.github/plugin/plugin.json +++ b/extensions/signals-dashboard/.github/plugin/plugin.json @@ -13,5 +13,6 @@ "coordination", "canvas" ], + "logo": "assets/preview.png", "extensions": "." } diff --git a/extensions/signals-dashboard/assets/preview.png b/extensions/signals-dashboard/assets/preview.png new file mode 100644 index 0000000000000000000000000000000000000000..3219ce2ea1ad542656cf6802e345950a0b4bf62a GIT binary patch literal 32420 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≶{1lflf-3rRU^ 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 Date: Sat, 18 Jul 2026 19:36:20 -0700 Subject: [PATCH 15/23] docs(the-workshop): install dashboard via awesome-copilot, not jennyf19 repo The signals-dashboard canvas extension bundles with the-workshop plugin (x-awesome-copilot.extensions), so installing the plugin from awesome-copilot includes the dashboard. Drop the pointers telling users to install from jennyf19/the-workshop. Addresses PR review comments on README (Cairn Dashboard section), signal-write SKILL note, and workshop-ta agent viewing-signals note. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 26faf13e-639c-4a21-ac05-c0dc2bff7c62 --- agents/workshop-ta.agent.md | 9 ++++----- plugins/the-workshop/README.md | 2 +- skills/signal-write/SKILL.md | 9 ++++----- 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/agents/workshop-ta.agent.md b/agents/workshop-ta.agent.md index 2974cd0a8..6dae1d9e9 100644 --- a/agents/workshop-ta.agent.md +++ b/agents/workshop-ta.agent.md @@ -105,11 +105,10 @@ Use `signal-write` when something needs the operator's attention: ### Viewing signals If the Workshop's canvas extension (🪨 Cairn) is installed — it -ships with the full plugin at -[jennyf19/the-workshop](https://github.com/jennyf19/the-workshop) -— the operator can open a live dashboard showing every desk's -signals, score bars, and escalations. The canvas reads -`desks/*/.signals/` for the latest signal JSON per desk. +ships bundled with the-workshop plugin — the operator can open a +live dashboard showing every desk's signals, score bars, and +escalations. The canvas reads `desks/*/.signals/` for the latest +signal JSON per desk. Without the canvas, you can still read signals by scanning the `.signals/` directories directly and summarizing for the operator. diff --git a/plugins/the-workshop/README.md b/plugins/the-workshop/README.md index 055f54044..5dadb9016 100644 --- a/plugins/the-workshop/README.md +++ b/plugins/the-workshop/README.md @@ -34,7 +34,7 @@ A **desk** isn't a sub-agent — it's a peer with a history. Sub-agents inherit ## The Cairn Dashboard -The Workshop ships a **canvas extension** (🪨 Cairn) that shows the pulse of every desk — score bars, patterns, escalations — auto-refreshing in the GHCP app. Install the full plugin from [jennyf19/the-workshop](https://github.com/jennyf19/the-workshop) to get the dashboard. +The Workshop ships a **canvas extension** (🪨 Cairn) that shows the pulse of every desk — score bars, patterns, escalations — auto-refreshing in the GHCP app. It's bundled with the plugin: `copilot plugin install the-workshop@awesome-copilot` includes the dashboard — nothing else to install. ## Works With Ember diff --git a/skills/signal-write/SKILL.md b/skills/signal-write/SKILL.md index 70a163a92..c6252ceef 100644 --- a/skills/signal-write/SKILL.md +++ b/skills/signal-write/SKILL.md @@ -86,11 +86,10 @@ The `subtype` field preserves the specific signal state for dashboard consumers. `signal_type` controls sort priority (escalation → top). -> **Note:** The signals-dashboard extension (shipped with the full -> source repo, not the awesome-copilot package) reads `subtype` -> when present and falls back to `signal_type` for display. If -> consuming signals in your own tooling, prefer `subtype` for the -> specific state. +> **Note:** The signals-dashboard canvas extension (bundled with +> the-workshop plugin) reads `subtype` when present and falls back +> to `signal_type` for display. If consuming signals in your own +> tooling, prefer `subtype` for the specific state. ### 2. Note the signal in the journal From 967f0d8ede481d91d36d715cb0981edd7fbef689 Mon Sep 17 00:00:00 2001 From: jennyf19 <19942418+jennyf19@users.noreply.github.com> Date: Sat, 18 Jul 2026 19:44:45 -0700 Subject: [PATCH 16/23] fix(signals-dashboard): harden canvas against XSS, path traversal, and malformed signals Address PR review findings on the Cairn canvas extension: - XSS: replace inline onclick handlers (which used HTML-escape that does not escape single quotes) with event delegation via data-act/data-desk attributes and one document click listener that survives the innerHTML auto-refresh. - Path traversal: add isValidDeskName() and enforce it in every HTTP and canvas-action handler that takes a desk name (reject empty, /, \\, null byte, '.' and '..'). - Crash safety: String()-coerce in esc()/truncate() and guard outcomeIssues with Array.isArray so a malformed signal cannot take down the whole dashboard render. - Honest UI: the per-desk button no longer claims to 'open' a desk; it is relabeled 'path' and copies the desk's filesystem path to the clipboard with an accurate toast built via textContent (not innerHTML). - Correctness: outcome signals only pair with a signal when emitted at or after it (within 1hr), and activeCount is computed by excluding stashed desks instead of subtracting counts (no longer goes negative). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 26faf13e-639c-4a21-ac05-c0dc2bff7c62 --- extensions/signals-dashboard/extension.mjs | 94 +++++++++++++++++----- 1 file changed, 76 insertions(+), 18 deletions(-) diff --git a/extensions/signals-dashboard/extension.mjs b/extensions/signals-dashboard/extension.mjs index 39a593c08..74d0ab6ef 100644 --- a/extensions/signals-dashboard/extension.mjs +++ b/extensions/signals-dashboard/extension.mjs @@ -11,6 +11,14 @@ import { joinSession, createCanvas } from "@github/copilot-sdk/extension"; const servers = new Map(); const STASH_TTL_MS = 48 * 60 * 60 * 1000; +// Desk names are single path segments (folder names under desks/ or classroom/). +// Reject anything that could escape the workshop dir via path traversal. +function isValidDeskName(name) { + return typeof name === "string" && name.length > 0 && name.length <= 128 && + !name.includes("/") && !name.includes("\\") && !name.includes("\0") && + name !== "." && name !== ".."; +} + // --- Stash management --- async function readStash(workshopDir) { @@ -116,8 +124,8 @@ async function scanSignals(workshopDir) { // Also check for any recent outcome (within 1hr of latest signal) if no run_id match if (!outcome) { const recentOutcomes = allSignals - .filter(s => s.parsed.signal_type === "outcome" && Math.abs(s.mtimeMs - latestTime) < 3600000) - .sort((a, b) => b.mtimeMs - a.mtimeMs); + .filter(s => s.parsed.signal_type === "outcome" && s.mtimeMs >= latestTime && (s.mtimeMs - latestTime) < 3600000) + .sort((a, b) => a.mtimeMs - b.mtimeMs); if (recentOutcomes.length > 0) outcome = recentOutcomes[0].parsed; } @@ -155,7 +163,7 @@ async function scanSignals(workshopDir) { // Outcome signal fields outcomeRating: outcome?.quality_rating || null, outcomeEffort: outcome?.effort_to_merge || null, - outcomeIssues: outcome?.issues_found || [], + outcomeIssues: Array.isArray(outcome?.issues_found) ? outcome.issues_found : [], outcomeAgent: outcome?.agent_name || null, honestyGap: honestyGap, }); @@ -188,10 +196,11 @@ function sortSignals(signals) { // --- HTML rendering --- function esc(s) { - return s.replace(/&/g, "&").replace(//g, ">").replace(/"/g, """); + return String(s).replace(/&/g, "&").replace(//g, ">").replace(/"/g, """).replace(/'/g, "'"); } function truncate(s, len) { - return s.length > len ? s.slice(0, len) + "…" : s; + const str = String(s); + return str.length > len ? str.slice(0, len) + "…" : str; } function formatTokens(n) { if (!n) return null; @@ -308,7 +317,7 @@ function renderSignalCard(sig) { ? `✓ done` : `✓ checkpoint`; - const stashBtn = ``; + onmouseout="this.style.background='${isEscalation ? '#7f1d1d' : 'transparent'}'" + title="Copy this desk's filesystem path to the clipboard">path`; let escalationBlock = ""; if (isEscalation && sig.escalationReason) { @@ -440,7 +450,7 @@ function renderStashedCard(entry) { ${esc(entry.name)} ${timeRemaining(entry.stashedAt)} -