@neobiotechlabs/neobiotech-dev-agent 0.1.8 → 0.1.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neobiotechlabs/neobiotech-dev-agent",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Jira & Confluence MCP Server for Claude Code",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -13,7 +13,8 @@
13
13
  "start": "node dist/index.js",
14
14
  "test": "vitest run",
15
15
  "test:watch": "vitest",
16
- "prepublishOnly": "npm run build && node scripts/sync-plugin-version.mjs && chmod +x dist/index.js"
16
+ "prepublishOnly": "npm run build && node scripts/sync-plugin-version.mjs && chmod +x dist/index.js",
17
+ "version": "node scripts/sync-plugin-version.mjs && git add .claude-plugin/plugin.json .claude-plugin/marketplace.json"
17
18
  },
18
19
  "keywords": [
19
20
  "mcp",
@@ -14,7 +14,12 @@ description에 미러한다. 자동 초안 + 사용자 최종 리뷰 방식.
14
14
  - 사용자가 "DYN-8 intended use 문서 작성", "<ticket> <template> 문서 만들어" 등으로 요청
15
15
  - 또는 티켓 타입/요약에서 템플릿을 추론한 뒤 사용자에게 확인
16
16
 
17
- 지원 템플릿(현재): prd, spec, plan, tasks (dev), intended_use (mdr/PA).
17
+ 지원 템플릿(현재 16개):
18
+ - **dev** (4): `prd`, `spec`, `plan`, `tasks`
19
+ - **mdr/PA gate** (5): `intended_use`, `system_requirements_spec`, `risk_management_plan`, `mdr_classification_document`, `software_development_maintenance_plan`
20
+ - **mdr/EA gate** (7): `software_requirements_list`, `software_architecture_description`, `risk_table_fmea`, `soup_list`, `usability_evaluation_plan`, `clinical_evaluation_plan`, `list_of_hazard_related_use_scenarios`
21
+
22
+ 모두 freeform 모드 — 메타 변수 치환 + 빈 데이터 표·AI 지침은 consumer가 채움. (table-map 모드는 vendor 템플릿 구조상 불필요 — 모든 템플릿이 freeform 패턴.)
18
23
 
19
24
  ## 절차
20
25
 
@@ -30,7 +35,7 @@ description에 미러한다. 자동 초안 + 사용자 최종 리뷰 방식.
30
35
  ## 저장 경로 규칙
31
36
 
32
37
  - mdr: `docs/mdr/<gate>/<template>-<ticket>.md` (gate는 doc_render 렌더 메타에서)
33
- - 예: `docs/mdr/PA/intended-use-DYN-8.md`
38
+ - 예: `docs/mdr/PA/intended-use-DYN-8.md`, `docs/mdr/EA/software-requirements-list-DYN-12.md`
34
39
  - dev: `docs/dev/<template>-<ticket>.md` (gate 없음)
35
40
  - 예: `docs/dev/prd-ER-123.md`
36
41
 
@@ -1,22 +0,0 @@
1
- // src/utils/sync-version.ts
2
- var stringify = (obj) => JSON.stringify(obj, null, 2) + "\n";
3
- function injectPluginVersion(pluginJson, version) {
4
- const obj = JSON.parse(pluginJson);
5
- obj.version = version;
6
- return stringify(obj);
7
- }
8
- function injectMarketplaceVersion(marketplaceJson, version) {
9
- const obj = JSON.parse(marketplaceJson);
10
- if (!Array.isArray(obj.plugins) || obj.plugins.length === 0) {
11
- throw new Error("marketplace.json must have at least one plugin entry");
12
- }
13
- if (!obj.plugins[0].source || typeof obj.plugins[0].source !== "object") {
14
- obj.plugins[0].source = {};
15
- }
16
- obj.plugins[0].source.version = version;
17
- return stringify(obj);
18
- }
19
- export {
20
- injectMarketplaceVersion,
21
- injectPluginVersion
22
- };