@ascenda-one/agent-mcp 0.1.13 → 0.1.14
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/cli.js +3 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -1646,6 +1646,7 @@ var require_liveBus = __commonJS({
|
|
|
1646
1646
|
var path = __importStar(__require("path"));
|
|
1647
1647
|
var WRITE_TIMEOUT_MS = 50;
|
|
1648
1648
|
var APP_BUNDLE_ID = "one.ascenda.ascendaMissionControl";
|
|
1649
|
+
var SAVER_HOST_BUNDLE_ID = "com.apple.ScreenSaver.Engine.legacyScreenSaver";
|
|
1649
1650
|
function liveBusSocketCandidates() {
|
|
1650
1651
|
const override = process.env.ASCENDA_LIVE_BUS_SOCKET;
|
|
1651
1652
|
if (override)
|
|
@@ -1653,7 +1654,8 @@ var require_liveBus = __commonJS({
|
|
|
1653
1654
|
const home = os.homedir();
|
|
1654
1655
|
return [
|
|
1655
1656
|
path.join(home, ".ascenda", "live.sock"),
|
|
1656
|
-
path.join(home, "Library", "Containers", APP_BUNDLE_ID, "Data", ".ascenda", "live.sock")
|
|
1657
|
+
path.join(home, "Library", "Containers", APP_BUNDLE_ID, "Data", ".ascenda", "live.sock"),
|
|
1658
|
+
path.join(home, "Library", "Containers", SAVER_HOST_BUNDLE_ID, "Data", "l.sock")
|
|
1657
1659
|
];
|
|
1658
1660
|
}
|
|
1659
1661
|
function liveBusSocketPath() {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"publishConfig": { "access": "public" },
|
|
3
3
|
"name": "@ascenda-one/agent-mcp",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.14",
|
|
5
5
|
"description": "MCP server exposing ascenda_emit_work_signal — the one submission interface for agent-observed (semantic) work-friction signals.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|