@neobiotechlabs/neobiotech-dev-agent 0.1.21 → 0.1.22

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.
@@ -10,7 +10,7 @@
10
10
  "source": "npm",
11
11
  "package": "@neobiotechlabs/neobiotech-dev-agent",
12
12
  "registry": "https://registry.npmjs.org",
13
- "version": "0.1.21"
13
+ "version": "0.1.22"
14
14
  },
15
15
  "description": "의료기기 SW 규제 개발 자동화 (Jira·Confluence·Risk·CVSS·Xray·IEC 62304/62366·MDR·문서 렌더)",
16
16
  "category": "medical-device",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neobiotech-dev-agent",
3
- "version": "0.1.21",
3
+ "version": "0.1.22",
4
4
  "displayName": "NeoBiotech Dev Agent (MedDev)",
5
5
  "description": "의료기기 SW 규제 개발 자동화 — Jira·Confluence·Risk·CVSS·Xray·IEC 62304/62366·MDR·문서 렌더",
6
6
  "author": {
package/dist/index.js CHANGED
@@ -159685,12 +159685,13 @@ var RiskClient = class {
159685
159685
  error: "RISK_PLUGIN_AUTH_TOKEN not configured (x-trigger-authentication header would be empty)"
159686
159686
  };
159687
159687
  }
159688
- const endpoint = process.env.RISK_PLUGIN_ENDPOINT;
159688
+ const DEFAULT_RMP_ENDPOINT = "https://306e01a8-5530-427d-b93a-f91f4898ff16.hello.atlassian-dev.net/x1/p3_h8rdLbpp1-9mjDOXQiqJ4jL4";
159689
+ const endpoint = process.env.RISK_PLUGIN_ENDPOINT || DEFAULT_RMP_ENDPOINT;
159689
159690
  if (!endpoint) {
159690
159691
  return {
159691
159692
  ok: false,
159692
159693
  status: 0,
159693
- error: "RISK_PLUGIN_ENDPOINT not configured. \uD68C\uC0AC DYN \uC0AC\uC774\uD2B8\uC758 RMP webtrigger URL\uC744 environment \uBCC0\uC218\uB85C \uC785\uB825\uD558\uC138\uC694."
159694
+ error: "RISK_PLUGIN_ENDPOINT not configured. \uD658\uACBD\uBCC0\uC218 \uB610\uB294 \uCF54\uB4DC \uC815\uC801 \uAE30\uBCF8\uAC12\uC744 \uD655\uC778\uD558\uC138\uC694."
159694
159695
  };
159695
159696
  }
159696
159697
  const fullPayload = {
@@ -184968,7 +184969,7 @@ var xrayClientSecret = process.env.XRAY_CLIENT_SECRET || "";
184968
184969
  var xray = xrayClientId && xrayClientSecret ? new XrayClient(xrayClientId, xrayClientSecret, jiraUrl, jiraEmail, jiraToken) : null;
184969
184970
  var server = new McpServer({
184970
184971
  name: "jira-confluence",
184971
- version: "0.1.21"
184972
+ version: "0.1.22"
184972
184973
  });
184973
184974
  var ctx = { server, jira, confluence, risk, xray };
184974
184975
  registerJiraCrudTools(ctx);