@gowelle/stint-agent 1.2.18 → 1.2.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.
- package/README.md +27 -0
- package/assets/logo.png +0 -0
- package/dist/{StatusDashboard-KCHNLVD7.js → StatusDashboard-UXWLHFTD.js} +2 -2
- package/dist/api-RQW35VGT.js +7 -0
- package/dist/{chunk-A2CVSQ3K.js → chunk-ABDHDLEJ.js} +1 -1
- package/dist/chunk-BH4OTBYH.js +2618 -0
- package/dist/{chunk-WETVBZ6Z.js → chunk-GOS22L3R.js} +32 -2
- package/dist/{chunk-XPZNWXB4.js → chunk-L7PFNRLV.js} +2 -2
- package/dist/daemon/runner.js +40 -4
- package/dist/index.js +172 -126
- package/package.json +3 -1
- package/dist/api-6EGHLTCT.js +0 -7
- package/dist/chunk-SXPP272L.js +0 -534
package/README.md
CHANGED
|
@@ -105,6 +105,33 @@ stint daemon status
|
|
|
105
105
|
| `--push` | Push changes to remote after committing |
|
|
106
106
|
| `--force` | Skip file validation warnings |
|
|
107
107
|
|
|
108
|
+
### Updates
|
|
109
|
+
|
|
110
|
+
| Command | Description |
|
|
111
|
+
| ---------------------------- | ---------------------------------------------- |
|
|
112
|
+
| `stint update` | Update to latest stable version |
|
|
113
|
+
| `stint update --check` | Check for updates without installing |
|
|
114
|
+
| `stint update --channel beta`| Update to beta channel |
|
|
115
|
+
| `stint update -y` | Skip confirmation prompt |
|
|
116
|
+
|
|
117
|
+
**Automatic Update Checks:**
|
|
118
|
+
|
|
119
|
+
The daemon automatically checks for updates once per day on startup. You'll receive a desktop notification when an update is available.
|
|
120
|
+
|
|
121
|
+
**Disable automatic checks:**
|
|
122
|
+
```bash
|
|
123
|
+
stint config set autoCheckUpdates false
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
**Release Channels:**
|
|
127
|
+
- `stable` - Production releases (default)
|
|
128
|
+
- `beta` - Pre-release versions for testing
|
|
129
|
+
|
|
130
|
+
To publish a beta version:
|
|
131
|
+
```bash
|
|
132
|
+
npm publish --tag beta
|
|
133
|
+
```
|
|
134
|
+
|
|
108
135
|
## Complete Workflow
|
|
109
136
|
|
|
110
137
|
```bash
|
package/assets/logo.png
CHANGED
|
Binary file
|
|
@@ -2,10 +2,10 @@ import {
|
|
|
2
2
|
gitService,
|
|
3
3
|
projectService,
|
|
4
4
|
validatePidFile
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-ABDHDLEJ.js";
|
|
6
6
|
import {
|
|
7
7
|
authService
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-GOS22L3R.js";
|
|
9
9
|
|
|
10
10
|
// src/components/StatusDashboard.tsx
|
|
11
11
|
import { useState, useEffect } from "react";
|