@neobiotechlabs/neobiotech-dev-agent 0.1.29 → 0.1.30
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.
|
|
13
|
+
"version": "0.1.30"
|
|
14
14
|
},
|
|
15
15
|
"description": "의료기기 SW 규제 개발 자동화 (Jira·Confluence·Risk·CVSS·Xray·IEC 62304/62366·MDR·문서 렌더)",
|
|
16
16
|
"category": "medical-device",
|
package/dist/index.js
CHANGED
|
@@ -14854,7 +14854,7 @@ function tokenToStorageHtml(tok, nextPumlId, pumlRegistry) {
|
|
|
14854
14854
|
return `<p>${inlineToHtml(tok.text)}</p>`;
|
|
14855
14855
|
case "code": {
|
|
14856
14856
|
const lang = String(tok.lang ?? "").trim().toLowerCase();
|
|
14857
|
-
if (lang === "plantuml" || lang === "puml" || lang === "plantuml-markdown") {
|
|
14857
|
+
if (lang === "plantuml" || lang === "puml" || lang === "plantuml-markdown" || lang.startsWith("plantuml-")) {
|
|
14858
14858
|
const id = nextPumlId();
|
|
14859
14859
|
pumlRegistry.set(id, String(tok.text ?? ""));
|
|
14860
14860
|
return `<p data-puml-id="${id}"></p>`;
|
|
@@ -184364,7 +184364,7 @@ function lexAndExtractPlantUml(body) {
|
|
|
184364
184364
|
for (const tok of tokens) {
|
|
184365
184365
|
if (tok?.type !== "code") continue;
|
|
184366
184366
|
const lang = String(tok.lang ?? "").trim().toLowerCase();
|
|
184367
|
-
if (lang === "plantuml" || lang === "puml" || lang === "plantuml-markdown") {
|
|
184367
|
+
if (lang === "plantuml" || lang === "puml" || lang === "plantuml-markdown" || lang.startsWith("plantuml-")) {
|
|
184368
184368
|
const id = `PUML_${counter++}`;
|
|
184369
184369
|
pumlRegistry.set(id, String(tok.text ?? ""));
|
|
184370
184370
|
tok._pumlId = id;
|
|
@@ -185533,7 +185533,7 @@ var xrayClientSecret = process.env.XRAY_CLIENT_SECRET || "";
|
|
|
185533
185533
|
var xray = xrayClientId && xrayClientSecret ? new XrayClient(xrayClientId, xrayClientSecret, jiraUrl, jiraEmail, jiraToken) : null;
|
|
185534
185534
|
var server = new McpServer({
|
|
185535
185535
|
name: "jira-confluence",
|
|
185536
|
-
version: "0.1.
|
|
185536
|
+
version: "0.1.30"
|
|
185537
185537
|
});
|
|
185538
185538
|
var ctx = { server, jira, confluence, risk, xray };
|
|
185539
185539
|
registerJiraCrudTools(ctx);
|