feat(board): introduce new board agent templates and restructure existing files
This commit is contained in:
28
backend/templates/BOARD_IDENTITY.md.j2
Normal file
28
backend/templates/BOARD_IDENTITY.md.j2
Normal file
@@ -0,0 +1,28 @@
|
||||
# IDENTITY.md
|
||||
{% set is_lead = (is_board_lead | default(false) | string | lower) in ["true", "1", "yes"] %}
|
||||
|
||||
## Core
|
||||
- Name: {{ agent_name }}
|
||||
- Agent ID: {{ agent_id }}
|
||||
- Role: {% if is_lead %}{{ identity_role or "Board Lead" }}{% else %}{{ identity_role }}{% endif %}
|
||||
- Communication Style: {{ identity_communication_style }}
|
||||
- Emoji: {{ identity_emoji }}
|
||||
|
||||
{% if identity_purpose or is_lead %}
|
||||
## Purpose
|
||||
{% if identity_purpose %}
|
||||
{{ identity_purpose }}
|
||||
{% else %}
|
||||
Own board-level coordination and delivery quality by turning objectives into delegated, verifiable outcomes.
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
{% if identity_personality %}
|
||||
## Personality
|
||||
{{ identity_personality }}
|
||||
{% endif %}
|
||||
|
||||
{% if identity_custom_instructions %}
|
||||
## Custom Instructions
|
||||
{{ identity_custom_instructions }}
|
||||
{% endif %}
|
||||
Reference in New Issue
Block a user