phewsh 0.11.0 → 0.11.1
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 +35 -22
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -12,6 +12,23 @@ npm install -g phewsh
|
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
14
|
phewsh # enter the interactive shell
|
|
15
|
+
phewsh serve # start live execution bridge for phewsh.com/intent
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Live Execution
|
|
19
|
+
|
|
20
|
+
Connect the web app to your local machine for real-time task execution:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
phewsh serve
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
This starts a bridge on `localhost:7483`. Open [phewsh.com/intent](https://phewsh.com/intent) and go to the Work tab — you'll see a green "Live" indicator. Agent tasks get a "Run Live" button that executes via Claude Code on your machine.
|
|
27
|
+
|
|
28
|
+
## Interactive Shell
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
phewsh
|
|
15
32
|
```
|
|
16
33
|
|
|
17
34
|
Inside the shell:
|
|
@@ -22,7 +39,6 @@ Inside the shell:
|
|
|
22
39
|
/push Sync local to cloud
|
|
23
40
|
/pull Sync cloud to local
|
|
24
41
|
/context View loaded artifacts
|
|
25
|
-
/sync Check sync status
|
|
26
42
|
/help All commands
|
|
27
43
|
```
|
|
28
44
|
|
|
@@ -36,9 +52,25 @@ Creates three structured artifacts in `.intent/`:
|
|
|
36
52
|
|
|
37
53
|
These artifacts become persistent context for AI conversations, both in the shell and across tools.
|
|
38
54
|
|
|
55
|
+
## All Commands
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
phewsh # Interactive AI session with .intent/ context
|
|
59
|
+
phewsh serve # Live execution bridge for web app
|
|
60
|
+
phewsh clarify # AI-assisted artifact generation
|
|
61
|
+
phewsh intent --init # Create .intent/ without entering the shell
|
|
62
|
+
phewsh intent --status # Check artifact state
|
|
63
|
+
phewsh ai run "prompt" # One-shot AI with .intent/ context
|
|
64
|
+
phewsh login # Authenticate + set API key
|
|
65
|
+
phewsh push # Sync local .intent/ to cloud
|
|
66
|
+
phewsh pull # Sync cloud to local
|
|
67
|
+
phewsh mcp setup # Configure MCP server for agent connectivity
|
|
68
|
+
phewsh style # Build your style identity
|
|
69
|
+
```
|
|
70
|
+
|
|
39
71
|
## Sync
|
|
40
72
|
|
|
41
|
-
CLI and web (phewsh.com/intent) share the same cloud via Supabase.
|
|
73
|
+
CLI and web ([phewsh.com/intent](https://phewsh.com/intent)) share the same cloud via Supabase.
|
|
42
74
|
|
|
43
75
|
```bash
|
|
44
76
|
phewsh login # authenticate
|
|
@@ -46,26 +78,7 @@ phewsh push # upload .intent/ to cloud
|
|
|
46
78
|
phewsh pull # download from cloud
|
|
47
79
|
```
|
|
48
80
|
|
|
49
|
-
Sync is manual. The CLI shows status on startup
|
|
50
|
-
|
|
51
|
-
```
|
|
52
|
-
↓ Cloud is newer (2h ago) — run /pull
|
|
53
|
-
↑ Local changes not pushed (15m ago) — run /push
|
|
54
|
-
↕ synced
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
The `/intent` Claude Code skill writes local files only — run `phewsh push` after using it.
|
|
58
|
-
|
|
59
|
-
## Non-interactive mode
|
|
60
|
-
|
|
61
|
-
```bash
|
|
62
|
-
phewsh intent --init # Create .intent/ without entering the shell
|
|
63
|
-
phewsh intent --status # Check artifact state
|
|
64
|
-
phewsh clarify # AI-assisted artifact generation
|
|
65
|
-
phewsh ai run "prompt" # One-shot AI with .intent/ context
|
|
66
|
-
phewsh push # Sync to cloud
|
|
67
|
-
phewsh pull # Sync from cloud
|
|
68
|
-
```
|
|
81
|
+
Sync is manual. The CLI shows status on startup.
|
|
69
82
|
|
|
70
83
|
## Web app
|
|
71
84
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "phewsh",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"description": "Turn intent into action. Structure your thinking, execute your next step.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"phewsh": "bin/phewsh.js"
|
|
@@ -31,5 +31,7 @@
|
|
|
31
31
|
"homepage": "https://phewsh.com",
|
|
32
32
|
"engines": {
|
|
33
33
|
"node": ">=18.0.0"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
34
36
|
}
|
|
35
37
|
}
|