@onexeor/lumo 0.0.4 → 0.0.5

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.
package/README.md CHANGED
@@ -1,7 +1,9 @@
1
1
  # lumo — installer
2
2
 
3
- One-command installer for [Lumo](https://github.com/OneXeor-Dev/lumo): mobile
4
- UI/UX design intelligence for AI coding assistants.
3
+ One-command installer for Lumo: mobile UI/UX design intelligence for AI
4
+ coding assistants. The full project (skill, MCP server, Python tools,
5
+ docs, examples) lives in the `OneXeor-Dev/lumo` GitHub repository — see
6
+ the `repository` field in `package.json` for the canonical link.
5
7
 
6
8
  ```bash
7
9
  npx @onexeor/lumo init # interactive — picks your AI client
@@ -31,9 +33,9 @@ Under the hood the installer:
31
33
 
32
34
  1. Locates a Python 3.10+ interpreter and creates a Lumo-owned venv at
33
35
  `~/.lumo/venv` so your system Python stays clean.
34
- 2. `pip install`s [`lumo-mobile`](https://pypi.org/project/lumo-mobile/) into
35
- that venv. The CLIs (`lumo-wcag`, `lumo-theory`, `lumo-parity`,
36
- `lumo-mcp`) become available at absolute paths the MCP configs point to.
36
+ 2. `pip install`s the `lumo-mobile` package from PyPI into that venv.
37
+ The CLIs (`lumo-wcag`, `lumo-theory`, `lumo-parity`, `lumo-mcp`)
38
+ become available at absolute paths the MCP configs point to.
37
39
  3. Copies the `SKILL.md` bundle into the chosen client's skill directory.
38
40
  4. Merges a `{ "mcpServers": { "lumo": { "command": "..." } } }` block
39
41
  into the client's MCP config — non-destructive, backs up the file once
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onexeor/lumo",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "Install Lumo — mobile UI/UX design intelligence for AI coding assistants (Claude Code, Cursor, Codex, MCP clients).",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.js CHANGED
@@ -22,7 +22,7 @@ import { doctorCommand } from "./commands/doctor.js";
22
22
  import { uninstallCommand } from "./commands/uninstall.js";
23
23
  import { red } from "./lib/style.js";
24
24
 
25
- const VERSION = "0.0.4";
25
+ const VERSION = "0.0.5";
26
26
 
27
27
  const USAGE = `lumo — mobile UI/UX design intelligence installer (v${VERSION})
28
28