mintree 0.5.12 → 0.5.13

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
@@ -211,7 +211,7 @@ It has three tabs, switched with `←` / `→`:
211
211
  | `a` | Orchestrate tab: select / deselect all visible tickets |
212
212
  | `w` | Always open the create overlay (type + kebab description) |
213
213
  | `d` | Delete the selected worktree (confirmation overlay) |
214
- | `r` | Manual refresh (auto-refreshes silently every 5 min) |
214
+ | `r` | Manual refresh — bypasses the Linear snapshot cache, so a just-assigned ticket shows up immediately (auto-refreshes silently every 5 min) |
215
215
  | `o` | Open the issue in your browser |
216
216
  | `q`/`Esc`| Quit (or cancel an open overlay) |
217
217
 
@@ -669,7 +669,7 @@ export default function Dashboard() {
669
669
  // Live value for the mouse handler (mounted once) to read without
670
670
  // re-binding on every resize.
671
671
  const listWidthRef = useRef(0);
672
- const refresh = async () => {
672
+ const refresh = async (opts) => {
673
673
  const root = findMainRepoRoot();
674
674
  if (!root) {
675
675
  setState({
@@ -687,7 +687,7 @@ export default function Dashboard() {
687
687
  });
688
688
  return;
689
689
  }
690
- const issues = await loadDashboard(root);
690
+ const issues = await loadDashboard(root, opts);
691
691
  if (!issues) {
692
692
  const provider = readMetadata(root).provider ?? "github";
693
693
  const message = provider === "linear"
@@ -975,7 +975,10 @@ export default function Dashboard() {
975
975
  }
976
976
  if (input === "r") {
977
977
  setState({ ...state, refreshing: true });
978
- void refresh();
978
+ // Manual refresh bypasses the Linear snapshot cache: the user pressed
979
+ // `r` to see a change they just made externally (e.g. a freshly
980
+ // assigned ticket), so serving cached data would defeat the gesture.
981
+ void refresh({ forceRefresh: true });
979
982
  return;
980
983
  }
981
984
  // Orchestrate tab: Space toggles the ticket under the cursor; `a`
@@ -1,8 +1,8 @@
1
1
  import { type AheadBehind } from "./git.js";
2
2
  import { type PrInfo } from "./pr.js";
3
- import type { IssueProjectInfo, ProviderIssue } from "./providers/types.js";
3
+ import type { IssueProjectInfo, LoadOptions, ProviderIssue } from "./providers/types.js";
4
4
  export type { PrInfo, PrState } from "./pr.js";
5
- export type { ProviderIssue, IssueProjectInfo, IssueId } from "./providers/types.js";
5
+ export type { ProviderIssue, IssueProjectInfo, IssueId, LoadOptions } from "./providers/types.js";
6
6
  export type WorktreeInfo = {
7
7
  path: string;
8
8
  branch: string | null;
@@ -29,4 +29,4 @@ export type DashboardIssue = {
29
29
  * session snapshot. Designed to be called on dashboard mount and on every
30
30
  * `r` refresh — cheap because all the per-worktree probes are local.
31
31
  */
32
- export declare function loadDashboard(repoRoot: string): Promise<DashboardIssue[] | null>;
32
+ export declare function loadDashboard(repoRoot: string, opts?: LoadOptions): Promise<DashboardIssue[] | null>;
@@ -171,9 +171,9 @@ function buildOrphanRows(worktreesByIssue, assignedIds, sessionLookup, prByBranc
171
171
  * session snapshot. Designed to be called on dashboard mount and on every
172
172
  * `r` refresh — cheap because all the per-worktree probes are local.
173
173
  */
174
- export async function loadDashboard(repoRoot) {
174
+ export async function loadDashboard(repoRoot, opts) {
175
175
  const provider = createProvider(repoRoot);
176
- const issues = await provider.listAssignedIssues();
176
+ const issues = await provider.listAssignedIssues(opts);
177
177
  if (!issues)
178
178
  return null;
179
179
  const worktreesByIssue = buildWorktreeIndex(repoRoot);
@@ -196,7 +196,7 @@ export async function loadDashboard(repoRoot) {
196
196
  // alongside the per-branch PR probes so neither blocks the other.
197
197
  const [, projectByIssue] = await Promise.all([
198
198
  Promise.all(prFetches),
199
- provider.fetchProjectAssignments(),
199
+ provider.fetchProjectAssignments(opts),
200
200
  ]);
201
201
  // Provider signals total failure (vs no projects configured) with null —
202
202
  // treat as a partial load failure so the caller's resilient refresh
@@ -14,7 +14,7 @@
14
14
  * Linear personal API keys (`lin_api_...`) go directly into the
15
15
  * Authorization header with no `Bearer` prefix.
16
16
  */
17
- import type { IssueId, IssueProjectInfo, IssueProvider, ProviderIssue, TransitionResult } from "./types.js";
17
+ import type { IssueId, IssueProjectInfo, IssueProvider, LoadOptions, ProviderIssue, TransitionResult } from "./types.js";
18
18
  export declare class LinearProvider implements IssueProvider {
19
19
  private readonly repoRoot;
20
20
  readonly kind: "linear";
@@ -26,10 +26,15 @@ export declare class LinearProvider implements IssueProvider {
26
26
  * and fetchProjectAssignments call this so we never double-fetch within a
27
27
  * load. Per-instance promise memoisation handles the back-to-back call;
28
28
  * the module-level cache handles refreshes within the TTL.
29
+ *
30
+ * `forceRefresh` skips the module-level cache read so the live GraphQL query
31
+ * runs again (it still writes the result back to the cache). The per-instance
32
+ * promise is kept either way, so the two callers within one load share the
33
+ * single forced fetch instead of issuing two.
29
34
  */
30
35
  private loadSnapshot;
31
- listAssignedIssues(): Promise<ProviderIssue[] | null>;
32
- fetchProjectAssignments(): Promise<Map<IssueId, IssueProjectInfo> | null>;
36
+ listAssignedIssues(opts?: LoadOptions): Promise<ProviderIssue[] | null>;
37
+ fetchProjectAssignments(opts?: LoadOptions): Promise<Map<IssueId, IssueProjectInfo> | null>;
33
38
  transitionIssueToInProgress(issueId: IssueId): Promise<TransitionResult>;
34
39
  }
35
40
  /**
@@ -355,8 +355,13 @@ export class LinearProvider {
355
355
  * and fetchProjectAssignments call this so we never double-fetch within a
356
356
  * load. Per-instance promise memoisation handles the back-to-back call;
357
357
  * the module-level cache handles refreshes within the TTL.
358
+ *
359
+ * `forceRefresh` skips the module-level cache read so the live GraphQL query
360
+ * runs again (it still writes the result back to the cache). The per-instance
361
+ * promise is kept either way, so the two callers within one load share the
362
+ * single forced fetch instead of issuing two.
358
363
  */
359
- async loadSnapshot() {
364
+ async loadSnapshot(forceRefresh = false) {
360
365
  if (this.snapshotPromise)
361
366
  return this.snapshotPromise;
362
367
  const cfg = this.getConfig();
@@ -377,7 +382,7 @@ export class LinearProvider {
377
382
  }
378
383
  const apiUrl = cfg.apiUrl ?? DEFAULT_API_URL;
379
384
  const teamKeys = cfg.teams.map((t) => t.key);
380
- const cached = readSnapshotCache(cfg.workspaceSlug, teamKeys);
385
+ const cached = forceRefresh ? null : readSnapshotCache(cfg.workspaceSlug, teamKeys);
381
386
  if (cached)
382
387
  return cached;
383
388
  this.snapshotPromise = (async () => {
@@ -394,11 +399,11 @@ export class LinearProvider {
394
399
  })();
395
400
  return this.snapshotPromise;
396
401
  }
397
- async listAssignedIssues() {
402
+ async listAssignedIssues(opts) {
398
403
  const cfg = this.getConfig();
399
404
  if (!cfg || cfg.teams.length === 0)
400
405
  return [];
401
- const snapshot = await this.loadSnapshot();
406
+ const snapshot = await this.loadSnapshot(opts?.forceRefresh ?? false);
402
407
  if ("ok" in snapshot && snapshot.ok === false)
403
408
  return null;
404
409
  const data = snapshot;
@@ -417,12 +422,12 @@ export class LinearProvider {
417
422
  }
418
423
  return out;
419
424
  }
420
- async fetchProjectAssignments() {
425
+ async fetchProjectAssignments(opts) {
421
426
  const cfg = this.getConfig();
422
427
  const result = new Map();
423
428
  if (!cfg || cfg.teams.length === 0)
424
429
  return result;
425
- const snapshot = await this.loadSnapshot();
430
+ const snapshot = await this.loadSnapshot(opts?.forceRefresh ?? false);
426
431
  if ("ok" in snapshot && snapshot.ok === false)
427
432
  return null;
428
433
  const data = snapshot;
@@ -10,6 +10,17 @@
10
10
  * worktree dir names round-trip through the IssueId without re-parsing.
11
11
  */
12
12
  export type IssueId = string;
13
+ /**
14
+ * Options shared by the read methods of IssueProvider. `forceRefresh` tells a
15
+ * provider that keeps a snapshot cache (Linear) to bypass it and re-fetch from
16
+ * the source. The dashboard sets it for the manual `r` refresh so a change made
17
+ * seconds ago (e.g. an issue just assigned to the user) shows up immediately,
18
+ * instead of waiting out the cache TTL. Providers without a cache (GitHub)
19
+ * ignore it.
20
+ */
21
+ export type LoadOptions = {
22
+ forceRefresh?: boolean;
23
+ };
13
24
  /**
14
25
  * A workflow issue normalised across providers. Shape mirrors what the GH
15
26
  * `gh issue list --json` payload exposes minus the GH-specific `number`
@@ -91,7 +102,7 @@ export interface IssueProvider {
91
102
  * Linear: the configured workspace/teams). Returns null on transient
92
103
  * failure (auth, network) — the dashboard renders an error hint.
93
104
  */
94
- listAssignedIssues(): Promise<ProviderIssue[] | null>;
105
+ listAssignedIssues(opts?: LoadOptions): Promise<ProviderIssue[] | null>;
95
106
  /**
96
107
  * Returns project/board membership for the assigned issues (same scope as
97
108
  * listAssignedIssues — typically a single round-trip). The dashboard uses
@@ -104,7 +115,7 @@ export interface IssueProvider {
104
115
  * auth missing). Distinct from empty so the dashboard can treat
105
116
  * null as a partial load failure and keep its last-good state.
106
117
  */
107
- fetchProjectAssignments(): Promise<Map<IssueId, IssueProjectInfo> | null>;
118
+ fetchProjectAssignments(opts?: LoadOptions): Promise<Map<IssueId, IssueProjectInfo> | null>;
108
119
  /**
109
120
  * Moves the issue to its project's "In Progress" workflow state. Idempotent
110
121
  * by design (returns noop-already when already there) and conservative on
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mintree",
3
- "version": "0.5.12",
3
+ "version": "0.5.13",
4
4
  "description": "Issue-driven git worktrees + Claude Code sessions for repos with an opinionated SDD+TDD flow.",
5
5
  "license": "MIT",
6
6
  "author": "Martin Mineo <mmineo@canarytechnologies.com>",