fraim 2.0.302 → 2.0.304

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.
@@ -81,7 +81,7 @@ exports.PERSONA_CAPABILITY_BUNDLES = {
81
81
  personaKey: 'huxley',
82
82
  bundleId: 'persona-huxley-core',
83
83
  catalogMetadata: buildCatalogMetadata('huxley', ['design-system-creation', 'user-facing-prototyping', 'ux-research-synthesis']),
84
- protectedJobs: ['design-system-creation', 'user-facing-prototyping', 'website-creation', 'brand-creation', 'branding-quality-audit', 'ux-research-synthesis', 'user-journey-mapping'],
84
+ protectedJobs: ['design-system-creation', 'user-facing-prototyping', 'website-creation', 'brand-creation', 'branding-quality-audit', 'ux-research-synthesis', 'user-journey-mapping', 'ui-quality-assessment'],
85
85
  protectedAliases: ['ux-design', 'brand-design'],
86
86
  defaultHireMode: 'job',
87
87
  lockCopy: 'Hire hUXley to unlock design-system, UX research, and brand design work for this request.'
@@ -161,8 +161,8 @@ exports.PERSONA_CAPABILITY_BUNDLES = {
161
161
  careena: {
162
162
  personaKey: 'careena',
163
163
  bundleId: 'persona-careena-core',
164
- catalogMetadata: buildCatalogMetadata('careena', ['career-spec', 'resume-creation', 'job-application-execution']),
165
- protectedJobs: ['career-spec', 'job-application-execution', 'resume-creation', 'public-profile-updates', 'career-trajectory-planning', 'pitch-and-interview-prep', 'career-networking', 'offer-negotiation', 'resilience-planning'],
164
+ catalogMetadata: buildCatalogMetadata('careena', ['career-spec', 'resume-creation', 'job-search-strategy-and-application-plan']),
165
+ protectedJobs: ['career-spec', 'job-search-strategy-and-application-plan', 'job-applications-and-networking', 'resume-creation', 'public-profile-updates', 'career-trajectory-planning', 'pitch-and-interview-prep', 'career-networking', 'offer-negotiation', 'resilience-planning'],
166
166
  protectedAliases: ['career', 'career-coach', 'job-search'],
167
167
  defaultHireMode: 'job',
168
168
  lockCopy: 'Hire CAREEna to unlock job-search execution, interview prep, and career coaching for this request.'
@@ -177,7 +177,9 @@ class AIMentor {
177
177
  message += [
178
178
  '### Waiting For Next Invocation',
179
179
  '',
180
- 'Send a concise status update that this recurring assignment is waiting for its next scheduled check, then stop.'
180
+ 'Send a concise status update that this recurring assignment is waiting for its next scheduled check, then stop.',
181
+ '',
182
+ '<!-- FRAIM_RECURRING_PARK -->',
181
183
  ].join('\n');
182
184
  }
183
185
  else if (nextPhaseId) {
@@ -39,6 +39,8 @@ exports.QUALITY_REGISTRY = {
39
39
  'branding-quality-audit': { stage: 'branding', enforced: true, telemetryKind: 'score' },
40
40
  // Product Quality
41
41
  'code-quality-assessment': { stage: 'product-quality', enforced: true, telemetryKind: 'score' },
42
+ // UI/UX Quality
43
+ 'ui-quality-assessment': { stage: 'ui-ux-quality', enforced: true, telemetryKind: 'score' },
42
44
  // Test Quality
43
45
  'test-quality-assessment': { stage: 'test-quality', enforced: true, telemetryKind: 'score' },
44
46
  // Security
@@ -76,6 +78,7 @@ exports.STAGE_DISPLAY_NAMES = {
76
78
  'business-strategy': 'Business Strategy',
77
79
  'branding': 'Branding',
78
80
  'product-quality': 'Product Quality',
81
+ 'ui-ux-quality': 'UI/UX Quality',
79
82
  'test-quality': 'Test Quality',
80
83
  'security': 'Security',
81
84
  'production-readiness': 'Production Readiness',
@@ -90,6 +93,7 @@ exports.ALL_STAGE_CATEGORIES = [
90
93
  'business-strategy',
91
94
  'branding',
92
95
  'product-quality',
96
+ 'ui-ux-quality',
93
97
  'test-quality',
94
98
  'security',
95
99
  'production-readiness',
@@ -153,6 +157,12 @@ const QUALITY_SCORE_DIMENSIONS = {
153
157
  'architecture',
154
158
  'maintainability'
155
159
  ],
160
+ 'ui-quality-assessment': [
161
+ 'lookAndFeel',
162
+ 'usabilityHeuristics',
163
+ 'interactionConsistency',
164
+ 'accessibility'
165
+ ],
156
166
  'test-quality-assessment': [
157
167
  'coverage',
158
168
  'testIntegrity',
@@ -104,6 +104,7 @@ async function seedDemoDataForUser(dbService, userId) {
104
104
  { category: 'business-strategy', jobName: 'review-business-strategy' },
105
105
  { category: 'branding', jobName: 'branding-quality-audit' },
106
106
  { category: 'product-quality', jobName: 'code-quality-assessment' },
107
+ { category: 'ui-ux-quality', jobName: 'ui-quality-assessment' },
107
108
  { category: 'test-quality', jobName: 'test-quality-assessment' },
108
109
  { category: 'security', jobName: 'security-review' },
109
110
  { category: 'production-readiness', jobName: 'production-readiness-review' },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fraim",
3
- "version": "2.0.302",
3
+ "version": "2.0.304",
4
4
  "description": "FRAIM core CLI and MCP package.",
5
5
  "main": "index.js",
6
6
  "bin": {