@neobiotechlabs/neobiotech-dev-agent 0.1.7
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/.claude-plugin/marketplace.json +22 -0
- package/.claude-plugin/plugin.json +58 -0
- package/.mcp.json +14 -0
- package/README.md +442 -0
- package/dist/__tests__/adf.test.d.ts +1 -0
- package/dist/__tests__/adf.test.js +68 -0
- package/dist/__tests__/adf.test.js.map +1 -0
- package/dist/__tests__/annex-ii-template.test.d.ts +1 -0
- package/dist/__tests__/annex-ii-template.test.js +39 -0
- package/dist/__tests__/annex-ii-template.test.js.map +1 -0
- package/dist/__tests__/doc-render.test.d.ts +1 -0
- package/dist/__tests__/doc-render.test.js +93 -0
- package/dist/__tests__/doc-render.test.js.map +1 -0
- package/dist/__tests__/help.test.d.ts +1 -0
- package/dist/__tests__/help.test.js +31 -0
- package/dist/__tests__/help.test.js.map +1 -0
- package/dist/__tests__/jira-fields.test.d.ts +1 -0
- package/dist/__tests__/jira-fields.test.js +81 -0
- package/dist/__tests__/jira-fields.test.js.map +1 -0
- package/dist/__tests__/plugin-manifest.test.d.ts +1 -0
- package/dist/__tests__/plugin-manifest.test.js +91 -0
- package/dist/__tests__/plugin-manifest.test.js.map +1 -0
- package/dist/__tests__/setup.test.d.ts +1 -0
- package/dist/__tests__/setup.test.js +7 -0
- package/dist/__tests__/setup.test.js.map +1 -0
- package/dist/__tests__/sync-version.test.d.ts +1 -0
- package/dist/__tests__/sync-version.test.js +37 -0
- package/dist/__tests__/sync-version.test.js.map +1 -0
- package/dist/clients/risk-client.d.ts +17 -0
- package/dist/clients/risk-client.js +54 -0
- package/dist/clients/risk-client.js.map +1 -0
- package/dist/clients/xray-client.d.ts +34 -0
- package/dist/clients/xray-client.js +127 -0
- package/dist/clients/xray-client.js.map +1 -0
- package/dist/config/project-config.d.ts +14 -0
- package/dist/config/project-config.js +45 -0
- package/dist/config/project-config.js.map +1 -0
- package/dist/confluence-client.d.ts +16 -0
- package/dist/confluence-client.js +97 -0
- package/dist/confluence-client.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +60 -0
- package/dist/index.js.map +1 -0
- package/dist/jira-client.d.ts +35 -0
- package/dist/jira-client.js +119 -0
- package/dist/jira-client.js.map +1 -0
- package/dist/tools/annex-ii-template.d.ts +30 -0
- package/dist/tools/annex-ii-template.js +129 -0
- package/dist/tools/annex-ii-template.js.map +1 -0
- package/dist/tools/confluence.d.ts +2 -0
- package/dist/tools/confluence.js +54 -0
- package/dist/tools/confluence.js.map +1 -0
- package/dist/tools/cvss.d.ts +2 -0
- package/dist/tools/cvss.js +59 -0
- package/dist/tools/cvss.js.map +1 -0
- package/dist/tools/doc-render.d.ts +2 -0
- package/dist/tools/doc-render.js +96 -0
- package/dist/tools/doc-render.js.map +1 -0
- package/dist/tools/doc-validation.d.ts +2 -0
- package/dist/tools/doc-validation.js +221 -0
- package/dist/tools/doc-validation.js.map +1 -0
- package/dist/tools/help-data.d.ts +7 -0
- package/dist/tools/help-data.js +144 -0
- package/dist/tools/help-data.js.map +1 -0
- package/dist/tools/help.d.ts +2 -0
- package/dist/tools/help.js +39 -0
- package/dist/tools/help.js.map +1 -0
- package/dist/tools/iec.d.ts +2 -0
- package/dist/tools/iec.js +203 -0
- package/dist/tools/iec.js.map +1 -0
- package/dist/tools/init.d.ts +2 -0
- package/dist/tools/init.js +38 -0
- package/dist/tools/init.js.map +1 -0
- package/dist/tools/jira-crud.d.ts +2 -0
- package/dist/tools/jira-crud.js +142 -0
- package/dist/tools/jira-crud.js.map +1 -0
- package/dist/tools/risk.d.ts +2 -0
- package/dist/tools/risk.js +172 -0
- package/dist/tools/risk.js.map +1 -0
- package/dist/tools/traceability.d.ts +2 -0
- package/dist/tools/traceability.js +85 -0
- package/dist/tools/traceability.js.map +1 -0
- package/dist/tools/types.d.ts +13 -0
- package/dist/tools/types.js +2 -0
- package/dist/tools/types.js.map +1 -0
- package/dist/tools/usability.d.ts +2 -0
- package/dist/tools/usability.js +149 -0
- package/dist/tools/usability.js.map +1 -0
- package/dist/tools/xray.d.ts +2 -0
- package/dist/tools/xray.js +35 -0
- package/dist/tools/xray.js.map +1 -0
- package/dist/utils/adf.d.ts +27 -0
- package/dist/utils/adf.js +104 -0
- package/dist/utils/adf.js.map +1 -0
- package/dist/utils/cvss.d.ts +15 -0
- package/dist/utils/cvss.js +86 -0
- package/dist/utils/cvss.js.map +1 -0
- package/dist/utils/doc-render.d.ts +28 -0
- package/dist/utils/doc-render.js +50 -0
- package/dist/utils/doc-render.js.map +1 -0
- package/dist/utils/jira-fields.d.ts +38 -0
- package/dist/utils/jira-fields.js +53 -0
- package/dist/utils/jira-fields.js.map +1 -0
- package/dist/utils/sync-version.d.ts +2 -0
- package/dist/utils/sync-version.js +20 -0
- package/dist/utils/sync-version.js.map +1 -0
- package/package.json +49 -0
- package/skills/doc-render/SKILL.md +79 -0
- package/vendor/dev-docs-templates/templates/dev_docs/plan_template.md +104 -0
- package/vendor/dev-docs-templates/templates/dev_docs/prd_template.md +110 -0
- package/vendor/dev-docs-templates/templates/dev_docs/spec_template.md +81 -0
- package/vendor/dev-docs-templates/templates/dev_docs/tasks_template.md +122 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/checklist-clinical-evaluation.md +81 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/checklist-gspr-mdr.md +403 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/clinical-evaluation-report.md +492 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/instructions-for-use.md +132 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/literature-evaluation-table.md +15 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/mdr-declaration-of-conformity.md +75 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/post-market-clinical-follow-up-plan.md +162 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/post-market-surveillance-plan.md +175 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/risk-management-cybersecurity-checklist.md +67 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/risk-management-report.md +111 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/usability-evaluation-report.md +70 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/EA/clinical-evaluation-plan.md +154 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/EA/list-of-hazard-related-use-scenarios.md +34 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/EA/risk-table-fmea.md +155 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/EA/software-architecture-description.md +307 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/EA/software-requirements-list.md +156 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/EA/soup-list.md +82 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/EA/usability-evaluation-plan.md +103 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/global/bug-fixes-documentation-list.md +35 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/global/change-evaluation-list.md +100 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/global/list-of-known-anomalies.md +29 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/algorithm-validation-report.md +170 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/checklist-software-release.md +52 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/checklist-software-requirements-review.md +50 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/software-architecture-checklist.md +41 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/software-detailed-design.md +321 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/software-system-test-plan.md +155 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/usability-evaluation-protocol.md +63 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/PA/intended-use.md +116 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/PA/mdr-classification-document.md +114 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/PA/risk-management-plan.md +198 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/PA/software-development-maintenance-plan.md +225 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/PA/system-requirements-spec.md +182 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/information_security/information-security-controls.md +966 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/information_security/information-security-policy-and-scope.md +99 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/quality-manual-policy-objectives.md +187 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-capa.md +112 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-change-management.md +128 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-clinical-evaluation.md +102 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-feedback-management.md +140 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-integrated-software-development.md +361 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-post-market-surveillance.md +159 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-software-problem-resolution.md +99 -0
package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-post-market-surveillance.md
ADDED
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
# SOP Post-Market Surveillance
|
|
2
|
+
|
|
3
|
+
## Summary
|
|
4
|
+
|
|
5
|
+
This SOP describes how Post-Market Surveillance is performed for products. It ensures that new information
|
|
6
|
+
about safety and performance is proactively collected and can be used as input for the risk management,
|
|
7
|
+
clinical evaluation and software development of our products.
|
|
8
|
+
|
|
9
|
+
| | |
|
|
10
|
+
|--------------------------------|----------------------------------------------------------|
|
|
11
|
+
| **Process Owner** | *\<enter role of process owner\>* |
|
|
12
|
+
| **Key Performance Indicators** | *\<enter KPIs to be tracked for the Management Review\>* |
|
|
13
|
+
|
|
14
|
+
**Regulatory References:**
|
|
15
|
+
|
|
16
|
+
| | |
|
|
17
|
+
|------------------------|--------------------------------------------------------------------|
|
|
18
|
+
| EU Regulation 2017/745 | Art. 83 - 86 (Post-market surveillance), Art. 88 (Trend reporting) |
|
|
19
|
+
|
|
20
|
+
## General Considerations
|
|
21
|
+
|
|
22
|
+
This process is followed for each product separately, meaning that for each product, a Post-Market
|
|
23
|
+
Surveillance Plan and Post-Market Surveillance Report (class I) or Periodic Safety Update Report (class IIa
|
|
24
|
+
and higher) are created and continuously updated.
|
|
25
|
+
|
|
26
|
+
> Note: For class I devices, you could specify a longer update interval, e.g. once every two or three years.
|
|
27
|
+
>
|
|
28
|
+
> Note: Feel free to assign the responsibility to any other role. It typically makes sense to choose a role
|
|
29
|
+
> that is both close to product development as well as clinical issues.
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
## Process Steps
|
|
33
|
+
|
|
34
|
+
### 1. Create Post-Market Surveillance Plan
|
|
35
|
+
|
|
36
|
+
Based on the clinical evaluation and technical documentation, a new Post-Market Surveillance Plan is created
|
|
37
|
+
for a product.
|
|
38
|
+
|
|
39
|
+
For medical devices of class IIa, post-market surveillance cycles may extend to no longer than two years. For
|
|
40
|
+
medical devices of classes IIb and III, annual surveillance cycles apply. For devices of class IIa and higher,
|
|
41
|
+
each surveillance cycle is concluded with the compilation of a periodic safety update report (see below). For
|
|
42
|
+
class I devices, longer surveillance cycles may be defined and a Post-Market Surveillance Report is
|
|
43
|
+
compiled. At least, this report should be updated when new relevant data has been identified.
|
|
44
|
+
|
|
45
|
+
The plan should be created based on the Post-Market Surveillance Plan Template, following MDR Annex III,
|
|
46
|
+
Section 1.
|
|
47
|
+
|
|
48
|
+
| | |
|
|
49
|
+
|--------------|---------------------------------------------------------------------|
|
|
50
|
+
| Participants | QMO,<br>Product Manager |
|
|
51
|
+
| Input | Device Description<br>Clinical Evaluation<br>Risk Management Report |
|
|
52
|
+
| Output | Post-Market Surveillance Plan |
|
|
53
|
+
|
|
54
|
+
### 2. Collect Information and Initiate Actions
|
|
55
|
+
|
|
56
|
+
The Post-Market Surveillance is carried out as described in the Post-Market Surveillance Plan in the defined interval.
|
|
57
|
+
|
|
58
|
+
The responsible employees continuously collect information from all the categories described below and enter them into the report template.
|
|
59
|
+
At minimum, the following information categories have to be taken into consideration:
|
|
60
|
+
|
|
61
|
+
* **Clinical evaluations and PMCF activities:** Input from Post-Market Clinical Follow-Up activities (see
|
|
62
|
+
clinical evaluation process and template for the PMCF plan).
|
|
63
|
+
* **New research and development in the market:** Information regarding similar medical devices and
|
|
64
|
+
technologies on the market.
|
|
65
|
+
* **Input from recalls and reportable events:** Recalls, incidents and unintended side effects reported by
|
|
66
|
+
competitors, similar products and procedures or reported for other devices of our company (e.g. check BfArM
|
|
67
|
+
/ FDA databases as further specified in the post-market surveillance plan; also see vigilance process).
|
|
68
|
+
* **New or updated norms and standards, directives, regulation and other laws:** Verification if the list of
|
|
69
|
+
applicable regulations is up to date.
|
|
70
|
+
* **SOUP:** Verification if SOUP list is up to date.
|
|
71
|
+
* **Complaints directly reported by customers:** Information gathered through customer feedback and
|
|
72
|
+
complaints (see process for feedback management).
|
|
73
|
+
* **Other feedback** collected or reported by sales or marketing staff, distributors, or other stakeholders.
|
|
74
|
+
|
|
75
|
+
For each part of information, it is assessed whether it is applicable to the company's product. Additionally,
|
|
76
|
+
the severity of impact on device safety and performance is rated on the following scale:
|
|
77
|
+
|
|
78
|
+
* **Severe:** Serious injury or death
|
|
79
|
+
* **Moderate:** Non-serious injury
|
|
80
|
+
* **Marginal:** Everything else, less than moderate
|
|
81
|
+
|
|
82
|
+
Depending on the applicability, severity and statistical relevance of the new information, appropriate actions are initiated. The QMO and the Person Responsible for Regulatory Compliance (PRRC) must be consulted in this step, other roles (e.g. medical staff) should be involved if needed.
|
|
83
|
+
|
|
84
|
+
Actions may entail:
|
|
85
|
+
|
|
86
|
+
* **Updating the product risk management file**, for example, by adding new risks according to our risk
|
|
87
|
+
management process, updating occurrence / severity assumptions made for risks we already documented or
|
|
88
|
+
updating risk mitigation measures in place).
|
|
89
|
+
* **Initiating a CAPA**, for example, to update processes, training measures or resource allocation. If a CAPA
|
|
90
|
+
is identified based on Post-Market Surceillance information, the competent authority and/or Notified Body
|
|
91
|
+
are informed.
|
|
92
|
+
* **Initiating the vigilance process** reporting serious incidents and FSCA to competent authorities.
|
|
93
|
+
* **Design changes** to the product following the company’s change management and software development
|
|
94
|
+
process.
|
|
95
|
+
|
|
96
|
+
| | |
|
|
97
|
+
|--------------|-----------------------------------------------------------------------|
|
|
98
|
+
| Participants | QMO,<br>Product Manager |
|
|
99
|
+
| Input | Post-Market Surveillance Plan<br>Post-Market Surveillance Information |
|
|
100
|
+
| Output | Evaluated Information |
|
|
101
|
+
|
|
102
|
+
### 3. Conduct Trend Analysis
|
|
103
|
+
|
|
104
|
+
All collected post-market surveillance information must be reviewed against the device's risk management file. Any statistically significant increase in the frequency or severity of non-serious incidents and expected undesirable side effects must reported to the competent authority following the SOP Vigilance, if:
|
|
105
|
+
|
|
106
|
+
* The non-serious incident or undesirable side effect could have a significantly negative impact on the benefit-risk-profile of the device (see Annex I, Para. 1 + 5 MDR); AND
|
|
107
|
+
* The non-serious incident or undesirable side effect led or could have lead to unacceptable risks for patients, users or others when weighed against the intended benefits.
|
|
108
|
+
|
|
109
|
+
The significant increase is established in comparison to the assumptions for frequency or severity of such incidents during the product lifetime, which are specified in the device's risk management file. Records of the conducted trend analysis shall be stored with other TechDoc records of the device.
|
|
110
|
+
|
|
111
|
+
| | |
|
|
112
|
+
|--------------|------------------------------------------------------------------------------------------------------------|
|
|
113
|
+
| Participants | QMO |
|
|
114
|
+
| Input | Collected information |
|
|
115
|
+
| Output | Conducted trend analysis<br>Reported statistically significant trend to competent authority (if necessary) |
|
|
116
|
+
|
|
117
|
+
### 4. Compile Post-Market Surveillance Report (PMSR)
|
|
118
|
+
|
|
119
|
+
For class I devices, the Product Manager finalizes the Post-Market Surveillance Report (PMSR), which is at
|
|
120
|
+
least reviewed by the Person Responsible for Regulatory Compliance (PRRC). The report should contain at least
|
|
121
|
+
the following information:
|
|
122
|
+
|
|
123
|
+
* main findings and analyses of post-market surveillance activities throughout the surveillance interval as
|
|
124
|
+
set out in the Post-Market Surveillance Plan
|
|
125
|
+
* a rationale and description of any preventive and corrective actions taken
|
|
126
|
+
|
|
127
|
+
| | |
|
|
128
|
+
|--------------|-------------------------------------|
|
|
129
|
+
| Participants | QMO,<br>Product Manager |
|
|
130
|
+
| Input | Collected and evaluated information |
|
|
131
|
+
| Output | Post-Market Surveillance Report |
|
|
132
|
+
|
|
133
|
+
### 5. Compile Periodic Safety Update Report (PSUR)
|
|
134
|
+
|
|
135
|
+
For class IIa devices and higher, the Product Manager finalizes the Periodic Safety Update Report (PSUR),
|
|
136
|
+
which is at least reviewed by the Person Responsible for Regulatory Compliance (PRRC). The report should
|
|
137
|
+
contain at least the following information:
|
|
138
|
+
|
|
139
|
+
* main findings of post-market surveillance activities throughout the surveillance interval as set out in the
|
|
140
|
+
Post-Market Surveillance Plan
|
|
141
|
+
* a rationale and description of any preventive and corrective actions taken
|
|
142
|
+
* conclusion regarding implications for the risk management and clinical evaluation of the product, in
|
|
143
|
+
particular, the overall residual risk and benefit-risk determination
|
|
144
|
+
* findings from the Post-Market Clinical Follow-Up
|
|
145
|
+
* the sales volume of the device, e.g. amount of users and, where practicable, the usage frequency of the
|
|
146
|
+
device.
|
|
147
|
+
|
|
148
|
+
| | |
|
|
149
|
+
|--------------|-------------------------------------|
|
|
150
|
+
| Participants | QMO,<br>Product Manager |
|
|
151
|
+
| Input | Collected and evaluated information |
|
|
152
|
+
| Output | Periodic Safety Update Report |
|
|
153
|
+
|
|
154
|
+
---
|
|
155
|
+
|
|
156
|
+
Template Copyright [openregulatory.com](https://openregulatory.com). See [template
|
|
157
|
+
license](https://openregulatory.com/template-license).
|
|
158
|
+
|
|
159
|
+
Please don't remove this notice even if you've modified contents of this template.
|
package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-software-problem-resolution.md
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
# SOP Software Problem Resolution
|
|
2
|
+
|
|
3
|
+
| Classes | IEC 62304:2006 Section | Document Section |
|
|
4
|
+
|---------|------------------------|------------------|
|
|
5
|
+
| B, C | 5.6.8 | (All) |
|
|
6
|
+
| A, B, C | 6.2.1.3 | 1 |
|
|
7
|
+
| A, B, C | 6.2.2 | (All) |
|
|
8
|
+
| A, B, C | 9.1 | 1 |
|
|
9
|
+
| A, B, C | 9.2 | 2 |
|
|
10
|
+
| A, B, C | 9.3 | 3 |
|
|
11
|
+
| A, B, C | 9.5 | 1 |
|
|
12
|
+
| A, B, C | 9.6 | 2 |
|
|
13
|
+
| A, B, C | 9.7 | 3 |
|
|
14
|
+
|
|
15
|
+
## Summary
|
|
16
|
+
|
|
17
|
+
This SOP describes how problems concerning our software product(s) are processed, evaluated and fixed.
|
|
18
|
+
|
|
19
|
+
| | |
|
|
20
|
+
|--------------------------------|----------------------------------------------------------|
|
|
21
|
+
| **Process Owner** | *\<enter role of process owner\>* |
|
|
22
|
+
| **Key Performance Indicators** | *\<enter KPIs to be tracked for the Management Review\>* |
|
|
23
|
+
|
|
24
|
+
## Process Steps
|
|
25
|
+
|
|
26
|
+
### 1. New Problem Evaluation
|
|
27
|
+
|
|
28
|
+
New problems are entered as tickets into *\<your ticketing system\>*.
|
|
29
|
+
|
|
30
|
+
Reported problems can originate from customers, users or company employees. Examples include customer feedback
|
|
31
|
+
and bug reports.
|
|
32
|
+
|
|
33
|
+
For each problem report, the following must be entered:
|
|
34
|
+
|
|
35
|
+
* Affected medical device and version
|
|
36
|
+
* Severity classification (see below)
|
|
37
|
+
* Problem description incl. instructions to reproduce
|
|
38
|
+
|
|
39
|
+
We classify the severity of problems in the following categories:
|
|
40
|
+
|
|
41
|
+
| Severity Classification | Description |
|
|
42
|
+
|-------------------------|------------------------------------------------------------------|
|
|
43
|
+
| High | Causes new or changed risks to patients which are unacceptable. |
|
|
44
|
+
| Medium | May cause new or changed risks to patients which are acceptable. |
|
|
45
|
+
| Low | All other problems. |
|
|
46
|
+
|
|
47
|
+
For all problems classified as "Medium" or higher the person responsible for regulatory compliance (PRRC) must
|
|
48
|
+
be informed who subsequently assesses it according to the SOP Vigilance.
|
|
49
|
+
|
|
50
|
+
| Participants |
|
|
51
|
+
|----------------------------------------------|
|
|
52
|
+
| Head of product development |
|
|
53
|
+
| Person responsible for regulatory compliance |
|
|
54
|
+
|
|
55
|
+
| Input | Output |
|
|
56
|
+
|-------------|---------------------------------------------------------|
|
|
57
|
+
| New problem | Problem report as *\<ticket in your ticketing system\>* |
|
|
58
|
+
|
|
59
|
+
### 2. Root Cause Analysis and Procedure
|
|
60
|
+
|
|
61
|
+
The root cause of the problem is determined (if possible) and a decision is made whether to fix it or not.
|
|
62
|
+
|
|
63
|
+
We also analyze whether similar problems have occurred in the past and any trends can be discerned. If this is
|
|
64
|
+
the case, it is noted in the problem report.
|
|
65
|
+
|
|
66
|
+
| Participants |
|
|
67
|
+
|------------------------------|
|
|
68
|
+
| Head of software development |
|
|
69
|
+
| Software developer |
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
| Input | Output |
|
|
73
|
+
|----------------|-------------------------------------------------|
|
|
74
|
+
| Problem report | Problem report updated with cause and procedure |
|
|
75
|
+
|
|
76
|
+
### 3. Implementation and Verification
|
|
77
|
+
|
|
78
|
+
The bug fix is implemented. If the fix includes a change to an existing product, it is handled according to
|
|
79
|
+
SOP Change Management.
|
|
80
|
+
|
|
81
|
+
After the bug fix has been implemented, the problem report is reviewed whether it has been successfully fixed
|
|
82
|
+
and can be closed. Closing the problem report is equivalent to successful verification.
|
|
83
|
+
|
|
84
|
+
| Participants |
|
|
85
|
+
|----------------------------------------------|
|
|
86
|
+
| Head of product development |
|
|
87
|
+
| Person responsible for regulatory compliance |
|
|
88
|
+
|
|
89
|
+
| Input | Output |
|
|
90
|
+
|--------------------|--------------------------------|
|
|
91
|
+
| Problem report | Resolved/closed problem report |
|
|
92
|
+
| Implemented change | |
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
96
|
+
Template Copyright [openregulatory.com](https://openregulatory.com). See [template
|
|
97
|
+
license](https://openregulatory.com/template-license).
|
|
98
|
+
|
|
99
|
+
Please don't remove this notice even if you've modified contents of this template.
|