inferay 0.1.70 → 0.1.72
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 +9 -72
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,93 +1,30 @@
|
|
|
1
1
|
# inferay
|
|
2
2
|
|
|
3
|
-
A macOS AI workspace for
|
|
4
|
-
|
|
3
|
+
A macOS AI workspace for Claude, Codex, terminals, project context, slash
|
|
4
|
+
commands, git diffs, and image-aware agent work.
|
|
5
5
|
|
|
6
6
|
```sh
|
|
7
7
|
npx inferay
|
|
8
8
|
```
|
|
9
9
|
|
|
10
|
-
|
|
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.
|
|
14
|
-
|
|
15
|
-
## Quick Start
|
|
10
|
+
Or with Bun:
|
|
16
11
|
|
|
17
12
|
```sh
|
|
18
|
-
|
|
19
|
-
npx inferay . # open the current folder
|
|
20
|
-
npx inferay ~/code # open a workspace
|
|
13
|
+
bunx inferay
|
|
21
14
|
```
|
|
22
15
|
|
|
23
|
-
If Inferay is already installed, the command launches it. If not, it downloads
|
|
24
|
-
the latest compatible macOS release and installs the app.
|
|
25
|
-
|
|
26
|
-
## What Inferay Does
|
|
27
|
-
|
|
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.
|
|
42
|
-
|
|
43
16
|
```sh
|
|
44
|
-
cd ~/code/my-app
|
|
45
17
|
npx inferay .
|
|
46
18
|
```
|
|
47
19
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
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.
|
|
56
|
-
|
|
57
|
-
## Advanced CLI
|
|
58
|
-
|
|
59
|
-
```sh
|
|
60
|
-
inferay install # install or replace Inferay
|
|
61
|
-
inferay update # replace Inferay with the latest release
|
|
62
|
-
inferay doctor # check user setup
|
|
63
|
-
inferay channel nightly # switch release channel
|
|
64
|
-
inferay version # print CLI version
|
|
65
|
-
```
|
|
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
|
-
```
|
|
20
|
+
If Inferay is not installed yet, the CLI downloads the latest compatible macOS
|
|
21
|
+
release, installs it, and launches the app. If it is already installed, the same
|
|
22
|
+
command opens Inferay directly.
|
|
74
23
|
|
|
75
24
|
## Requirements
|
|
76
25
|
|
|
77
26
|
- macOS
|
|
78
|
-
- Node.js 18+ for
|
|
27
|
+
- Node.js 18+ for `npx inferay`, or Bun for `bunx inferay`
|
|
79
28
|
- Claude Code and/or Codex CLI if you want to run those agents
|
|
80
29
|
|
|
81
|
-
Users do not need Bun
|
|
82
|
-
|
|
83
|
-
## Development
|
|
84
|
-
|
|
85
|
-
Contributors should work from the source repo:
|
|
86
|
-
|
|
87
|
-
```sh
|
|
88
|
-
bun install
|
|
89
|
-
bun run dev
|
|
90
|
-
```
|
|
91
|
-
|
|
92
|
-
The CLI package lives in `packages/inferay`. The desktop app and release assets
|
|
93
|
-
are built from the repository root.
|
|
30
|
+
Users do not need Bun, a source checkout, or any build commands to use Inferay.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "inferay",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.72",
|
|
4
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",
|