@korso/shepherd 0.6.1 → 0.6.2

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -0
  2. package/package.json +2 -1
package/dist/index.js CHANGED
@@ -537,6 +537,9 @@ var CreateWorkspaceRequest = z2.object({
537
537
  var ListWorkspacesResponse = z2.object({
538
538
  workspaces: z2.array(WorkspaceSummary)
539
539
  });
540
+ var DeleteWorkspaceResponse = z2.object({
541
+ deleted: z2.literal(true)
542
+ });
540
543
  var MintTokenRequest = z2.object({
541
544
  name: z2.string().min(1).optional()
542
545
  });
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@korso/shepherd",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "Shepherd MCP server — gives any MCP-capable agent (Claude Code, Codex, etc.) four advisory cross-session coordination tools (work/done/announce/sync) backed by the shared Shepherd hub. Joins the workspace automatically and ships standing instructions so the agent self-coordinates.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
8
+ "shepherd": "dist/index.js",
8
9
  "shepherd-mcp": "dist/index.js",
9
10
  "shepherd-inbox-hook": "dist/inboxHook.js"
10
11
  },