@zipwire/zw 1.4.2 → 1.4.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 +26 -11
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -72,26 +72,41 @@ The NPM distribution uses a multi-package architecture that automatically instal
|
|
|
72
72
|
|
|
73
73
|
## Quick Start
|
|
74
74
|
|
|
75
|
-
|
|
76
|
-
```bash
|
|
77
|
-
zw auth login
|
|
78
|
-
```
|
|
79
|
-
|
|
80
|
-
Or manually with a token:
|
|
81
|
-
```bash
|
|
82
|
-
zw auth login --token your-api-token
|
|
83
|
-
```
|
|
75
|
+
### Getting Started: Choose Your Path
|
|
84
76
|
|
|
85
|
-
|
|
77
|
+
**New to Zipwire? Sign up from the command line:**
|
|
78
|
+
```bash
|
|
79
|
+
zw auth signup --name "Your Name" --whatsapp "+1234567890"
|
|
80
|
+
```
|
|
81
|
+
You'll receive a WhatsApp message from Zipwire's onboarding bot. Follow the prompts to activate your account — all from your phone, no web browser needed. Once activated, you're ready to use the CLI immediately.
|
|
82
|
+
|
|
83
|
+
**Already have an account? Log in:**
|
|
84
|
+
```bash
|
|
85
|
+
zw auth login
|
|
86
|
+
```
|
|
87
|
+
This generates a magic link to your email. Alternatively, if you have an API token:
|
|
88
|
+
```bash
|
|
89
|
+
zw auth login --token your-api-token
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
### Start Tracking Time
|
|
93
|
+
|
|
94
|
+
Once authenticated, you're ready to use the CLI:
|
|
95
|
+
|
|
96
|
+
1. **List your activities** to see what's available:
|
|
86
97
|
```bash
|
|
87
98
|
zw activity list
|
|
88
99
|
```
|
|
89
100
|
|
|
90
|
-
|
|
101
|
+
2. **Track your first time entry**:
|
|
91
102
|
```bash
|
|
92
103
|
zw journal track "Fixed authentication bug" -d 45 --activity "Company > Project > Development"
|
|
93
104
|
```
|
|
94
105
|
|
|
106
|
+
### Complete Workflow
|
|
107
|
+
|
|
108
|
+
See [Complete Workflow Example](#complete-workflow-example) below for the full journey from signup to invoicing.
|
|
109
|
+
|
|
95
110
|
## Command Structure
|
|
96
111
|
|
|
97
112
|
The CLI follows the pattern: `zw <noun> <verb> [options]`
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zipwire/zw",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
4
4
|
"description": "Zipwire CLI tool for time tracking and activity management",
|
|
5
5
|
"bin": {
|
|
6
6
|
"zw": "bin/cli.js"
|
|
7
7
|
},
|
|
8
8
|
"optionalDependencies": {
|
|
9
|
-
"@zipwire/zw-linux-amd64": "1.4.
|
|
10
|
-
"@zipwire/zw-linux-arm64": "1.4.
|
|
11
|
-
"@zipwire/zw-darwin-amd64": "1.4.
|
|
12
|
-
"@zipwire/zw-darwin-arm64": "1.4.
|
|
13
|
-
"@zipwire/zw-windows-amd64": "1.4.
|
|
9
|
+
"@zipwire/zw-linux-amd64": "1.4.3",
|
|
10
|
+
"@zipwire/zw-linux-arm64": "1.4.3",
|
|
11
|
+
"@zipwire/zw-darwin-amd64": "1.4.3",
|
|
12
|
+
"@zipwire/zw-darwin-arm64": "1.4.3",
|
|
13
|
+
"@zipwire/zw-windows-amd64": "1.4.3"
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
16
16
|
"bin/",
|