@wipal/agent-team 1.2.4 → 1.2.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipal/agent-team",
3
- "version": "1.2.4",
3
+ "version": "1.2.5",
4
4
  "description": "CLI tool to add AI agent teams to existing projects with specialized roles, skills, and workflows (v2.1 with OpenFang patterns)",
5
5
  "type": "module",
6
6
  "bin": {
@@ -45,14 +45,8 @@
45
45
  <span class="agent-role" x-text="agent.variants?.base_role || 'unknown'"></span>
46
46
  </div>
47
47
  <div class="agent-variants">
48
- <template x-for="(value, key) in agent.variants" :key="key + 'variant-' + key">
49
- <template x-if="Array.isArray(value)">
50
- <template x-for="v in value" :key="v">
51
- <span class="variant-tag" x-text="key + ': ' + v"></span>
52
- </template>
53
- <template x-else>
54
- <span class="variant-tag" x-text="key + ': ' + value"></span>
55
- </template>
48
+ <template x-for="(value, key) in agent.variants" :key="key">
49
+ <span class="variant-tag" x-text="key + ': ' + (Array.isArray(value) ? value.join(', ') : value)"></span>
56
50
  </template>
57
51
  </div>
58
52
  <div class="agent-skills" x-show="agent.skills?.length">
@@ -290,7 +284,7 @@
290
284
  } else {
291
285
  // Single select: replace value
292
286
  if (value) {
293
- this.newAgent.variants[category] = value
287
+ this.newAgent.variants[category] = value;
294
288
  } else {
295
289
  delete this.newAgent.variants[category];
296
290
  }
@@ -604,7 +604,8 @@ body {
604
604
  .checkbox-label input[type="checkbox"] {
605
605
  position: absolute;
606
606
  opacity: 0;
607
- pointer-events: none;
607
+ width: 0;
608
+ height: 0;
608
609
  }
609
610
 
610
611
  /* Variant type badge */