@suco/su-auggie-mcp 0.1.2 → 0.1.5
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 +8 -1
- package/dist/workspace.js +6 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @suco/su-auggie-mcp
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@suco/su-auggie-mcp)
|
|
4
|
+
[](https://www.npmjs.com/package/@suco/su-auggie-mcp)
|
|
5
|
+
[](https://nodejs.org)
|
|
6
|
+
|
|
3
7
|
An MCP (Model Context Protocol) server by [Solutions Unity](https://solutionsunity.com) utilizing the [Augment Code SDK](https://www.npmjs.com/package/@augmentcode/auggie-sdk) to expose context engine capabilities.
|
|
4
8
|
|
|
5
9
|
> ⚠️ **Experimental** — This package is a test implementation. Use at your own risk.
|
|
@@ -15,12 +19,15 @@ Add to your MCP client configuration:
|
|
|
15
19
|
"mcpServers": {
|
|
16
20
|
"auggie": {
|
|
17
21
|
"command": "npx",
|
|
18
|
-
"args": ["@suco/su-auggie-mcp"]
|
|
22
|
+
"args": ["@suco/su-auggie-mcp@latest", "--debug"],
|
|
23
|
+
"alwaysAllow": ["codebase", "index", "debug"]
|
|
19
24
|
}
|
|
20
25
|
}
|
|
21
26
|
}
|
|
22
27
|
```
|
|
23
28
|
|
|
29
|
+
> **Note:** Using `@latest` ensures you always get the newest version. Without it, npx caches the package and won't pick up updates on restart.
|
|
30
|
+
|
|
24
31
|
### Options
|
|
25
32
|
|
|
26
33
|
| Option | Description |
|
package/dist/workspace.js
CHANGED
|
@@ -559,11 +559,7 @@ export class Workspace {
|
|
|
559
559
|
}
|
|
560
560
|
/** Get workspace status */
|
|
561
561
|
getStatus() {
|
|
562
|
-
//
|
|
563
|
-
const progressPending = this.progress
|
|
564
|
-
? this.progress.discovered - this.progress.indexed
|
|
565
|
-
: 0;
|
|
566
|
-
// Get stats from FileIndexer
|
|
562
|
+
// Get stats from FileIndexer first (needed for pending calculation)
|
|
567
563
|
const stats = this.fileIndexer?.getStats() ?? {
|
|
568
564
|
indexed: 0,
|
|
569
565
|
skipped: 0,
|
|
@@ -574,6 +570,11 @@ export class Workspace {
|
|
|
574
570
|
cooldownCycle: 0,
|
|
575
571
|
cooldownNextRetryAt: null,
|
|
576
572
|
};
|
|
573
|
+
// Pending = discovered - (indexed + skipped + failed from FileIndexer)
|
|
574
|
+
// This avoids double-counting skipped files as both skipped AND pending
|
|
575
|
+
const progressPending = this.progress
|
|
576
|
+
? Math.max(0, this.progress.discovered - stats.indexed - stats.skipped - stats.failed)
|
|
577
|
+
: 0;
|
|
577
578
|
const metrics = this.fileIndexer?.getBatcherMetrics() ?? {
|
|
578
579
|
currentConcurrency: 0,
|
|
579
580
|
peakConcurrency: 0,
|