vibe-coding-master 0.3.31 → 0.4.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.
@@ -42,8 +42,15 @@ export const TRANSLATOR_TOOL_ROLE_DEFINITION = {
42
42
  commandAgent: "translator",
43
43
  dispatchable: false
44
44
  };
45
+ export const HARNESS_ENGINEER_TOOL_ROLE_DEFINITION = {
46
+ name: "harness-engineer",
47
+ label: "Harness Engineer",
48
+ commandAgent: "harness-engineer",
49
+ dispatchable: false
50
+ };
45
51
  export const TOOL_ROLE_DEFINITIONS = [
46
- TRANSLATOR_TOOL_ROLE_DEFINITION
52
+ TRANSLATOR_TOOL_ROLE_DEFINITION,
53
+ HARNESS_ENGINEER_TOOL_ROLE_DEFINITION
47
54
  ];
48
55
  export const ROLE_DEFINITIONS = [
49
56
  ...VCM_ROLE_DEFINITIONS,
@@ -71,6 +78,9 @@ export function isToolRoleName(value) {
71
78
  export function isTranslatorToolRoleName(value) {
72
79
  return value === TRANSLATOR_TOOL_ROLE_DEFINITION.name;
73
80
  }
81
+ export function isHarnessEngineerToolRoleName(value) {
82
+ return value === HARNESS_ENGINEER_TOOL_ROLE_DEFINITION.name;
83
+ }
74
84
  export function isDispatchableRole(value) {
75
85
  return DISPATCHABLE_ROLES.includes(value);
76
86
  }