@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 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-A2CVSQ3K.js";
5
+ } from "./chunk-ABDHDLEJ.js";
6
6
  import {
7
7
  authService
8
- } from "./chunk-WETVBZ6Z.js";
8
+ } from "./chunk-GOS22L3R.js";
9
9
 
10
10
  // src/components/StatusDashboard.tsx
11
11
  import { useState, useEffect } from "react";
@@ -0,0 +1,7 @@
1
+ import {
2
+ apiService
3
+ } from "./chunk-L7PFNRLV.js";
4
+ import "./chunk-GOS22L3R.js";
5
+ export {
6
+ apiService
7
+ };
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  config,
3
3
  logger
4
- } from "./chunk-WETVBZ6Z.js";
4
+ } from "./chunk-GOS22L3R.js";
5
5
 
6
6
  // src/services/git.ts
7
7
  import simpleGit from "simple-git";