great-cto 2.12.1 → 2.14.0
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/dist/adapt.js +1 -0
- package/dist/packs.js +22 -0
- package/package.json +1 -1
package/dist/adapt.js
CHANGED
|
@@ -94,6 +94,7 @@ using it for pattern-matched work silently skips specialist review.
|
|
|
94
94
|
| API contract: OpenAPI, GraphQL schema, webhook signatures | \`api-platform-reviewer\` |
|
|
95
95
|
| Voice/IVR/telephony, Twilio, recording-consent, TCPA | \`voice-ai-reviewer\` |
|
|
96
96
|
| Clinical / SaMD / FDA / FHIR / PHI | \`ai-clinical-reviewer\`, \`fda-reviewer\` |
|
|
97
|
+
| Wearable telemetry, HealthKit, Health Connect, Garmin, Samsung Health, fitness AI, mental health AI, nutrition AI, supplement AI, physician HITL | \`digital-health-reviewer\` |
|
|
97
98
|
| Lending, ECOA, FCRA, NMLS, adverse action | \`lending-credit-reviewer\` |
|
|
98
99
|
| HR-AI, hiring, AEDT, resume screening | \`hr-ai-reviewer\` |
|
|
99
100
|
| Infra-as-code: Terraform / Helm / CDK / Pulumi | \`infra-reviewer\` |
|
package/dist/packs.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// Domain pack detection — overlay packs that ride on top of base archetypes.
|
|
2
2
|
// Wave 1-3 (2026-05): voice, clinical, hr-ai, api-platform, lending, clinical-trials,
|
|
3
3
|
// robotics, em-fintech, climate, drug-discovery.
|
|
4
|
+
// Wave 4 (2026-05): digital-health (wearable, mental-health, nutrition AI, physician HITL).
|
|
4
5
|
//
|
|
5
6
|
// A pack is a regulatory/domain overlay that triggers one or more specialist
|
|
6
7
|
// reviewers (agents/{name}-reviewer.md) when its signals appear in stack,
|
|
@@ -19,6 +20,7 @@ const PACK_REVIEWERS = {
|
|
|
19
20
|
"em-fintech-pack": ["emerging-markets-fintech-reviewer"],
|
|
20
21
|
"climate-pack": ["climate-mrv-reviewer", "biosecurity-reviewer"],
|
|
21
22
|
"drug-discovery-pack": ["drug-discovery-ml-reviewer", "glp-glab-reviewer", "lab-automation-reviewer"],
|
|
23
|
+
"digital-health-pack": ["digital-health-reviewer", "ai-clinical-reviewer", "healthcare-reviewer"],
|
|
22
24
|
};
|
|
23
25
|
const PACK_GATES = {
|
|
24
26
|
"voice-pack": ["gate:voice-compliance"],
|
|
@@ -31,6 +33,7 @@ const PACK_GATES = {
|
|
|
31
33
|
"em-fintech-pack": ["gate:license-strategy"],
|
|
32
34
|
"climate-pack": ["gate:mrv-methodology", "gate:durc-signoff", "gate:open-weights-release"],
|
|
33
35
|
"drug-discovery-pack": ["gate:model-card-signoff", "gate:csv-validation", "gate:iq-oq-pq"],
|
|
36
|
+
"digital-health-pack": ["gate:wellness-vs-samd", "gate:hitl-design", "gate:wearable-api-access", "gate:supplement-safety", "gate:mental-health-protocol"],
|
|
34
37
|
};
|
|
35
38
|
// Trigger signals — stack tokens OR README keywords.
|
|
36
39
|
const SIGNALS = {
|
|
@@ -84,6 +87,25 @@ const SIGNALS = {
|
|
|
84
87
|
"glp", "gmp", "gxp", "preclinical", "lims", "eln", "annex 11", "alcoa",
|
|
85
88
|
"lab automation", "cloud lab", "robotic biology", "liquid handler", "hamilton", "tecan", "beckman", "opentrons", "plate reader", "sequencer", "hplc", "mass spec", "sila"],
|
|
86
89
|
},
|
|
90
|
+
"digital-health-pack": {
|
|
91
|
+
stack: ["healthkit", "health-connect", "garmin-connect-iq", "samsung-health", "fitbit", "polar", "withings", "oura", "whoop"],
|
|
92
|
+
keywords: [
|
|
93
|
+
// wearable / biometric
|
|
94
|
+
"wearable", "apple watch", "apple health", "healthkit", "health connect", "garmin", "samsung health",
|
|
95
|
+
"google fit", "fitbit", "heart rate", "hrv", "heart rate variability", "spo2", "sleep tracking",
|
|
96
|
+
"sleep stages", "biometric sensor", "stress score", "activity tracking", "ecg wearable",
|
|
97
|
+
// mental health / wellness AI
|
|
98
|
+
"mental health", "mental wellness", "wellbeing", "mindfulness ai", "stress detection",
|
|
99
|
+
"burnout detection", "mood tracking", "anxiety ai", "depression ai", "phq-9", "gad-7",
|
|
100
|
+
"digital therapeutics", "dtx", "cbt app", "dbt app", "therapy ai",
|
|
101
|
+
// fitness / nutrition AI
|
|
102
|
+
"personalised training", "personalized training", "fitness ai", "nutrition ai",
|
|
103
|
+
"supplement recommendation", "supplement ai", "diet ai", "meal plan ai", "macro ai",
|
|
104
|
+
// HITL clinical
|
|
105
|
+
"physician review", "physician hitl", "doctor in the loop", "clinical review workflow",
|
|
106
|
+
"remote patient monitoring", "rpm", "teleconsultation",
|
|
107
|
+
],
|
|
108
|
+
},
|
|
87
109
|
};
|
|
88
110
|
/** Return packs whose signals match the detection result. Deterministic + sorted. */
|
|
89
111
|
export function suggestPacks(d) {
|
package/package.json
CHANGED