@engineer-ai/sdk 1.6.1 → 1.6.2

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.
@@ -35,6 +35,7 @@ export type Project = {
35
35
  initialized?: number;
36
36
  };
37
37
  sandboxes: Array<string>;
38
+ subrepos?: Array<string>;
38
39
  };
39
40
  export type EventProjectUpdated = {
40
41
  type: "project.updated";
@@ -1596,9 +1597,13 @@ export type McpLocalConfig = {
1596
1597
  */
1597
1598
  timeout?: number;
1598
1599
  /**
1599
- * Agent name patterns that can access this MCP server. Supports glob wildcards like 'goal_*'. If not set, all agents can access.
1600
+ * Agent name patterns that can access this MCP server. Supports glob wildcards like 'goal_*'. Prefix with '!' for blacklist (e.g. '!goal' excludes goal). If not set, all agents can access.
1600
1601
  */
1601
1602
  agent?: Array<string>;
1603
+ /**
1604
+ * Description of the MCP server's capabilities, injected into leader prompt for task assignment.
1605
+ */
1606
+ description?: string;
1602
1607
  };
1603
1608
  export type McpOAuthConfig = {
1604
1609
  /**
@@ -1642,9 +1647,13 @@ export type McpRemoteConfig = {
1642
1647
  */
1643
1648
  timeout?: number;
1644
1649
  /**
1645
- * Agent name patterns that can access this MCP server. Supports glob wildcards like 'goal_*'. If not set, all agents can access.
1650
+ * Agent name patterns that can access this MCP server. Supports glob wildcards like 'goal_*'. Prefix with '!' for blacklist (e.g. '!goal' excludes goal). If not set, all agents can access.
1646
1651
  */
1647
1652
  agent?: Array<string>;
1653
+ /**
1654
+ * Description of the MCP server's capabilities, injected into leader prompt for task assignment.
1655
+ */
1656
+ description?: string;
1648
1657
  };
1649
1658
  /**
1650
1659
  * @deprecated Always uses stretch layout.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@engineer-ai/sdk",
4
- "version": "1.6.1",
4
+ "version": "1.6.2",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "scripts": {