inferay 0.1.18 → 0.1.19

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 +50 -6
  2. package/package.json +22 -2
package/README.md CHANGED
@@ -1,29 +1,72 @@
1
1
  # inferay
2
2
 
3
- Command-line installer and launcher for Inferay.
3
+ Install and launch Inferay from the command line.
4
4
 
5
5
  ```sh
6
6
  npx inferay
7
7
  ```
8
8
 
9
- The package is intentionally small. It does not contain the desktop app. It
10
- resolves the right release asset, installs the app, launches an installed app,
11
- and runs setup checks.
9
+ Inferay is a macOS desktop workspace for running Claude, Codex, and real
10
+ terminal sessions side by side. It includes multi-pane agent chat, workspace
11
+ launching, git change review, smooth full-file diffs, and image-aware chats.
12
+
13
+ This npm package is intentionally small. It does not contain the desktop app.
14
+ It resolves the right GitHub release asset for your machine, installs the app,
15
+ launches an installed app, switches release channels, and runs setup checks.
16
+
17
+ ## What You Get
18
+
19
+ - Multi-pane Claude, Codex, and terminal sessions
20
+ - Open a project folder directly from the CLI
21
+ - Git change review with split/full-file diffs
22
+ - Image attachments in agent chats, with image preview/history in the app
23
+ - Setup checks for Claude, Codex, Bun, Git, and the installed app
24
+ - Stable, nightly, and dev release channels
25
+
26
+ ## Install Or Launch
27
+
28
+ ```sh
29
+ npx inferay
30
+ ```
31
+
32
+ If Inferay is already installed, this launches it. If not, it downloads the
33
+ latest compatible release and installs it.
12
34
 
13
35
  ## Commands
14
36
 
15
37
  ```sh
16
38
  inferay # install or launch Inferay
17
- inferay . # open the current folder
39
+ inferay . # open the current folder in Inferay
40
+ inferay <path> # open a folder in Inferay
18
41
  inferay install # install or replace the latest release
19
42
  inferay install --local ./build/stable-macos-arm64/inferay.app
20
43
  inferay launch ~/code # open a workspace
21
44
  inferay doctor # check user setup
22
45
  inferay doctor --dev # check contributor setup
23
46
  inferay update # replace Inferay with the latest release
47
+ inferay channel # print the current release channel
24
48
  inferay channel nightly # switch release channel
49
+ inferay version # print CLI version
25
50
  ```
26
51
 
52
+ ## Requirements
53
+
54
+ - macOS
55
+ - Node.js 18+ for the `npx inferay` wrapper
56
+ - Claude Code and/or Codex CLI if you want to run those agents
57
+
58
+ Users do not need Bun or a source checkout.
59
+
60
+ ## Images
61
+
62
+ The desktop app supports image attachments in chat. You can attach or paste
63
+ images into agent conversations, and Inferay keeps attached images available in
64
+ the image preview/history view.
65
+
66
+ The npm package page can also render screenshots or images in this README. Use
67
+ absolute HTTPS image URLs for npm, because local repository images are not
68
+ always available from the published package page.
69
+
27
70
  ## Development
28
71
 
29
72
  Contributors should work from the source repo:
@@ -33,4 +76,5 @@ bun install
33
76
  bun run dev
34
77
  ```
35
78
 
36
- Users should not need Bun or a source checkout.
79
+ The CLI package lives in `packages/inferay`. The desktop app and release assets
80
+ are built from the repository root.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "inferay",
3
- "version": "0.1.18",
4
- "description": "Command-line installer and launcher for Inferay.",
3
+ "version": "0.1.19",
4
+ "description": "Install and launch Inferay, a macOS workspace for Claude, Codex, terminals, diffs, and image-aware agent chats.",
5
5
  "type": "module",
6
6
  "main": "./index.js",
7
7
  "exports": "./index.js",
@@ -17,6 +17,26 @@
17
17
  "engines": {
18
18
  "node": ">=18"
19
19
  },
20
+ "homepage": "https://inferay.com",
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/raymondreaming/inferay.git",
24
+ "directory": "packages/inferay"
25
+ },
26
+ "bugs": {
27
+ "url": "https://github.com/raymondreaming/inferay/issues"
28
+ },
29
+ "keywords": [
30
+ "inferay",
31
+ "claude",
32
+ "codex",
33
+ "ai-agent",
34
+ "terminal",
35
+ "macos",
36
+ "desktop",
37
+ "diff",
38
+ "installer"
39
+ ],
20
40
  "license": "MIT",
21
41
  "publishConfig": {
22
42
  "access": "public"