newtype-profile 1.0.65 → 1.0.66

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/index.js CHANGED
@@ -2253,7 +2253,7 @@ var require_picocolors = __commonJS((exports, module) => {
2253
2253
  var require_package = __commonJS((exports, module) => {
2254
2254
  module.exports = {
2255
2255
  name: "newtype-profile",
2256
- version: "1.0.65",
2256
+ version: "1.0.66",
2257
2257
  description: "AI Agent Collaboration System for Content Creation - Based on oh-my-opencode",
2258
2258
  main: "dist/index.js",
2259
2259
  types: "dist/index.d.ts",
package/dist/index.js CHANGED
@@ -50569,6 +50569,10 @@ function createCleanMcpEnvironment(customEnv = {}) {
50569
50569
  }
50570
50570
 
50571
50571
  // src/features/skill-mcp-manager/manager.ts
50572
+ var silentValidator = {
50573
+ getValidator: () => (input) => ({ valid: true, data: input, errorMessage: undefined })
50574
+ };
50575
+
50572
50576
  class SkillMcpManager {
50573
50577
  clients = new Map;
50574
50578
  pendingConnections = new Map;
@@ -50653,7 +50657,7 @@ class SkillMcpManager {
50653
50657
  env: mergedEnv,
50654
50658
  stderr: "ignore"
50655
50659
  });
50656
- const client2 = new Client({ name: `skill-mcp-${info.skillName}-${info.serverName}`, version: "1.0.0" }, { capabilities: {} });
50660
+ const client2 = new Client({ name: `skill-mcp-${info.skillName}-${info.serverName}`, version: "1.0.0" }, { capabilities: {}, jsonSchemaValidator: silentValidator });
50657
50661
  try {
50658
50662
  await client2.connect(transport);
50659
50663
  } catch (error45) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "newtype-profile",
3
- "version": "1.0.65",
3
+ "version": "1.0.66",
4
4
  "description": "AI Agent Collaboration System for Content Creation - Based on oh-my-opencode",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",