- Introduced profile selection modal for creating notes from interview profiles. - Added settings for interview configuration path, auto-starting interviews, and intercepting unresolved link clicks. - Updated package files to include YAML dependency for configuration handling. - Enhanced CSS for profile selection and interview wizard UI elements.
31 lines
812 B
YAML
31 lines
812 B
YAML
defaults:
|
|
matching:
|
|
required_links: false
|
|
profiles:
|
|
discovery:
|
|
required_links: false
|
|
min_slots_filled_for_gap_findings: 1
|
|
min_score_for_gap_findings: 0
|
|
decisioning:
|
|
required_links: true
|
|
min_slots_filled_for_gap_findings: 3
|
|
min_score_for_gap_findings: 20
|
|
|
|
templates:
|
|
- name: trigger_transformation_outcome
|
|
description: Three-step causal chain template
|
|
slots:
|
|
- id: trigger
|
|
allowed_node_types: ["experience"]
|
|
- id: transformation
|
|
allowed_node_types: ["insight"]
|
|
- id: outcome
|
|
allowed_node_types: ["decision"]
|
|
links:
|
|
- from: trigger
|
|
to: transformation
|
|
allowed_edge_roles: ["causal", "influences"]
|
|
- from: transformation
|
|
to: outcome
|
|
allowed_edge_roles: ["causal"]
|