@staff0rd/assist 0.483.8 → 0.484.0

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/dist/index.js CHANGED
@@ -6,7 +6,7 @@ import { Command } from "commander";
6
6
  // package.json
7
7
  var package_default = {
8
8
  name: "@staff0rd/assist",
9
- version: "0.483.8",
9
+ version: "0.484.0",
10
10
  type: "module",
11
11
  main: "dist/index.js",
12
12
  bin: {
@@ -523,7 +523,7 @@ var assistConfigShape = {
523
523
  // why: TCP port the native Windows daemon listens on for the WSL bridge; defaults to 51764
524
524
  windowsDaemonPort: z2.number().optional(),
525
525
  windowsVersionCheck: z2.enum(["block", "warn", "off"]).default("block"),
526
- includeCommittedChanges: z2.boolean().default(false),
526
+ includeCommittedChanges: z2.boolean().default(true),
527
527
  topBar: z2.boolean().default(true),
528
528
  floatWaiting: z2.boolean().default(true)
529
529
  }).optional(),
@@ -9106,11 +9106,9 @@ function toGitCwd(cwd) {
9106
9106
  // src/commands/sessions/web/includesCommittedChanges.ts
9107
9107
  function includesCommittedChanges(cwd) {
9108
9108
  try {
9109
- return Boolean(
9110
- loadConfigFrom(toGitCwd(cwd)).sessions?.includeCommittedChanges
9111
- );
9109
+ return loadConfigFrom(toGitCwd(cwd)).sessions?.includeCommittedChanges ?? true;
9112
9110
  } catch {
9113
- return false;
9111
+ return true;
9114
9112
  }
9115
9113
  }
9116
9114
 
@@ -32070,8 +32068,8 @@ var sessionsConfigHelp = [
32070
32068
  },
32071
32069
  {
32072
32070
  key: "sessions.includeCommittedChanges",
32073
- setter: "assist config set sessions.includeCommittedChanges true -g",
32074
- note: "session card counts and /diff span the whole session (its first commit's parent, else merge-base with the default branch) instead of just uncommitted work (default off)"
32071
+ setter: "assist config set sessions.includeCommittedChanges false -g",
32072
+ note: "default on: session card counts, /diff and the diff scope picker span the commits recorded against the session's backlog item as well as uncommitted work, so they survive the agent committing. Set false to show only uncommitted changes"
32075
32073
  },
32076
32074
  {
32077
32075
  key: "sessions.topBar",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@staff0rd/assist",
3
- "version": "0.483.8",
3
+ "version": "0.484.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "bin": {