parasor 0.1.1 → 0.1.2

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 CHANGED
@@ -1,24 +1,27 @@
1
1
  # parasor
2
2
 
3
- > AI-first coding workspace for continuing your desktop development flow from
4
- > anywhere.
3
+ > Open-source, mobile-first workspace for operating your local development
4
+ > environment from a phone.
5
5
 
6
- parasor runs on your development machine and brings the same AI-driven coding
7
- workflow to your desk, phone, or another trusted device. Use a browser to work
8
- with your agents, terminals, Git state, files, and localhost dev servers
9
- without changing the project environment on the host machine.
6
+ parasor runs on your development machine and turns it into a browser workspace
7
+ for your phone or another trusted device. The core is persistent PTY-backed
8
+ terminal control, so the host machine keeps the real project environment while
9
+ you create projects, install dependencies, run CLI tools, drive AI coding
10
+ agents, edit files, review diffs, inspect Git state, and open localhost dev
11
+ servers from mobile.
10
12
 
11
13
  ## Highlights
12
14
 
13
- - **Multi-agent parallel panes** - split the workspace into terminal, file
14
- tree, editor, diff, and browser views while several agents run at once.
15
- - **Desk-to-mobile workflow** - startup QR seeds the session cookie, mobile
16
- controls cover common terminal keys, and clipboard/file upload works in the
17
- on-page terminal.
15
+ - **Agent-independent architecture** - parasor is built around persistent PTY
16
+ terminal control, not a specific agent runtime. Use Codex, Claude Code,
17
+ ordinary shell tools, package managers, or existing project workflows as-is.
18
+ - **All-in-one mobile UI** - terminal, Git state, file tree, editor, diff,
19
+ browser views, localhost dev servers, and agent status are integrated in one
20
+ browser workspace.
21
+ - **Practical mobile development** - QR login, mobile terminal key controls,
22
+ clipboard/file upload, and persistent PTYs keep work usable from a phone.
18
23
  - **Persistent PTYs** - the user-scope service installs a PTY host daemon so
19
24
  scrollback and sessions survive server restarts.
20
- - **Project-scoped file ops** - browse files, edit in CodeMirror, open diffs,
21
- drag files into terminals, and paste images into an upload directory.
22
25
  - **Agent-aware shims** - Claude Code and Codex wrappers add runtime integration
23
26
  hooks without editing user agent configuration files.
24
27
  - **Network port center** - detected localhost dev servers can be opened from
@@ -65,6 +68,22 @@ parasor qr # re-render QR + access URLs over the IPC socket
65
68
  parasor qr --iface=en0 # prefer a specific network interface
66
69
  ```
67
70
 
71
+ ## Update / Uninstall
72
+
73
+ Update a global install:
74
+
75
+ ```bash
76
+ npm install -g parasor@latest
77
+ parasor service restart # if service mode is installed
78
+ ```
79
+
80
+ Uninstall the service before removing the package:
81
+
82
+ ```bash
83
+ parasor service uninstall
84
+ npm uninstall -g parasor
85
+ ```
86
+
68
87
  ## Background Service
69
88
 
70
89
  Keep parasor up after login. On macOS, the LaunchAgent also starts at user
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "parasor",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Web-based multi-client terminal multiplexer with PTY sharing.",
5
5
  "keywords": [
6
6
  "terminal",