feat(hp): promote HP client + add hp_copy_review profile

HP is no longer a placeholder. The client gets a new hp_copy_review
profile (single weighted check, client-specific visibility) as its
default, plus the generic static_general and video_general profiles
it already had visibility into.
This commit is contained in:
nickviljoen 2026-05-17 21:08:18 +02:00
parent 568465f9be
commit 014a9cb8ff
2 changed files with 17 additions and 2 deletions

View file

@ -63,9 +63,10 @@ CLIENT_PROFILES = {
},
'hp': {
'name': 'HP',
'profiles': ['static_general', 'video_general'],
'profiles': ['hp_copy_review', 'static_general', 'video_general'],
'display_name': 'HP',
'description': 'Demo client — scope pending'
'description': 'HP marketing copy QC graded against canonical Source Messaging',
'default_profile': 'hp_copy_review',
},
'ferrero': {
'name': 'Ferrero',

View file

@ -0,0 +1,14 @@
{
"name": "HP Copy Review",
"description": "Marketing copy graded against canonical HP Source Messaging",
"mode": "asset",
"visibility": "client_specific",
"visible_to_clients": ["hp"],
"checks": {
"hp_copy_review": {
"weight": 10.0,
"llm": "gemini",
"enabled": true
}
}
}