@korso/shepherd-ui 0.7.0 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -56,6 +56,9 @@ export function Chat({ announcements, selectedRepo, nowMs }) {
56
56
  return (
57
57
  // The feed has no stable id; index is acceptable because the list is
58
58
  // append-only oldest->newest and rows are never reordered in place.
59
- _jsxs("div", { className: className, children: [_jsx("div", { className: "msg__avatar", style: { background: colorForName(a.fromAgentName) }, children: initialsFor(a.fromAgentName) }), _jsxs("div", { className: "msg__body", children: [_jsxs("div", { className: "msg__head", children: [_jsx("span", { className: "msg__who", style: { color: colorForName(a.fromAgentName) }, children: a.fromAgentName }), a.fromHuman ? _jsx("span", { className: "msg__human", children: a.fromHuman }) : null, a.targetAgentName !== null ? (_jsx("span", { className: "msg__to", children: `→ @${a.targetAgentName}` })) : a.toAdmin ? (_jsx("span", { className: "msg__to", children: "\u2192 admin" })) : null, _jsx("span", { className: "msg__time", children: formatRelative(a.createdAt, nowMs) })] }), _jsx("div", { className: "msg__text", children: a.body })] })] }, i));
59
+ _jsxs("div", { className: className, children: [_jsx("div", { className: "msg__avatar", style: { background: colorForName(a.fromAgentName) }, children: initialsFor(a.fromAgentName) }), _jsxs("div", { className: "msg__body", children: [_jsxs("div", { className: "msg__head", children: [_jsx("span", { className: "msg__who", style: { color: colorForName(a.fromAgentName) }, children: a.fromAgentName }), a.fromHuman ? _jsx("span", { className: "msg__human", children: a.fromHuman }) : null, a.targetAgentName !== null ? (_jsx("span", { className: "msg__to", children: `→ @${a.targetAgentName}` })) : a.targetMemberName !== null ? (
60
+ // An agent addressed a specific workspace member by name;
61
+ // legacy/collective operator messages fall through to "admin".
62
+ _jsx("span", { className: "msg__to", children: `→ @${a.targetMemberName}` })) : a.toAdmin ? (_jsx("span", { className: "msg__to", children: "\u2192 admin" })) : null, _jsx("span", { className: "msg__time", children: formatRelative(a.createdAt, nowMs) })] }), _jsx("div", { className: "msg__text", children: a.body })] })] }, i));
60
63
  })) }));
61
64
  }
@@ -25,6 +25,68 @@ const ENV_FLAG = {
25
25
  claude: "-e",
26
26
  codex: "--env",
27
27
  };
28
+ // The shepherd-inbox-hook bin: delivers teammate announcements out-of-band AND
29
+ // nudges the agent to run `link` before its first write in an unlinked repo.
30
+ // The MCP server installs this ITSELF the first time the agent runs (once per
31
+ // machine, additive-only, `SHEPHERD_NO_AUTO_HOOKS=1` to opt out) — Claude,
32
+ // Codex, and Cursor get their config merged, Pi gets the bundled extension
33
+ // file copied in. So the dashboard's job is to SAY that, name where the write
34
+ // lands, and keep the manual equivalent as a collapsed reference for users who
35
+ // opted out or want to audit the change.
36
+ const HOOK_COMMAND = "npx -y --package=@korso/shepherd shepherd-inbox-hook";
37
+ function hookSetup(tool) {
38
+ if (tool === "claude") {
39
+ // SessionStart front-loads the link ask; PreToolUse delivers announcements
40
+ // and re-nudges right before a write in a still-unlinked repo.
41
+ return {
42
+ target: "~/.claude/settings.json",
43
+ snippet: JSON.stringify({
44
+ hooks: {
45
+ SessionStart: [{ hooks: [{ type: "command", command: HOOK_COMMAND }] }],
46
+ PreToolUse: [
47
+ { matcher: "*", hooks: [{ type: "command", command: HOOK_COMMAND }] },
48
+ ],
49
+ },
50
+ }, null, 2),
51
+ };
52
+ }
53
+ if (tool === "codex") {
54
+ // Codex's PreToolUse only fires for Bash, so UserPromptSubmit is the
55
+ // frequent event there; hooks must be feature-flagged on.
56
+ return {
57
+ target: "~/.codex/config.toml",
58
+ snippet: [
59
+ "[features]",
60
+ "hooks = true",
61
+ "",
62
+ "[[hooks.UserPromptSubmit]]",
63
+ 'command = ["npx", "-y", "--package=@korso/shepherd", "shepherd-inbox-hook"]',
64
+ ].join("\n"),
65
+ };
66
+ }
67
+ if (tool === "pi") {
68
+ // Pi delivery is a bundled extension FILE, not a config edit — the
69
+ // auto-install copies it into place; there is nothing to paste manually.
70
+ return {
71
+ target: "~/.pi/agent/extensions/shepherd-inbox.js",
72
+ snippet: null,
73
+ };
74
+ }
75
+ if (tool === "cursor") {
76
+ // Only beforeSubmitPrompt is wired: it is the one Cursor event verified
77
+ // (spike, Cursor 3.9.16) to inject the hook's output into model context.
78
+ return {
79
+ target: "~/.cursor/hooks.json",
80
+ snippet: JSON.stringify({
81
+ version: 1,
82
+ hooks: {
83
+ beforeSubmitPrompt: [{ command: HOOK_COMMAND }],
84
+ },
85
+ }, null, 2),
86
+ };
87
+ }
88
+ return null;
89
+ }
28
90
  // "created 3d ago · never used" / "created 3d ago · last used 2h ago" — helps
29
91
  // an operator tell which tokens are still active before revoking one.
30
92
  function tokenMeta(token, nowMs) {
@@ -105,6 +167,7 @@ export function ConnectAgent({ hubUrl }) {
105
167
  async function generate() {
106
168
  setBusy(true);
107
169
  setError(null);
170
+ setStatus(null);
108
171
  try {
109
172
  const res = await client.mintAccountToken(name.trim() ? { name: name.trim() } : {});
110
173
  setRawToken(res.token);
@@ -137,12 +200,18 @@ export function ConnectAgent({ hubUrl }) {
137
200
  }
138
201
  }
139
202
  const command = installCommand(tool, directHubUrl, rawToken ?? TOKEN_PLACEHOLDER);
203
+ const hook = hookSetup(tool);
140
204
  async function copyCommand() {
141
205
  await navigator.clipboard.writeText(command);
142
206
  setCopied(true);
143
207
  setTimeout(() => setCopied(false), 2000);
144
208
  }
145
- return (_jsxs("section", { className: "shepherd-connect-agent", "aria-labelledby": headingId, children: [_jsxs("div", { className: "card-head", children: [_jsx("h3", { id: headingId, children: "Connect your agent" }), _jsx("p", { className: "card-sub", children: "Generate a token \u2014 it works across all your workspaces \u2014 then paste the command into your coding tool." }), _jsx("p", { className: "card-sub", children: "The first time the agent opens a repo, it'll ask which workspace to coordinate that repo with." })] }), _jsxs("div", { className: "card-body", children: [_jsxs("div", { className: "field", children: [_jsx("label", { htmlFor: "connect-tool", children: "Tool" }), _jsx("select", { id: "connect-tool", value: tool, onChange: (e) => setTool(e.target.value), children: TOOLS.map((t) => (_jsx("option", { value: t.id, children: t.label }, t.id))) })] }), _jsxs("div", { className: "field generate", children: [_jsx("label", { htmlFor: "token-name", children: "Token name (optional)" }), _jsxs("div", { className: "field__row", children: [_jsx("input", { id: "token-name", type: "text", value: name, onChange: (e) => setName(e.target.value), placeholder: "e.g. laptop" }), _jsx("button", { type: "button", onClick: () => void generate(), disabled: busy, children: "Generate token" })] })] }), error && _jsx("p", { role: "alert", children: error }), status && _jsx("p", { role: "status", children: status }), rawToken && (_jsx("p", { className: "token-once", role: "status", children: "Copy this token now \u2014 it won't be shown again." })), _jsxs("div", { className: "install-command", children: [_jsx("pre", { "data-testid": "install-command", children: command }), _jsx("button", { type: "button", className: "install-command__copy", "aria-label": copied ? "Copied" : "Copy command", title: copied ? "Copied" : "Copy", onClick: () => void copyCommand(), children: copied ? (_jsx("svg", { width: "15", height: "15", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", strokeLinecap: "round", strokeLinejoin: "round", "aria-hidden": "true", children: _jsx("path", { d: "M20 6 9 17l-5-5" }) })) : (_jsxs("svg", { width: "15", height: "15", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", "aria-hidden": "true", children: [_jsx("rect", { x: "9", y: "9", width: "13", height: "13", rx: "2" }), _jsx("path", { d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" })] })) })] }), _jsx("h4", { children: "Existing tokens" }), loading ? (_jsx("p", { role: "status", children: "Loading\u2026" })) : tokens.length === 0 ? (_jsx("p", { children: "No tokens yet." })) : (_jsx("ul", { children: tokens.map((t) => {
209
+ return (_jsxs("section", { className: "shepherd-connect-agent", "aria-labelledby": headingId, children: [_jsxs("div", { className: "card-head", children: [_jsx("h3", { id: headingId, children: "Connect your agent" }), _jsx("p", { className: "card-sub", children: "Generate a token \u2014 it works across all your workspaces \u2014 then paste the command into your coding tool." }), _jsx("p", { className: "card-sub", children: "The first time the agent changes files in a repo, Shepherd asks which workspace to coordinate that repo with \u2014 once per repo, right in your tool." })] }), _jsxs("div", { className: "card-body", children: [_jsxs("div", { className: "field", children: [_jsx("label", { htmlFor: "connect-tool", children: "Tool" }), _jsx("select", { id: "connect-tool", value: tool, onChange: (e) => setTool(e.target.value), children: TOOLS.map((t) => (_jsx("option", { value: t.id, children: t.label }, t.id))) })] }), _jsxs("div", { className: "field generate", children: [_jsx("label", { htmlFor: "token-name", children: "Token name (optional)" }), _jsxs("div", { className: "field__row", children: [_jsx("input", { id: "token-name", type: "text", value: name, onChange: (e) => setName(e.target.value), onKeyDown: (e) => {
210
+ if (e.key === "Enter" && !busy) {
211
+ e.preventDefault();
212
+ void generate();
213
+ }
214
+ }, placeholder: "e.g. laptop" }), _jsx("button", { type: "button", onClick: () => void generate(), disabled: busy, children: "Generate token" })] })] }), error && _jsx("p", { role: "alert", children: error }), status && _jsx("p", { role: "status", children: status }), rawToken && (_jsx("p", { className: "token-once", role: "status", children: "Copy this token now \u2014 it won't be shown again." })), _jsxs("div", { className: "install-command", children: [_jsx("pre", { "data-testid": "install-command", children: command }), _jsx("button", { type: "button", className: "install-command__copy", "aria-label": copied ? "Copied" : "Copy command", title: copied ? "Copied" : "Copy", onClick: () => void copyCommand(), children: copied ? (_jsx("svg", { width: "15", height: "15", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2.5", strokeLinecap: "round", strokeLinejoin: "round", "aria-hidden": "true", children: _jsx("path", { d: "M20 6 9 17l-5-5" }) })) : (_jsxs("svg", { width: "15", height: "15", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", "aria-hidden": "true", children: [_jsx("rect", { x: "9", y: "9", width: "13", height: "13", rx: "2" }), _jsx("path", { d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" })] })) })] }), hook && (_jsxs("div", { className: "hook-setup", children: [_jsxs("p", { className: "card-sub", children: ["Message delivery sets itself up: the first time the agent runs, Shepherd adds its inbox hook to ", _jsx("code", { children: hook.target }), " ", "automatically \u2014 it delivers teammate announcements and reminds the agent to link each repo before its first write. Happens at most once; set ", _jsx("code", { children: "SHEPHERD_NO_AUTO_HOOKS=1" }), " to opt out."] }), hook.snippet && (_jsxs("details", { className: "hook-reference", children: [_jsx("summary", { children: "What gets added (manual equivalent)" }), _jsx("div", { className: "install-command", children: _jsx("pre", { "data-testid": "hook-snippet", children: hook.snippet }) })] }))] })), _jsx("h4", { children: "Existing tokens" }), loading ? (_jsx("p", { role: "status", children: "Loading\u2026" })) : tokens.length === 0 ? (_jsx("p", { children: "No tokens yet." })) : (_jsx("ul", { children: tokens.map((t) => {
146
215
  const name = t.name ?? t.id;
147
216
  return (_jsxs("li", { children: [_jsx("span", { children: name }), _jsx("span", { className: "token-meta", children: tokenMeta(t, Date.now()) }), t.revokedAt ? (_jsx("span", { className: "revoked", children: "revoked" })) : (_jsx("button", { type: "button", "aria-label": `Revoke token ${name}`, onClick: () => void revoke(t.id), disabled: revokingId === t.id, children: "Revoke" }))] }, t.id));
148
217
  }) }))] })] }));