inferay 0.1.18 → 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.
Files changed (2) hide show
  1. package/README.md +70 -13
  2. package/package.json +25 -2
package/README.md CHANGED
@@ -1,29 +1,85 @@
1
1
  # inferay
2
2
 
3
- Command-line installer and launcher for Inferay.
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
- 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.
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
- ## Commands
15
+ ## Quick Start
14
16
 
15
17
  ```sh
16
- inferay # install or launch Inferay
17
- inferay . # open the current folder
18
- inferay install # install or replace the latest release
19
- inferay install --local ./build/stable-macos-arm64/inferay.app
20
- inferay launch ~/code # open a workspace
21
- inferay doctor # check user setup
22
- inferay doctor --dev # check contributor setup
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.
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
+ ```sh
44
+ cd ~/code/my-app
45
+ npx inferay .
46
+ ```
47
+
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.
56
+
57
+ ## Advanced CLI
58
+
59
+ ```sh
60
+ inferay install # install or replace Inferay
23
61
  inferay update # replace Inferay with the latest release
62
+ inferay doctor # check user setup
24
63
  inferay channel nightly # switch release channel
64
+ inferay version # print CLI version
25
65
  ```
26
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
+
75
+ ## Requirements
76
+
77
+ - macOS
78
+ - Node.js 18+ for the `npx inferay` wrapper
79
+ - Claude Code and/or Codex CLI if you want to run those agents
80
+
81
+ Users do not need Bun or a source checkout.
82
+
27
83
  ## Development
28
84
 
29
85
  Contributors should work from the source repo:
@@ -33,4 +89,5 @@ bun install
33
89
  bun run dev
34
90
  ```
35
91
 
36
- Users should not need Bun or a source checkout.
92
+ The CLI package lives in `packages/inferay`. The desktop app and release assets
93
+ 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.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",
@@ -17,6 +17,29 @@
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
+ "agent-chat",
35
+ "slash-commands",
36
+ "multi-pane",
37
+ "terminal",
38
+ "macos",
39
+ "desktop",
40
+ "diff",
41
+ "installer"
42
+ ],
20
43
  "license": "MIT",
21
44
  "publishConfig": {
22
45
  "access": "public"