shraga 0.1.93 → 0.1.94

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shraga",
3
- "version": "0.1.93",
3
+ "version": "0.1.94",
4
4
  "description": "The teammate you delegate coding to — a self-hostable, multi-user AI coding agent web UI (Claude Code, with a pluggable engine seam).",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -72,7 +72,13 @@ export function extractCommitSubject(raw: string): string {
72
72
  * guard aborts the WHOLE commit, so one churn file stalls every other file's sync indefinitely —
73
73
  * measured 2026-09-07: repeated BLOCKED alerts and a 27-commit push backlog behind two task files. */
74
74
  export function isChurnPath(file: string): boolean {
75
- return /(^|\/)workspace\/[^/]+\/workers\/(logs|tasks)\//.test(file) || /\.bak(-|\.|$)/.test(file);
75
+ return /(^|\/)workspace\/[^/]+\/workers\/(logs|tasks)\//.test(file)
76
+ // Per-job runtime records (one .json/.log/.status triple per background job), written on
77
+ // dispatch and garbage-collected once the job is done. 54 live files churning constantly, so
78
+ // their deletion is the design, not a regression — the integrity audit reported dozens of
79
+ // "missing … in reference but not HEAD" lines for a routine GC pass.
80
+ || /(^|\/)jobs\/job-[^/]+\.(json|log|status)$/.test(file)
81
+ || /\.bak(-|\.|$)/.test(file);
76
82
  }
77
83
 
78
84
  export class DataSyncOptions {