@mulmoclaude/mulmoscript-plugin 1.1.0 → 1.1.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/README.md +20 -0
  2. package/package.json +23 -4
package/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # @mulmoclaude/mulmoscript-plugin
2
+
3
+ presentMulmoScript — MulmoScript storyboard tool for MulmoClaude and MulmoTerminal. Browser-safe core (tool definition + save/reopen/update logic against the generic gui-chat-protocol files.artifacts capability) on `.`, Vue View/Preview on `./vue`, and the Node-only ops layer (mulmocast render/movie/PDF orchestration + dispatch router, host backends injected) on `./server`.
4
+
5
+ A plugin for [MulmoClaude](https://github.com/receptron/mulmoclaude) and [MulmoTerminal](https://github.com/receptron/mulmoterminal) — loaded by the host, not run standalone.
6
+
7
+ ## Dev loop
8
+
9
+ ```bash
10
+ yarn workspace @mulmoclaude/mulmoscript-plugin run build
11
+ yarn workspace @mulmoclaude/mulmoscript-plugin run test
12
+ ```
13
+
14
+ ## Related projects
15
+
16
+ Used by both MulmoClaude and MulmoTerminal, and published from the MulmoClaude monorepo by [Receptron](https://github.com/receptron).
17
+
18
+ - **[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.
19
+ - **[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.
20
+ - **[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/mulmoscript-plugin",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "presentMulmoScript — MulmoScript storyboard tool for MulmoClaude and MulmoTerminal. Browser-safe core (tool definition + save/reopen/update logic against the generic gui-chat-protocol files.artifacts capability) on `.`, Vue View/Preview on `./vue`, and the Node-only ops layer (mulmocast render/movie/PDF orchestration + dispatch router, host backends injected) on `./server`.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -41,8 +41,8 @@
41
41
  "test": "tsx --test test/test_*.ts"
42
42
  },
43
43
  "dependencies": {
44
- "@mulmoclaude/common": "^1.1.0",
45
- "@mulmoclaude/core": "^1.2.0"
44
+ "@mulmoclaude/common": "^1.1.1",
45
+ "@mulmoclaude/core": "^1.5.0"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "@mulmocast/deck-web": "^1.1.1",
@@ -69,5 +69,24 @@
69
69
  "vue-eslint-parser": "^10.4.0",
70
70
  "vue-tsc": "^3.3.8"
71
71
  },
72
- "license": "MIT"
72
+ "license": "MIT",
73
+ "homepage": "https://github.com/receptron/mulmoclaude/tree/main/packages/plugins/mulmoscript-plugin#readme",
74
+ "repository": {
75
+ "type": "git",
76
+ "url": "git+https://github.com/receptron/mulmoclaude.git",
77
+ "directory": "packages/plugins/mulmoscript-plugin"
78
+ },
79
+ "keywords": [
80
+ "mulmoscript",
81
+ "storyboard",
82
+ "mulmocast",
83
+ "mulmoclaude",
84
+ "mulmoclaude-plugin",
85
+ "gui-chat-protocol",
86
+ "claude-code",
87
+ "mulmoterminal"
88
+ ],
89
+ "bugs": {
90
+ "url": "https://github.com/receptron/mulmoclaude/issues"
91
+ }
73
92
  }