@mulmoclaude/common 1.1.0 → 1.1.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 +8 -0
  2. package/package.json +16 -1
package/README.md CHANGED
@@ -64,3 +64,11 @@ keep their own exported name by **aliasing** rather than re-declaring
64
64
  (`export type FeedsLogger = StructuredLogger`, or a
65
65
  `Pick<MinimalLogger, "warn" | "error">` subset): TypeScript is structurally
66
66
  typed, so the alias preserves the public name and the emitted `.d.ts` exactly.
67
+
68
+ ## Related projects
69
+
70
+ Published from the MulmoClaude monorepo by [Receptron](https://github.com/receptron).
71
+
72
+ - **[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.
73
+ - **[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.
74
+ - **[MulmoTerminal manual](https://receptron.github.io/mulmoterminal/)** — setup, workflows, feature reference, configuration, mobile notifications, and alternative / local model providers. Available in English and Japanese.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mulmoclaude/common",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "General-purpose pure utilities (type guards, etc.) shared across the MulmoClaude host, bridges, and plugins",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -40,5 +40,20 @@
40
40
  "author": "Receptron Team",
41
41
  "devDependencies": {
42
42
  "typescript": "^6.0.3"
43
+ },
44
+ "homepage": "https://github.com/receptron/mulmoclaude/tree/main/packages/common#readme",
45
+ "repository": {
46
+ "type": "git",
47
+ "url": "git+https://github.com/receptron/mulmoclaude.git",
48
+ "directory": "packages/common"
49
+ },
50
+ "keywords": [
51
+ "mulmoclaude",
52
+ "utilities",
53
+ "type-guards",
54
+ "isomorphic"
55
+ ],
56
+ "bugs": {
57
+ "url": "https://github.com/receptron/mulmoclaude/issues"
43
58
  }
44
59
  }