upfyn-code 1.0.1 → 1.0.3
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 +166 -0
- package/bin/cli.js +1 -1
- package/package.json +42 -7
package/README.md
ADDED
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
# upfyn-code
|
|
2
|
+
|
|
3
|
+
> Unified AI coding interface — access AI chat, terminal, file explorer, git, and visual canvas from any browser.
|
|
4
|
+
|
|
5
|
+
**Upfyn-Code** connects your local development machine to a browser-based UI through a secure WebSocket relay. Write code with AI assistance, run shell commands, manage files, handle git operations, and plan on a visual canvas — all from any device, anywhere.
|
|
6
|
+
|
|
7
|
+
Your source code **never leaves your machine**. All file operations, terminal commands, and git actions execute locally through the relay connection.
|
|
8
|
+
|
|
9
|
+
## Install
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install -g upfyn-code
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Or run directly with npx:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npx upfyn-code
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
**Requirements:** Node.js 18 or later. Works on Windows, macOS, and Linux.
|
|
22
|
+
|
|
23
|
+
## Quick Start
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
# 1. Authenticate with your Upfyn account
|
|
27
|
+
upfyn-code login
|
|
28
|
+
|
|
29
|
+
# 2. Connect your machine to the web interface
|
|
30
|
+
upfyn-code connect
|
|
31
|
+
|
|
32
|
+
# 3. Open the web UI (opens automatically)
|
|
33
|
+
upfyn-code
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Once connected, open [cli.upfyn.com](https://cli.upfyn.com) on any device to access your full development environment.
|
|
37
|
+
|
|
38
|
+
## Commands
|
|
39
|
+
|
|
40
|
+
| Command | Description |
|
|
41
|
+
|---------|-------------|
|
|
42
|
+
| `upfyn-code` | Open the hosted web interface (default) |
|
|
43
|
+
| `upfyn-code --local` | Start a local server instead of the hosted app |
|
|
44
|
+
| `upfyn-code login` | Authenticate with your Upfyn account |
|
|
45
|
+
| `upfyn-code logout` | Clear saved credentials |
|
|
46
|
+
| `upfyn-code status` | Show current auth status and configuration |
|
|
47
|
+
| `upfyn-code connect` | Connect your local machine to the remote server |
|
|
48
|
+
| `upfyn-code mcp` | Show MCP integration config for Claude / Cursor |
|
|
49
|
+
|
|
50
|
+
### Connect Options
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
upfyn-code connect --server <url> --key <token>
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
- `--server <url>` — Server URL to connect to
|
|
57
|
+
- `--key <token>` — Relay token (get from the web UI after signing in)
|
|
58
|
+
|
|
59
|
+
### MCP Integration
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
upfyn-code mcp --server <url> --key <token>
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
Outputs the MCP (Model Context Protocol) configuration JSON for use with Claude Desktop, Cursor, or other MCP-compatible tools.
|
|
66
|
+
|
|
67
|
+
**Example output:**
|
|
68
|
+
|
|
69
|
+
```json
|
|
70
|
+
{
|
|
71
|
+
"mcpServers": {
|
|
72
|
+
"upfyn-code": {
|
|
73
|
+
"url": "https://your-server.com/mcp",
|
|
74
|
+
"headers": {
|
|
75
|
+
"Authorization": "Bearer rt_xxxxx"
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
## Features
|
|
83
|
+
|
|
84
|
+
### AI Chat
|
|
85
|
+
Converse with AI coding assistants to write, debug, and refactor code across any language. Supports multiple AI models.
|
|
86
|
+
|
|
87
|
+
### Integrated Terminal
|
|
88
|
+
Run shell commands on your connected machine directly from the browser. Full terminal emulation with command history.
|
|
89
|
+
|
|
90
|
+
### File Explorer
|
|
91
|
+
Browse, create, edit, and manage your entire project tree remotely. Supports drag-and-drop, file search, and bulk operations.
|
|
92
|
+
|
|
93
|
+
### Git Management
|
|
94
|
+
Visual git interface for commits, branches, diffs, and merges. Stage changes, resolve conflicts, and manage branches without leaving the browser.
|
|
95
|
+
|
|
96
|
+
### Upfyn Canvas
|
|
97
|
+
Visual whiteboard with AI-powered blocks for planning and collaboration. Connect chat, research, code, and documentation blocks into context flows.
|
|
98
|
+
|
|
99
|
+
### MCP Protocol
|
|
100
|
+
Connect external tools and services via the Model Context Protocol. Use Upfyn-Code as an MCP server with Claude Desktop, Cursor, and other compatible tools.
|
|
101
|
+
|
|
102
|
+
## How It Works
|
|
103
|
+
|
|
104
|
+
1. **Install** the CLI on your development machine
|
|
105
|
+
2. **Authenticate** with `upfyn-code login`
|
|
106
|
+
3. **Connect** with `upfyn-code connect` — this creates a secure WebSocket tunnel
|
|
107
|
+
4. **Open** [cli.upfyn.com](https://cli.upfyn.com) on any browser (desktop, tablet, or mobile)
|
|
108
|
+
|
|
109
|
+
The CLI bridges your local filesystem, terminal, and git to the web interface. No ports are exposed and no firewall configuration is needed — the connection works through a secure relay.
|
|
110
|
+
|
|
111
|
+
```
|
|
112
|
+
┌─────────────┐ WebSocket ┌──────────────┐ Browser ┌──────────────┐
|
|
113
|
+
│ Your Local │ ──────────────▶ │ Upfyn Relay │ ◀────────────── │ Web UI at │
|
|
114
|
+
│ Machine │ (encrypted) │ Server │ │ cli.upfyn.com│
|
|
115
|
+
└─────────────┘ └──────────────┘ └──────────────┘
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
## Security
|
|
119
|
+
|
|
120
|
+
- All communication is encrypted with TLS
|
|
121
|
+
- Source code is relayed in real-time and **never stored** on servers
|
|
122
|
+
- Authentication uses JWT tokens with httpOnly cookies
|
|
123
|
+
- The relay connection requires both a valid session and a connection token
|
|
124
|
+
- Self-hosting is supported for full data sovereignty
|
|
125
|
+
|
|
126
|
+
## Self-Hosting
|
|
127
|
+
|
|
128
|
+
Upfyn-Code is open source under the GPL-3.0 license. You can deploy the entire stack on your own infrastructure:
|
|
129
|
+
|
|
130
|
+
```bash
|
|
131
|
+
git clone https://github.com/AnitChaudhry/UpfynAI-Code.git
|
|
132
|
+
cd UpfynAI-Code
|
|
133
|
+
|
|
134
|
+
# Install dependencies
|
|
135
|
+
npm install
|
|
136
|
+
|
|
137
|
+
# Start the backend
|
|
138
|
+
cd backend && npm start
|
|
139
|
+
|
|
140
|
+
# Start the frontend
|
|
141
|
+
cd frontend && npm run dev
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
See the [repository](https://github.com/AnitChaudhry/UpfynAI-Code) for full deployment instructions.
|
|
145
|
+
|
|
146
|
+
## Configuration
|
|
147
|
+
|
|
148
|
+
Credentials and config are stored locally at:
|
|
149
|
+
|
|
150
|
+
| Platform | Path |
|
|
151
|
+
|----------|------|
|
|
152
|
+
| macOS / Linux | `~/.config/upfyn-code/` |
|
|
153
|
+
| Windows | `%APPDATA%\upfyn-code\` |
|
|
154
|
+
|
|
155
|
+
## Links
|
|
156
|
+
|
|
157
|
+
- **Website:** [cli.upfyn.com](https://cli.upfyn.com)
|
|
158
|
+
- **Documentation:** [cli.upfyn.com/docs](https://cli.upfyn.com/docs)
|
|
159
|
+
- **GitHub:** [github.com/AnitChaudhry/UpfynAI-Code](https://github.com/AnitChaudhry/UpfynAI-Code)
|
|
160
|
+
- **Issues:** [github.com/AnitChaudhry/UpfynAI-Code/issues](https://github.com/AnitChaudhry/UpfynAI-Code/issues)
|
|
161
|
+
|
|
162
|
+
## License
|
|
163
|
+
|
|
164
|
+
GPL-3.0 — see [LICENSE](https://github.com/AnitChaudhry/UpfynAI-Code/blob/main/LICENSE) for details.
|
|
165
|
+
|
|
166
|
+
Built by [Thinqmesh Technologies](https://cli.upfyn.com).
|
package/bin/cli.js
CHANGED
|
@@ -11,7 +11,7 @@ const program = new Command();
|
|
|
11
11
|
program
|
|
12
12
|
.name('upfyn-code')
|
|
13
13
|
.description('Launch Upfyn AI coding environment from your terminal')
|
|
14
|
-
.version('1.0.
|
|
14
|
+
.version('1.0.3')
|
|
15
15
|
.option('--local', 'Start a local server instead of opening the hosted app')
|
|
16
16
|
.action(async (options) => {
|
|
17
17
|
if (options.local) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "upfyn-code",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "Unified AI coding interface — access AI chat, terminal, file explorer, git, and visual canvas from any browser. Connect your local machine and code from anywhere.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"upfyn-code": "./bin/cli.js"
|
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
"files": [
|
|
10
10
|
"bin/",
|
|
11
11
|
"src/",
|
|
12
|
-
"dist/"
|
|
12
|
+
"dist/",
|
|
13
|
+
"README.md",
|
|
14
|
+
"LICENSE"
|
|
13
15
|
],
|
|
14
16
|
"scripts": {
|
|
15
17
|
"start": "node bin/cli.js",
|
|
@@ -17,13 +19,41 @@
|
|
|
17
19
|
},
|
|
18
20
|
"keywords": [
|
|
19
21
|
"upfyn",
|
|
22
|
+
"upfyn-code",
|
|
20
23
|
"ai",
|
|
21
24
|
"coding",
|
|
22
25
|
"cli",
|
|
23
|
-
"terminal"
|
|
26
|
+
"terminal",
|
|
27
|
+
"remote-development",
|
|
28
|
+
"code-editor",
|
|
29
|
+
"ai-assistant",
|
|
30
|
+
"ai-coding",
|
|
31
|
+
"developer-tools",
|
|
32
|
+
"devtools",
|
|
33
|
+
"browser-ide",
|
|
34
|
+
"remote-access",
|
|
35
|
+
"websocket",
|
|
36
|
+
"git",
|
|
37
|
+
"file-explorer",
|
|
38
|
+
"canvas",
|
|
39
|
+
"whiteboard",
|
|
40
|
+
"mcp",
|
|
41
|
+
"model-context-protocol"
|
|
24
42
|
],
|
|
25
|
-
"author":
|
|
26
|
-
|
|
43
|
+
"author": {
|
|
44
|
+
"name": "Thinqmesh Technologies",
|
|
45
|
+
"url": "https://cli.upfyn.com"
|
|
46
|
+
},
|
|
47
|
+
"license": "GPL-3.0",
|
|
48
|
+
"homepage": "https://cli.upfyn.com",
|
|
49
|
+
"repository": {
|
|
50
|
+
"type": "git",
|
|
51
|
+
"url": "git+https://github.com/AnitChaudhry/UpfynAI-Code.git",
|
|
52
|
+
"directory": "packages/cli"
|
|
53
|
+
},
|
|
54
|
+
"bugs": {
|
|
55
|
+
"url": "https://github.com/AnitChaudhry/UpfynAI-Code/issues"
|
|
56
|
+
},
|
|
27
57
|
"dependencies": {
|
|
28
58
|
"chalk": "^5.3.0",
|
|
29
59
|
"commander": "^12.1.0",
|
|
@@ -35,5 +65,10 @@
|
|
|
35
65
|
},
|
|
36
66
|
"engines": {
|
|
37
67
|
"node": ">=18.0.0"
|
|
38
|
-
}
|
|
68
|
+
},
|
|
69
|
+
"os": [
|
|
70
|
+
"darwin",
|
|
71
|
+
"linux",
|
|
72
|
+
"win32"
|
|
73
|
+
]
|
|
39
74
|
}
|