You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Status bar table now shows actual sm: prefix format
- MCP section updated from 3 to 7 tools with descriptions
- Added CLI commands reference table (--diff, --health, --report, etc.)
- Quick Start mentions v2 features enabled by default
- Requirements table adds zero-dependency highlight
- Troubleshooting shows actual sm: no context message
- AI Tool Integration MCP section lists all 7 tools
Copy file name to clipboardExpand all lines: vscode-extension/README.md
+28-9Lines changed: 28 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,10 +58,10 @@ A persistent status bar item shows your context health at a glance — no need t
58
58
59
59
| Grade | Status bar | Meaning |
60
60
|:---:|---|---|
61
-
|**A**|`✔ A • 2h ago`| Fresh and complete — AI has full codebase context |
62
-
|**B**|`ℹ B • 6h ago`| Good — minor gaps, regenerate when convenient |
63
-
|**C**|`⚠ C • 1d ago`| Stale — missing recent changes, regenerate soon |
64
-
|**D**|`✖ D • 3d ago`| Very stale or incomplete — regenerate now |
61
+
|**A**|`sm: ✔ A 2h ago`| Fresh and complete — AI has full codebase context |
62
+
|**B**|`sm: ℹ B 6h ago`| Good — minor gaps, regenerate when convenient |
63
+
|**C**|`sm: ⚠ C 1d ago`| Stale — missing recent changes, regenerate soon |
64
+
|**D**|`sm: ✖ D 3d ago`| Very stale or incomplete — regenerate now |
65
65
66
66
Click the status bar item to trigger an **instant regeneration**.
67
67
@@ -75,10 +75,14 @@ Run `SigMap: Regenerate Context` from the Command Palette and watch the terminal
75
75
SigMap scans every signature before writing. If an AWS key, GitHub token, DB connection string, or Stripe key is detected in a function signature, it's **automatically redacted** — never leaks into your context file.
76
76
77
77
### 🗺 MCP server support
78
-
SigMap ships with a built-in **Model Context Protocol (MCP) server** for Claude and Cursor, exposing three tools:
78
+
SigMap ships with a built-in **Model Context Protocol (MCP) server** for Claude and Cursor, exposing **7 tools**:
79
79
-`read_context` — full or per-module signature map
80
80
-`search_signatures` — keyword search across all signatures
81
81
-`get_map` — import graph, class hierarchy, or route table
82
+
-`create_checkpoint` — session checkpoint with git state and context snapshot
83
+
-`get_routing` — model routing hints (fast/balanced/powerful tiers)
84
+
-`explain_file` — signatures, imports, and callers for a specific file
85
+
-`list_modules` — all top-level modules sorted by token count
82
86
83
87
---
84
88
@@ -131,7 +135,7 @@ Open your project in VS Code, then open the Command Palette (`⇧⌘P` / `Ctrl+S
131
135
SigMap: Regenerate Context
132
136
```
133
137
134
-
This creates `.github/copilot-instructions.md` in your workspace root.
138
+
This creates `.github/copilot-instructions.md` in your workspace root — including v2 sections like TODO/FIXME extraction, recent git changes, and coverage gaps (all enabled by default).
0 commit comments