@bluecopa/harness 0.1.0-snapshot.31 → 0.1.0-snapshot.32

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": "@bluecopa/harness",
3
- "version": "0.1.0-snapshot.31",
3
+ "version": "0.1.0-snapshot.32",
4
4
  "description": "Provider-agnostic TypeScript agent framework",
5
5
  "license": "UNLICENSED",
6
6
  "scripts": {
@@ -19,7 +19,10 @@ export interface SkillRouterConfig {
19
19
  const DEFAULT_ALIASES: Record<string, string[]> = {
20
20
  xlsx: ['excel', 'spreadsheet', 'workbook', 'csv'],
21
21
  docx: ['word', 'document', 'doc'],
22
- pptx: ['powerpoint', 'slides', 'presentation']
22
+ pptx: ['powerpoint', 'slides', 'presentation'],
23
+ 'visual-explainer': ['visual explainer', 'visual explanation', 'interactive visual', 'visualize', 'diagram d3', 'data visualization', 'd3'],
24
+ 'excalidraw-diagram': ['excalidraw', 'architecture diagram', 'flowchart', 'sequence diagram'],
25
+ 'json-render': ['jsonrender', 'interactive ui', 'action buttons'],
23
26
  };
24
27
 
25
28
  export class SkillRouter {