@neobiotechlabs/neobiotech-dev-agent 0.1.37 → 0.1.40

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.37"
13
+ "version": "0.1.40"
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.37",
3
+ "version": "0.1.40",
4
4
  "displayName": "NeoBiotech Dev Agent (MedDev)",
5
5
  "description": "의료기기 SW 규제 개발 자동화 — Jira·Confluence·Risk·CVSS·Xray·IEC 62304/62366·MDR·문서 렌더",
6
6
  "author": {
@@ -47,12 +47,24 @@
47
47
  "sensitive": true,
48
48
  "required": false
49
49
  },
50
+ "RISK_PLUGIN_ENDPOINT": {
51
+ "type": "string",
52
+ "title": "Risk Plugin Endpoint",
53
+ "description": "Risk Management Plugin webtrigger endpoint (선택)",
54
+ "required": false
55
+ },
50
56
  "RISK_PLUGIN_AUTH_TOKEN": {
51
57
  "type": "string",
52
58
  "title": "Risk Plugin Auth Token",
53
59
  "description": "Risk Management Plugin 인증 토큰 (선택)",
54
60
  "sensitive": true,
55
61
  "required": false
62
+ },
63
+ "RISK_PLUGIN_AUTHOR": {
64
+ "type": "string",
65
+ "title": "Risk Plugin Author",
66
+ "description": "Risk Management Plugin author account ID (선택)",
67
+ "required": false
56
68
  }
57
69
  }
58
70
  }
package/.mcp.json CHANGED
@@ -1,14 +1,18 @@
1
1
  {
2
2
  "neobiotech-dev-agent": {
3
3
  "command": "node",
4
- "args": ["${CLAUDE_PLUGIN_ROOT}/dist/index.js"],
4
+ "args": [
5
+ "${CLAUDE_PLUGIN_ROOT}/dist/index.js"
6
+ ],
5
7
  "env": {
6
8
  "JIRA_URL": "${user_config.JIRA_URL}",
7
9
  "JIRA_EMAIL": "${user_config.JIRA_EMAIL}",
8
10
  "JIRA_API_TOKEN": "${user_config.JIRA_API_TOKEN}",
9
11
  "XRAY_CLIENT_ID": "${user_config.XRAY_CLIENT_ID}",
10
12
  "XRAY_CLIENT_SECRET": "${user_config.XRAY_CLIENT_SECRET}",
11
- "RISK_PLUGIN_AUTH_TOKEN": "${user_config.RISK_PLUGIN_AUTH_TOKEN}"
13
+ "RISK_PLUGIN_ENDPOINT": "${user_config.RISK_PLUGIN_ENDPOINT}",
14
+ "RISK_PLUGIN_AUTH_TOKEN": "${user_config.RISK_PLUGIN_AUTH_TOKEN}",
15
+ "RISK_PLUGIN_AUTHOR": "${user_config.RISK_PLUGIN_AUTHOR}"
12
16
  }
13
17
  }
14
18
  }