Skip to content

Commit 7dd252f

Browse files
Merge branch 'main' into nicholai/revise-vision-and-agents-policy
2 parents 154b3df + f289b48 commit 7dd252f

46 files changed

Lines changed: 793 additions & 198 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ All notable changes to Signet are documented here.
66

77
Surface summary of the most recent release dates. See the release ledger below for exact version-by-version history.
88

9+
### 2026-06-09
10+
- Bug fixes: restore signet-mcp stdio JSON-RPC server (#826).
11+
912
### 2026-06-04
1013
- Bug fixes: recover reset summaries from prompt transcripts; embed memory writes.
1114

@@ -27,12 +30,24 @@ Surface summary of the most recent release dates. See the release ledger below f
2730
### 2026-05-30
2831
- Bug fixes: show macos window on launch.
2932

30-
### 2026-05-28
31-
- Features: gate prompt injection on entity context.
32-
- Bug fixes: queue aggregate recall extraction; harden prompt entity context filtering; restrict prompt entity injection types; route prompt context through attributes.
33-
3433
## Release Ledger
3534

35+
## [0.138.23] - 2026-06-09
36+
37+
Release summary: internal maintenance release with no conventional commit entries captured.
38+
Tag range: `v0.138.22..v0.138.23`.
39+
40+
No notable changes were captured from conventional commit subjects for this release.
41+
42+
## [0.138.22] - 2026-06-09
43+
44+
Release summary: 1 bug fix.
45+
Tag range: `v0.138.21..v0.138.22`.
46+
47+
### Bug Fixes
48+
49+
- **wrapper**: restore signet-mcp stdio JSON-RPC server (#826) (#827)
50+
3651
## [0.138.21] - 2026-06-04
3752

3853
Release summary: 1 bug fix.

bun.lock

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/signetai-darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "signetai-darwin-arm64",
3-
"version": "0.138.21",
3+
"version": "0.138.23",
44
"description": "Signet native binary for macOS arm64",
55
"os": [
66
"darwin"

dist/signetai-darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "signetai-darwin-x64",
3-
"version": "0.138.21",
3+
"version": "0.138.23",
44
"description": "Signet native binary for macOS x64",
55
"os": [
66
"darwin"

dist/signetai-linux-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "signetai-linux-arm64",
3-
"version": "0.138.21",
3+
"version": "0.138.23",
44
"description": "Signet native binary for Linux arm64",
55
"os": [
66
"linux"

dist/signetai-linux-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "signetai-linux-x64",
3-
"version": "0.138.21",
3+
"version": "0.138.23",
44
"description": "Signet native binary for Linux x64",
55
"os": [
66
"linux"

dist/signetai-win32-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "signetai-win32-x64",
3-
"version": "0.138.21",
3+
"version": "0.138.23",
44
"description": "Signet native binary for Windows x64",
55
"os": [
66
"win32"

dist/signetai/bin/launch.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function resolveBinaryPath() {
3333
return null;
3434
}
3535

36-
export function launchSignet(options = {}) {
36+
export function launchSignet() {
3737
const resolvedBinaryPath = resolveBinaryPath();
3838
if (!resolvedBinaryPath) {
3939
console.error("Signet native binary is missing.");
@@ -43,8 +43,7 @@ export function launchSignet(options = {}) {
4343
}
4444

4545
const args = process.argv.slice(2);
46-
const forwardedArgs = options.forceMcp === true && args[0] !== "mcp" ? ["mcp", ...args] : args;
47-
const child = spawn(resolvedBinaryPath, forwardedArgs, {
46+
const child = spawn(resolvedBinaryPath, args, {
4847
stdio: "inherit",
4948
env: process.env,
5049
windowsHide: true,

dist/signetai/bin/signet-mcp.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)