@suco/su-auggie-mcp 0.1.6 → 0.1.7

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/types.d.ts CHANGED
@@ -133,7 +133,9 @@ export interface WorkspaceStatus {
133
133
  root: string;
134
134
  /** Current status */
135
135
  status: WorkspaceStatusType;
136
- /** Total files processed (indexed + skipped + failed + pending) */
136
+ /** Total files in SDK index (persisted + newly indexed) */
137
+ totalIndexed: number;
138
+ /** Total files processed this session (indexed + skipped + failed + pending) */
137
139
  total: number;
138
140
  /** Files skipped (too large, binary, unreadable, etc.) */
139
141
  skipped: number;
@@ -141,7 +143,7 @@ export interface WorkspaceStatus {
141
143
  failed: number;
142
144
  /** Number of pending files (change queue + retry queue) */
143
145
  pending: number;
144
- /** Number of indexed files */
146
+ /** Number of newly indexed files this session */
145
147
  indexed: number;
146
148
  /** Whether file watcher is active */
147
149
  watching: boolean;
package/dist/workspace.js CHANGED
@@ -608,12 +608,15 @@ export class Workspace {
608
608
  };
609
609
  // Calculate pending (change queue + retry queue + cooldown)
610
610
  const pending = this.changeQueue.length + progressPending + stats.pendingRetry + stats.pendingCooldown;
611
- // Calculate total = indexed + skipped + failed + pending
611
+ // Calculate total = indexed + skipped + failed + pending (this session only)
612
612
  const indexed = stats.indexed;
613
613
  const total = indexed + stats.skipped + stats.failed + pending;
614
+ // Total files in SDK index (persisted + newly indexed)
615
+ const totalIndexed = this.context?.getIndexedPaths().length ?? 0;
614
616
  return {
615
617
  root: this.root,
616
618
  status: this.status,
619
+ totalIndexed,
617
620
  total,
618
621
  skipped: stats.skipped,
619
622
  failed: stats.failed,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@suco/su-auggie-mcp",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "MCP server exposing Augment Code context engine capabilities",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",