- Add issue templates for agents, packs, features, bugs, infra, and docs - Add labels.yml with BlackRoad OS standard labels (team, type, prio, status) - Add PR template with atomic commit guidelines - Add CONTRIBUTING.md with development guidelines - Add docs/REPOSITORY_ROLE.md documenting this repo's ecosystem role - Update README.md with badges, ecosystem links, and comprehensive docs Co-authored-by: blackboxprogramming <118287761+blackboxprogramming@users.noreply.github.com>
76 lines
2.0 KiB
YAML
76 lines
2.0 KiB
YAML
name: Feature Request
|
|
description: Suggest a new feature for the Prism Console
|
|
title: "[FEATURE] "
|
|
labels: ["type:feature", "team:prism", "status:ready"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
## Feature Request Template
|
|
Use this template to suggest new features or enhancements for Prism Console.
|
|
|
|
- type: dropdown
|
|
id: priority
|
|
attributes:
|
|
label: Priority
|
|
description: What is the priority of this feature?
|
|
options:
|
|
- prio:P0
|
|
- prio:P1
|
|
- prio:P2
|
|
validations:
|
|
required: true
|
|
|
|
- type: dropdown
|
|
id: area
|
|
attributes:
|
|
label: Feature Area
|
|
description: Which area of Prism Console does this feature relate to?
|
|
options:
|
|
- Agents Dashboard
|
|
- Environments Monitor
|
|
- Deployments View
|
|
- Jobs/Schedules
|
|
- Identity/Audit
|
|
- Lucidia Dashboard
|
|
- API Integration
|
|
- Other
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: problem
|
|
attributes:
|
|
label: Problem Statement
|
|
description: What problem does this feature solve?
|
|
placeholder: "Currently, operators cannot see real-time agent memory usage..."
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: solution
|
|
attributes:
|
|
label: Proposed Solution
|
|
description: How should this feature work?
|
|
placeholder: "Add a memory usage graph to the agent inspector panel..."
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: alternatives
|
|
attributes:
|
|
label: Alternatives Considered
|
|
description: What other approaches did you consider?
|
|
placeholder: "Considered adding this to the API instead..."
|
|
validations:
|
|
required: false
|
|
|
|
- type: textarea
|
|
id: context
|
|
attributes:
|
|
label: Additional Context
|
|
description: Any other relevant information (mockups, related features, etc.)
|
|
placeholder: "Mockups, screenshots, related issues..."
|
|
validations:
|
|
required: false
|