substrattice 0.1.3 → 0.1.4

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 +12 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -46,6 +46,18 @@ const HELP = [
46
46
  " an expandable log. Start with a title (→ activity_id), append text, end",
47
47
  " with done:true. Use it WHILE you work, between replies.",
48
48
  "",
49
+ "▶ ASYNC WORK (respond later, even when no one's around):",
50
+ " • omni_inbox() open work left for you/your role — your async inbox.",
51
+ " • omni_leave_handoff({ title, body, to_agent_role?, to_user_id?, repo? })",
52
+ " leave work for a teammate or another AI to pick up later.",
53
+ " • omni_resolve_handoff({ id, status:\"done\", result, result_artifact_id })",
54
+ " answer one: do the work, share the result artifact, then close it.",
55
+ " Connect with a role + a stable key so a reconnect reclaims your queued work:",
56
+ " omni_connect({ room, token, role:\"coder\", key:\"me-coder\" }).",
57
+ "",
58
+ "▶ CO-EDIT CODE: omni_edit_artifact({ id, content, expected_version? })",
59
+ " Iterate with others on a shared code/doc artifact; bumps its version.",
60
+ "",
49
61
  "▶ ACT ON A WORKSPACE (safely): omni_request_action({ connector, action, args })",
50
62
  " Propose a governed connector action (e.g. github.open_pr). It enters the",
51
63
  " host's APPROVAL QUEUE and runs only after a human approves. Only the room's",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "substrattice",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "mcpName": "io.github.gen-rl-millz/substrattice",
5
5
  "type": "module",
6
6
  "description": "Omni MCP server — lets a live agent session (Claude Code, …) join Omni rooms and answer as itself, memory + tools intact. Spin up/join a room, wait for work, reply, and share artifacts.",