@mulmobridge/protocol 1.0.0 → 1.0.1

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/README.md +7 -0
  2. package/package.json +18 -1
package/README.md CHANGED
@@ -98,6 +98,13 @@ Part of the [`@mulmobridge/*`](https://www.npmjs.com/~mulmobridge) package famil
98
98
  - [`@mulmobridge/xmpp`](https://www.npmjs.com/package/@mulmobridge/xmpp) — XMPP / Jabber
99
99
  - [`@mulmobridge/zulip`](https://www.npmjs.com/package/@mulmobridge/zulip) — Zulip
100
100
 
101
+ ## Related projects
102
+
103
+ Published from the MulmoClaude monorepo by [Receptron](https://github.com/receptron).
104
+
105
+ - **[MulmoClaude](https://github.com/receptron/mulmoclaude)** — an open-source AI assistant platform that runs on your own computer. Claude Code as the engine, a personal wiki for long-term memory, schema-driven collections for your data, and chat that summons the right GUI (markdown, charts, forms, spreadsheets, wikis) for each task.
106
+ - **[MulmoTerminal](https://github.com/receptron/mulmoterminal)** — a terminal-first cockpit for running many AI coding agents in parallel. One roster showing every session's summary and PR status, tmux-backed session persistence, git-worktree isolation, one-click PRs, and mobile push with remote reply.
107
+ - **[MulmoTerminal manual](https://receptron.github.io/mulmoterminal/)** — setup, workflows, feature reference, configuration, mobile notifications, and alternative / local model providers. Available in English and Japanese.
101
108
 
102
109
  ## License
103
110
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mulmobridge/protocol",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Shared types and constants for the MulmoBridge protocol",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -28,5 +28,22 @@
28
28
  "author": "Receptron Team",
29
29
  "devDependencies": {
30
30
  "typescript": "^6.0.3"
31
+ },
32
+ "homepage": "https://github.com/receptron/mulmoclaude/tree/main/packages/protocol#readme",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "git+https://github.com/receptron/mulmoclaude.git",
36
+ "directory": "packages/protocol"
37
+ },
38
+ "keywords": [
39
+ "mulmobridge",
40
+ "protocol",
41
+ "socket.io",
42
+ "chat",
43
+ "ai-agent",
44
+ "types"
45
+ ],
46
+ "bugs": {
47
+ "url": "https://github.com/receptron/mulmoclaude/issues"
31
48
  }
32
49
  }