@1aboveio/skills 0.20.2 → 0.20.4

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.
Files changed (85) hide show
  1. package/README.md +14 -6
  2. package/package.json +1 -1
  3. package/runtime/skills/distribution/generated/recipes.json +220 -25
  4. package/runtime/skills/distribution/scripts/bundles.mjs +167 -48
  5. package/runtime/skills/engineering/engineering-runtime/scripts/workflow-coherence.mjs +4 -0
  6. package/runtime/skills/engineering/engineering-runtime/scripts/workflow-policy.mjs +1 -1
  7. package/skills/compliance/compliance-audit/LICENSE +3 -0
  8. package/skills/compliance/compliance-audit/SKILL.md +466 -0
  9. package/skills/compliance/compliance-audit/references/findings-schema.md +290 -0
  10. package/skills/compliance/compliance-audit/references/vars-checklist.md +1068 -0
  11. package/skills/compliance/compliance-audit/references/vars-findings-schema.md +395 -0
  12. package/skills/compliance/compliance-audit/scripts/reconcile_tracker.py +454 -0
  13. package/skills/compliance/compliance-audit/scripts/test_validate_tracker.py +90 -0
  14. package/skills/compliance/compliance-audit/scripts/validate_tracker.py +752 -0
  15. package/skills/compliance/doc-authenticity/LICENSE +3 -0
  16. package/skills/compliance/doc-authenticity/SKILL.md +158 -0
  17. package/skills/compliance/doc-authenticity/references/agreement.md +66 -0
  18. package/skills/compliance/doc-authenticity/references/bank-statement.md +150 -0
  19. package/skills/compliance/doc-authenticity/references/forensic-signals.md +157 -0
  20. package/skills/compliance/doc-authenticity/references/image-signals.md +114 -0
  21. package/skills/compliance/doc-authenticity/references/invoice.md +66 -0
  22. package/skills/compliance/doc-authenticity/references/issuer-profiles.md +86 -0
  23. package/skills/compliance/doc-authenticity/references/verdict-and-report.md +95 -0
  24. package/skills/compliance/doc-authenticity/references/verdict.schema.json +81 -0
  25. package/skills/compliance/doc-authenticity/scripts/image_forensics.py +294 -0
  26. package/skills/compliance/doc-authenticity/scripts/pdf_forensics.py +401 -0
  27. package/skills/compliance/doc-authenticity/scripts/validate_codes.py +224 -0
  28. package/skills/compliance/doc-authenticity/scripts/validate_verdict.py +308 -0
  29. package/skills/compliance/report-writing/LICENSE +3 -0
  30. package/skills/compliance/report-writing/SKILL.md +206 -0
  31. package/skills/compliance/report-writing/references/audit-report-template.md +121 -0
  32. package/skills/compliance/report-writing/references/external-assessment-template.md +167 -0
  33. package/skills/compliance/report-writing/references/management-report-template.md +145 -0
  34. package/skills/compliance/report-writing/references/vars-report-template.md +224 -0
  35. package/skills/document-utils/doc-to-md/LICENSE +3 -0
  36. package/skills/document-utils/doc-to-md/SKILL.md +77 -0
  37. package/skills/document-utils/doc-to-md/scripts/convert.py +157 -0
  38. package/skills/document-utils/reg-parser/LICENSE +3 -0
  39. package/skills/document-utils/reg-parser/SKILL.md +201 -0
  40. package/skills/document-utils/reg-parser/references/checklist-schema.md +223 -0
  41. package/skills/document-utils/reg-parser/references/checklists/hk-amlo-checklist.json +1306 -0
  42. package/skills/document-utils/reg-parser/references/checklists/hk-amlo-checklist.md +469 -0
  43. package/skills/document-utils/reg-parser/references/checklists/hk-fi-corporate-onboarding-cdd-checklist.json +634 -0
  44. package/skills/document-utils/reg-parser/references/checklists/hk-fi-corporate-onboarding-cdd-checklist.md +233 -0
  45. package/skills/document-utils/reg-parser/references/checklists/hk-mso-guideline-checklist.json +2194 -0
  46. package/skills/document-utils/reg-parser/references/checklists/hk-mso-guideline-checklist.md +771 -0
  47. package/skills/document-utils/reg-parser/references/checklists/kyc-aml-checklist.md +258 -0
  48. package/skills/document-utils/reg-parser/references/checklists/visa-vars-checklist.md +1058 -0
  49. package/skills/document-utils/reg-parser/references/mandates/hk-amlo-cap615.md +389 -0
  50. package/skills/document-utils/reg-parser/references/mandates/visa-vars.md +205 -0
  51. package/skills/document-utils/reg-parser/scripts/compare_checklist.py +228 -0
  52. package/skills/document-utils/reg-parser/scripts/dump_checklist.py +348 -0
  53. package/skills/document-utils/reg-parser/scripts/preprocess-mandate.sh +171 -0
  54. package/skills/document-utils/reg-parser/scripts/test_quarantine.sh +102 -0
  55. package/skills/document-utils/reg-parser/scripts/validate_checklist.py +532 -0
  56. package/skills/document-utils/reg-parser/scripts/validate_mandate.py +242 -0
  57. package/skills/engineering/engineering-runtime/coherence/workflow.json +16 -16
  58. package/skills/engineering/engineering-runtime/scripts/workflow-coherence.mjs +4 -0
  59. package/skills/engineering/engineering-runtime/scripts/workflow-policy.mjs +1 -1
  60. package/skills/payment/similar-domain/LICENSE +3 -0
  61. package/skills/payment/similar-domain/SKILL.md +178 -0
  62. package/skills/payment/similar-domain/references/entities.md +58 -0
  63. package/skills/payment/similar-domain/references/fingerprints.md +82 -0
  64. package/skills/payment/similar-domain/references/pivots.md +66 -0
  65. package/skills/payment/similar-domain/references/report-template.md +76 -0
  66. package/skills/payment/similar-domain/references/scoring.md +61 -0
  67. package/skills/payment/similar-domain/references/terminology.md +37 -0
  68. package/skills/payment/similar-domain/references/workflow.md +79 -0
  69. package/skills/payment/tld-detection/SKILL.md +76 -21
  70. package/skills/payment/tld-detection/references/clean.md +1 -1
  71. package/skills/payment/tld-detection/references/clustering.md +21 -6
  72. package/skills/payment/tld-detection/references/decision.md +7 -2
  73. package/skills/payment/tld-detection/references/fx-conversion.md +229 -0
  74. package/skills/payment/tld-detection/references/report-template.md +63 -27
  75. package/skills/payment/tld-detection/references/streams.md +90 -0
  76. package/skills/payment/tld-detection/references/terminology.md +15 -7
  77. package/skills/payment/tld-detection/references/workflow.md +1 -1
  78. package/skills/payment/tld-detection/scripts/detect_streams.py +542 -0
  79. package/skills/engineering/ensure-coverage/evals/evals.json +0 -125
  80. package/skills/engineering/rush-issues/evals/evals.json +0 -65
  81. package/skills/engineering/rush-release/evals/evals.json +0 -58
  82. package/skills/fullstack/shadcn/evals/evals.json +0 -90
  83. package/skills/payment/fraud-analysis/evals/evals.json +0 -40
  84. package/skills/payment/tld-detection/evals/evals.json +0 -107
  85. package/skills/payment/tld-detection/tests/test_detect_ladders.py +0 -132
@@ -0,0 +1,258 @@
1
+ ```yaml
2
+ name: "KYC/AML Compliance Checklist"
3
+ regulation: "EU Anti-Money Laundering Directive 2015/849 (AMLD4) as amended by 2018/843 (AMLD5)"
4
+ version: "1.0"
5
+ scope: "Customer due diligence, ongoing monitoring, record-keeping, and suspicious activity reporting obligations for obliged entities"
6
+ date: "2026-03-30"
7
+ summary:
8
+ categories: 5
9
+ total_items: 16
10
+ critical: 11
11
+ major: 5
12
+ minor: 0
13
+ ```
14
+
15
+ ## CAT-01: Customer Due Diligence
16
+
17
+ ### CAT-01-001: Verify customer identity — natural persons
18
+
19
+ - **Requirement:** Collect and verify government-issued photo identification for all natural persons before establishing a business relationship.
20
+ - **Source:** Art. 13(1)(a), Directive 2015/849
21
+ - **Severity:** critical
22
+ - **Verification:**
23
+ - [ ] Photo ID collected (passport, national ID card, or driver licence)
24
+ - [ ] ID verified against an independent, reliable source or database
25
+ - [ ] Verification date and method recorded in the customer file
26
+ - **Evidence:**
27
+ - Copy of verified ID document
28
+ - Verification log entry with timestamp and officer name
29
+
30
+ ### CAT-01-002: Verify customer identity — legal entities
31
+
32
+ - **Requirement:** Obtain proof of registration and verify the legal existence and structure of all legal entity customers.
33
+ - **Source:** Art. 13(1)(a), Directive 2015/849
34
+ - **Severity:** critical
35
+ - **Verification:**
36
+ - [ ] Certificate of incorporation or equivalent obtained
37
+ - [ ] Company registry extract reviewed and dated within 3 months
38
+ - [ ] Articles of association or equivalent reviewed
39
+ - **Evidence:**
40
+ - Certificate of incorporation
41
+ - Current company registry extract
42
+ - Articles of association
43
+
44
+ ### CAT-01-003: Identify beneficial owners
45
+
46
+ - **Requirement:** Identify all beneficial owners holding more than 25% of ownership or control, and verify their identities.
47
+ - **Source:** Art. 13(1)(b), Directive 2015/849
48
+ - **Severity:** critical
49
+ - **Verification:**
50
+ - [ ] Beneficial ownership declaration obtained from customer
51
+ - [ ] Ownership structure mapped to ultimate beneficial owners
52
+ - [ ] UBO identities verified per natural person verification procedures
53
+ - [ ] Ownership percentages documented
54
+ - **Evidence:**
55
+ - Beneficial ownership declaration form
56
+ - Ownership structure chart
57
+ - UBO identity verification records
58
+
59
+ ### CAT-01-004: Understand purpose and nature of business relationship
60
+
61
+ - **Requirement:** Obtain information on the purpose and intended nature of the business relationship at onboarding.
62
+ - **Source:** Art. 13(1)(c), Directive 2015/849
63
+ - **Severity:** major
64
+ - **Verification:**
65
+ - [ ] Customer questionnaire completed covering business activities
66
+ - [ ] Expected transaction types and volumes documented
67
+ - [ ] Source of funds identified
68
+ - **Evidence:**
69
+ - Completed customer questionnaire
70
+ - Onboarding notes with expected activity profile
71
+
72
+ ### CAT-01-005: Assess and document customer risk rating
73
+
74
+ - **Requirement:** Assign a risk rating (high, medium, low) to each customer based on customer type, geography, products, and delivery channels.
75
+ - **Source:** Art. 8(1)–(2), Directive 2015/849
76
+ - **Severity:** critical
77
+ - **Verification:**
78
+ - [ ] Risk assessment performed using approved methodology
79
+ - [ ] Risk factors documented (customer type, country, product, channel)
80
+ - [ ] Risk rating recorded in customer file
81
+ - [ ] Risk rating approved by authorised officer
82
+ - **Evidence:**
83
+ - Completed risk assessment form
84
+ - Risk rating approval record
85
+
86
+ ## CAT-02: Enhanced Due Diligence
87
+
88
+ ### CAT-02-001: Apply EDD for high-risk customers
89
+
90
+ - **Requirement:** Apply enhanced due diligence measures for all customers rated as high risk, including PEPs, customers from high-risk third countries, and complex ownership structures.
91
+ - **Source:** Art. 18(1), Directive 2015/849
92
+ - **Severity:** critical
93
+ - **Verification:**
94
+ - [ ] EDD triggers identified and documented
95
+ - [ ] Additional identification documents obtained
96
+ - [ ] Source of wealth established and documented
97
+ - [ ] Senior management approval obtained for relationship
98
+ - **Evidence:**
99
+ - EDD assessment report
100
+ - Source of wealth documentation
101
+ - Senior management approval record
102
+
103
+ ### CAT-02-002: Screen for Politically Exposed Persons
104
+
105
+ - **Requirement:** Screen all customers and beneficial owners against PEP databases at onboarding and on an ongoing basis.
106
+ - **Source:** Art. 20–23, Directive 2015/849
107
+ - **Severity:** critical
108
+ - **Verification:**
109
+ - [ ] PEP screening performed at onboarding
110
+ - [ ] Ongoing PEP screening scheduled (at least annually)
111
+ - [ ] PEP matches reviewed and dispositioned
112
+ - [ ] False positives documented with rationale
113
+ - **Evidence:**
114
+ - PEP screening results with date
115
+ - Match disposition records
116
+ - Screening system audit log
117
+
118
+ ### CAT-02-003: Screen against sanctions lists
119
+
120
+ - **Requirement:** Screen all customers, beneficial owners, and transaction parties against applicable sanctions lists before onboarding and on an ongoing basis.
121
+ - **Source:** Art. 13(1)(a), Directive 2015/849; EU Regulation 2580/2001
122
+ - **Severity:** critical
123
+ - **Verification:**
124
+ - [ ] Sanctions screening performed at onboarding
125
+ - [ ] Real-time or daily batch screening configured for ongoing monitoring
126
+ - [ ] Matches escalated immediately per sanctions policy
127
+ - [ ] Screening coverage includes all applicable lists (EU, UN, OFAC if relevant)
128
+ - **Evidence:**
129
+ - Sanctions screening results
130
+ - Match escalation records
131
+ - Screening system configuration documentation
132
+
133
+ ## CAT-03: Ongoing Monitoring
134
+
135
+ ### CAT-03-001: Monitor transactions for unusual activity
136
+
137
+ - **Requirement:** Conduct ongoing monitoring of all business relationships, including scrutiny of transactions to ensure they are consistent with the customer's known profile.
138
+ - **Source:** Art. 13(1)(d), Directive 2015/849
139
+ - **Severity:** critical
140
+ - **Verification:**
141
+ - [ ] Transaction monitoring rules defined and documented
142
+ - [ ] Monitoring system operational and generating alerts
143
+ - [ ] Alerts reviewed within defined SLA
144
+ - [ ] Alert dispositions documented with rationale
145
+ - **Evidence:**
146
+ - Transaction monitoring rule set documentation
147
+ - Alert review records with disposition
148
+ - Monitoring system operational reports
149
+
150
+ ### CAT-03-002: Periodic customer review
151
+
152
+ - **Requirement:** Review and update customer due diligence information on a risk-based periodic schedule (high risk: annually; medium: every 2 years; low: every 3 years).
153
+ - **Source:** Art. 13(1)(d), Directive 2015/849
154
+ - **Severity:** major
155
+ - **Verification:**
156
+ - [ ] Review schedule defined by risk category
157
+ - [ ] Review triggers configured in CRM or compliance system
158
+ - [ ] Reviews completed within scheduled timeframe
159
+ - [ ] Updated information recorded in customer file
160
+ - **Evidence:**
161
+ - Periodic review schedule
162
+ - Completed review records with dates
163
+ - Updated customer files
164
+
165
+ ### CAT-03-003: Reassess customer risk upon trigger events
166
+
167
+ - **Requirement:** Reassess the customer risk rating when material changes occur (change in ownership, adverse media, unusual transactions, change in business activity).
168
+ - **Source:** Art. 8(2), Directive 2015/849
169
+ - **Severity:** major
170
+ - **Verification:**
171
+ - [ ] Trigger events defined in policy
172
+ - [ ] Trigger event detection mechanisms in place
173
+ - [ ] Risk re-assessment performed and documented
174
+ - [ ] Updated risk rating approved by authorised officer
175
+ - **Evidence:**
176
+ - Trigger event documentation
177
+ - Updated risk assessment
178
+ - Approval record
179
+
180
+ ## CAT-04: Record Keeping
181
+
182
+ ### CAT-04-001: Retain CDD records for minimum period
183
+
184
+ - **Requirement:** Retain all customer due diligence records, including copies of identification documents and transaction records, for at least 5 years after the business relationship ends.
185
+ - **Source:** Art. 40(1), Directive 2015/849
186
+ - **Severity:** critical
187
+ - **Verification:**
188
+ - [ ] Retention policy documented with 5-year minimum
189
+ - [ ] Retention period starts from end of business relationship
190
+ - [ ] Records stored securely with access controls
191
+ - [ ] Disposal procedures defined for post-retention records
192
+ - **Evidence:**
193
+ - Records retention policy
194
+ - Records inventory with retention dates
195
+ - Access control documentation
196
+
197
+ ### CAT-04-002: Ensure records are available to authorities
198
+
199
+ - **Requirement:** Make CDD and transaction records available promptly to competent authorities (FIU, supervisory authorities) upon request.
200
+ - **Source:** Art. 40(1), Directive 2015/849
201
+ - **Severity:** critical
202
+ - **Verification:**
203
+ - [ ] Process defined for responding to authority requests
204
+ - [ ] Designated contact point identified for authority enquiries
205
+ - [ ] Records retrievable within required timeframe
206
+ - [ ] Response log maintained
207
+ - **Evidence:**
208
+ - Authority request response procedure
209
+ - Designated contact point documentation
210
+ - Historical response log
211
+
212
+ ## CAT-05: Suspicious Activity Reporting
213
+
214
+ ### CAT-05-001: File Suspicious Activity Reports
215
+
216
+ - **Requirement:** Report to the Financial Intelligence Unit (FIU) when there is knowledge, suspicion, or reasonable grounds to suspect money laundering or terrorist financing.
217
+ - **Source:** Art. 33(1), Directive 2015/849
218
+ - **Severity:** critical
219
+ - **Verification:**
220
+ - [ ] SAR/STR filing procedures documented
221
+ - [ ] Reporting channel to national FIU established
222
+ - [ ] SARs filed within required timeframe
223
+ - [ ] Tipping-off prohibition understood and enforced
224
+ - **Evidence:**
225
+ - SAR filing procedure documentation
226
+ - Filed SAR records (confidential)
227
+ - FIU acknowledgement receipts
228
+
229
+ ### CAT-05-002: Maintain internal escalation process
230
+
231
+ - **Requirement:** Establish an internal process for employees to report suspicious activity to the MLRO/compliance function without delay.
232
+ - **Source:** Art. 33(1), Directive 2015/849
233
+ - **Severity:** major
234
+ - **Verification:**
235
+ - [ ] Internal reporting channel established (hotline, form, or system)
236
+ - [ ] MLRO or nominated officer designated
237
+ - [ ] Escalation SLA defined
238
+ - [ ] Employee awareness confirmed (training records)
239
+ - **Evidence:**
240
+ - Internal reporting procedure
241
+ - MLRO designation letter
242
+ - Training completion records
243
+
244
+ ### CAT-05-003: Provide AML training to staff
245
+
246
+ - **Requirement:** Ensure employees receive regular training on AML/CFT obligations, customer due diligence procedures, and suspicious activity identification.
247
+ - **Source:** Art. 46(1), Directive 2015/849
248
+ - **Severity:** major
249
+ - **Verification:**
250
+ - [ ] Training programme covers CDD, EDD, SAR filing, and sanctions
251
+ - [ ] Training delivered at onboarding and refreshed annually
252
+ - [ ] Training attendance tracked
253
+ - [ ] Training content reviewed and updated at least annually
254
+ - **Evidence:**
255
+ - Training materials and curriculum
256
+ - Attendance records
257
+ - Training schedule
258
+ - Content review log