inferay 0.1.19 → 0.1.20
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 +51 -38
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -1,54 +1,77 @@
|
|
|
1
1
|
# inferay
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A macOS AI workspace for multi-pane Claude and Codex chats, real terminals,
|
|
4
|
+
project context, reusable slash commands, git diffs, and image-aware agent work.
|
|
4
5
|
|
|
5
6
|
```sh
|
|
6
7
|
npx inferay
|
|
7
8
|
```
|
|
8
9
|
|
|
9
|
-
Inferay is
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
Inferay is built for working with several agents, folders, and tasks at once.
|
|
11
|
+
Open a workspace from your shell, start multiple chat panes, attach the right
|
|
12
|
+
files or folders with `@`, and run repeatable workflows through your own
|
|
13
|
+
reusable `/slash` commands.
|
|
12
14
|
|
|
13
|
-
|
|
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.
|
|
15
|
+
## Quick Start
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
```sh
|
|
18
|
+
npx inferay # install or launch Inferay
|
|
19
|
+
npx inferay . # open the current folder
|
|
20
|
+
npx inferay ~/code # open a workspace
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
If Inferay is already installed, the command launches it. If not, it downloads
|
|
24
|
+
the latest compatible macOS release and installs the app.
|
|
18
25
|
|
|
19
|
-
|
|
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
|
|
26
|
+
## What Inferay Does
|
|
25
27
|
|
|
26
|
-
|
|
28
|
+
- Run Claude, Codex, and terminal panes side by side
|
|
29
|
+
- Start several agent chats with different context at the same time
|
|
30
|
+
- Attach files and folders directly in chat with `@`
|
|
31
|
+
- Work across multiple project folders from one workspace
|
|
32
|
+
- Create reusable skills that appear as `/slash` commands
|
|
33
|
+
- Review git changes with fast split/full-file diffs
|
|
34
|
+
- Attach or paste images into agent chats
|
|
35
|
+
- Keep real PTY terminal sessions next to AI conversations
|
|
36
|
+
|
|
37
|
+
## Why Use The CLI?
|
|
38
|
+
|
|
39
|
+
The npm package is a small installer and launcher. It does not contain the
|
|
40
|
+
desktop app. It resolves the right GitHub release for your machine, installs
|
|
41
|
+
Inferay, and opens workspaces from your terminal.
|
|
27
42
|
|
|
28
43
|
```sh
|
|
29
|
-
|
|
44
|
+
cd ~/code/my-app
|
|
45
|
+
npx inferay .
|
|
30
46
|
```
|
|
31
47
|
|
|
32
|
-
|
|
33
|
-
|
|
48
|
+
## Images
|
|
49
|
+
|
|
50
|
+
Inferay supports image attachments in chat. You can attach or paste images into
|
|
51
|
+
agent conversations, reference them from queued messages, and revisit them in
|
|
52
|
+
the app's image view.
|
|
53
|
+
|
|
54
|
+
The npm page can also show screenshots or GIFs in this README. Use absolute
|
|
55
|
+
HTTPS image URLs for npm screenshots.
|
|
34
56
|
|
|
35
|
-
##
|
|
57
|
+
## Advanced CLI
|
|
36
58
|
|
|
37
59
|
```sh
|
|
38
|
-
inferay
|
|
39
|
-
inferay . # open the current folder in Inferay
|
|
40
|
-
inferay <path> # open a folder in Inferay
|
|
41
|
-
inferay install # install or replace the latest release
|
|
42
|
-
inferay install --local ./build/stable-macos-arm64/inferay.app
|
|
43
|
-
inferay launch ~/code # open a workspace
|
|
44
|
-
inferay doctor # check user setup
|
|
45
|
-
inferay doctor --dev # check contributor setup
|
|
60
|
+
inferay install # install or replace Inferay
|
|
46
61
|
inferay update # replace Inferay with the latest release
|
|
47
|
-
inferay
|
|
62
|
+
inferay doctor # check user setup
|
|
48
63
|
inferay channel nightly # switch release channel
|
|
49
64
|
inferay version # print CLI version
|
|
50
65
|
```
|
|
51
66
|
|
|
67
|
+
Contributor/debug commands are still available:
|
|
68
|
+
|
|
69
|
+
```sh
|
|
70
|
+
inferay install --local ./build/stable-macos-arm64/inferay.app
|
|
71
|
+
inferay doctor --dev
|
|
72
|
+
inferay channel
|
|
73
|
+
```
|
|
74
|
+
|
|
52
75
|
## Requirements
|
|
53
76
|
|
|
54
77
|
- macOS
|
|
@@ -57,16 +80,6 @@ inferay version # print CLI version
|
|
|
57
80
|
|
|
58
81
|
Users do not need Bun or a source checkout.
|
|
59
82
|
|
|
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
|
-
|
|
70
83
|
## Development
|
|
71
84
|
|
|
72
85
|
Contributors should work from the source repo:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "inferay",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Install and launch Inferay, a macOS workspace for Claude,
|
|
3
|
+
"version": "0.1.20",
|
|
4
|
+
"description": "Install and launch Inferay, a macOS AI workspace for multi-pane Claude/Codex chats, project context, slash commands, terminals, and diffs.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
7
7
|
"exports": "./index.js",
|
|
@@ -31,6 +31,9 @@
|
|
|
31
31
|
"claude",
|
|
32
32
|
"codex",
|
|
33
33
|
"ai-agent",
|
|
34
|
+
"agent-chat",
|
|
35
|
+
"slash-commands",
|
|
36
|
+
"multi-pane",
|
|
34
37
|
"terminal",
|
|
35
38
|
"macos",
|
|
36
39
|
"desktop",
|