Skip to content

Commit 0e2dc4c

Browse files
committed
issue template
1 parent c1112b0 commit 0e2dc4c

File tree

1 file changed

+190
-0
lines changed

1 file changed

+190
-0
lines changed
Lines changed: 190 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
name: Beta Feedback
2+
description: Share your experience beta testing the AI-Ready Data Framework
3+
title: "[Beta Feedback]: "
4+
labels: ["beta", "feedback"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for beta testing! This should take **5–10 minutes**. Be honest and specific — your feedback shapes the framework.
10+
11+
- type: input
12+
id: platform
13+
attributes:
14+
label: Platform
15+
description: Which platform did you test on?
16+
placeholder: "Snowflake"
17+
validations:
18+
required: true
19+
20+
- type: dropdown
21+
id: profile
22+
attributes:
23+
label: Workload profile used
24+
options:
25+
- Scan
26+
- RAG
27+
- Agents
28+
- Training
29+
- Feature Serving
30+
- Custom
31+
validations:
32+
required: true
33+
34+
- type: input
35+
id: schema
36+
attributes:
37+
label: Schema/dataset assessed
38+
placeholder: "e.g. ANALYTICS.PRODUCT_METRICS"
39+
40+
- type: markdown
41+
attributes:
42+
value: "## Setup & Installation"
43+
44+
- type: textarea
45+
id: setup-friction
46+
attributes:
47+
label: Any friction during setup?
48+
description: Did the install command work? Any confusion with scope selection or permissions?
49+
placeholder: "Worked fine / Had to do X / Got stuck on Y"
50+
51+
- type: markdown
52+
attributes:
53+
value: "## Assessment Flow"
54+
55+
- type: dropdown
56+
id: flow-intuitive
57+
attributes:
58+
label: Was the assessment flow intuitive?
59+
options:
60+
- "Yes — easy to follow"
61+
- "Mostly — minor confusion"
62+
- "No — got lost"
63+
validations:
64+
required: true
65+
66+
- type: dropdown
67+
id: completed-without-errors
68+
attributes:
69+
label: Did the assessment complete without errors?
70+
options:
71+
- "Yes"
72+
- "Yes, but with warnings"
73+
- "No — hit errors"
74+
validations:
75+
required: true
76+
77+
- type: input
78+
id: duration
79+
attributes:
80+
label: How long did a full assessment take?
81+
placeholder: "e.g. 8 minutes"
82+
83+
- type: textarea
84+
id: assessment-friction
85+
attributes:
86+
label: Any friction during assessment?
87+
placeholder: "Scoping questions were clear / Agent asked too many questions / Check X was slow"
88+
89+
- type: markdown
90+
attributes:
91+
value: "## Results & Scoring"
92+
93+
- type: dropdown
94+
id: scores-meaningful
95+
attributes:
96+
label: Were the scores meaningful and easy to interpret?
97+
options:
98+
- "Yes"
99+
- "Somewhat"
100+
- "No"
101+
validations:
102+
required: true
103+
104+
- type: textarea
105+
id: results-feedback
106+
attributes:
107+
label: Feedback on results
108+
description: Any surprising results? Did scores match your intuition? Which requirements felt most/least valuable?
109+
placeholder: "Scores for X seemed off because..."
110+
111+
- type: markdown
112+
attributes:
113+
value: "## Remediation"
114+
115+
- type: textarea
116+
id: remediation-feedback
117+
attributes:
118+
label: Feedback on remediation
119+
description: Were fixes clear and actionable? Did you apply any? Did re-assessment show improvement?
120+
placeholder: "Applied fix for X — worked / Fix for Y seemed risky because..."
121+
122+
- type: markdown
123+
attributes:
124+
value: "## The Framework"
125+
126+
- type: textarea
127+
id: framework-feedback
128+
attributes:
129+
label: Feedback on the framework itself
130+
description: |
131+
Requirements to add or remove? Do the six factors cover the right dimensions?
132+
Are the workload profiles realistic? Thresholds too strict or too lenient?
133+
placeholder: "Missing a requirement for... / Threshold for X is too strict"
134+
135+
- type: markdown
136+
attributes:
137+
value: "## Overall"
138+
139+
- type: dropdown
140+
id: usefulness
141+
attributes:
142+
label: Overall usefulness (1–5)
143+
options:
144+
- "5 — extremely useful"
145+
- "4 — very useful"
146+
- "3 — somewhat useful"
147+
- "2 — slightly useful"
148+
- "1 — not useful"
149+
validations:
150+
required: true
151+
152+
- type: dropdown
153+
id: recommend
154+
attributes:
155+
label: Would you recommend this to a colleague?
156+
options:
157+
- "Yes — definitely"
158+
- "Maybe — with caveats"
159+
- "No"
160+
validations:
161+
required: true
162+
163+
- type: input
164+
id: best-thing
165+
attributes:
166+
label: Single best thing about the framework?
167+
168+
- type: input
169+
id: biggest-change
170+
attributes:
171+
label: Single biggest thing that needs to change?
172+
173+
- type: markdown
174+
attributes:
175+
value: "## Friction Log"
176+
177+
- type: textarea
178+
id: friction-log
179+
attributes:
180+
label: Specific issues encountered
181+
description: Log specific friction points with severity. Include timestamps if possible.
182+
placeholder: |
183+
- [blocker] Couldn't connect to account_usage — missing IMPORTED PRIVILEGES
184+
- [annoying] Lineage check took 4 minutes
185+
- [minor] Report formatting was hard to read in narrow terminal
186+
187+
- type: textarea
188+
id: anything-else
189+
attributes:
190+
label: Anything else?

0 commit comments

Comments
 (0)