specify md ot yaml

This commit is contained in:
Brian Madison
2025-07-06 18:26:09 -05:00
parent 339745c3f3
commit 746ba573fa
58 changed files with 7606 additions and 7404 deletions

View File

@@ -67,6 +67,12 @@ sections:
- **repeatable**: Boolean - Section can be repeated multiple times
- **condition**: String - Condition for including section (e.g., "has ui requirements")
#### Agent Permissions
- **owner**: String - Agent role that initially creates/populates this section
- **editors**: Array - List of agent roles allowed to modify this section
- **readonly**: Boolean - Section cannot be modified after initial creation
#### Content Guidance
- **examples**: Array of example content (not included in output)
@@ -169,6 +175,29 @@ choices:
- `block` - Block diagrams
- `kanban` - Kanban boards
### Agent Permissions Example
```yaml
- id: story-details
title: Story
owner: scrum-master
editors: [scrum-master]
readonly: false
sections:
- id: dev-notes
title: Dev Notes
owner: dev-agent
editors: [dev-agent]
readonly: false
instruction: Implementation notes and technical details
- id: qa-results
title: QA Results
owner: qa-agent
editors: [qa-agent]
readonly: true
instruction: Quality assurance test results
```
### Repeatable Sections
```yaml