@grainulation/silo 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CODE_OF_CONDUCT.md +25 -0
- package/CONTRIBUTING.md +103 -0
- package/README.md +67 -59
- package/bin/silo.js +212 -86
- package/lib/analytics.js +26 -11
- package/lib/confluence.js +343 -0
- package/lib/graph.js +414 -0
- package/lib/import-export.js +29 -24
- package/lib/index.js +15 -9
- package/lib/packs.js +60 -36
- package/lib/search.js +24 -16
- package/lib/serve-mcp.js +391 -95
- package/lib/server.js +205 -110
- package/lib/store.js +34 -18
- package/lib/templates.js +28 -17
- package/package.json +6 -3
- package/packs/adr.json +219 -0
- package/packs/api-design.json +67 -14
- package/packs/architecture-decision.json +152 -0
- package/packs/architecture.json +45 -9
- package/packs/ci-cd.json +51 -11
- package/packs/compliance.json +70 -14
- package/packs/coverage-ramp.json +180 -0
- package/packs/data-engineering.json +57 -12
- package/packs/frontend.json +56 -12
- package/packs/hackathon-best-ai.json +179 -0
- package/packs/hackathon-business-impact.json +180 -0
- package/packs/hackathon-innovation.json +210 -0
- package/packs/hackathon-most-innovative.json +179 -0
- package/packs/hackathon-most-rigorous.json +179 -0
- package/packs/hackathon-sprint-boost.json +173 -0
- package/packs/incident-postmortem.json +219 -0
- package/packs/migration.json +45 -9
- package/packs/observability.json +57 -12
- package/packs/security.json +61 -13
- package/packs/team-process.json +64 -13
- package/packs/testing.json +20 -4
- package/packs/vendor-eval.json +219 -0
- package/packs/vendor-evaluation.json +148 -0
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Hackathon: Best Business Impact",
|
|
3
|
+
"description": "Scoring rubric and seed claims for the 'Best Business Impact' hackathon category. Weights constraint satisfaction and evidence quality — rewards research that drives real decisions.",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"claims": [
|
|
6
|
+
{
|
|
7
|
+
"id": "hbiz-001",
|
|
8
|
+
"type": "constraint",
|
|
9
|
+
"topic": "constraint satisfaction scoring",
|
|
10
|
+
"content": "Constraint satisfaction sub-score = (constraint_claims_with_evidence / total_constraint_claims) * 100. Weight: 30% — the dominant factor. Business impact requires understanding real constraints, not hypothetical ones.",
|
|
11
|
+
"source": {
|
|
12
|
+
"origin": "best-practice",
|
|
13
|
+
"artifact": null,
|
|
14
|
+
"connector": null
|
|
15
|
+
},
|
|
16
|
+
"evidence": "documented",
|
|
17
|
+
"status": "active",
|
|
18
|
+
"phase_added": "define",
|
|
19
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
20
|
+
"conflicts_with": [],
|
|
21
|
+
"resolved_by": null,
|
|
22
|
+
"tags": [
|
|
23
|
+
"hackathon",
|
|
24
|
+
"scoring",
|
|
25
|
+
"constraint-satisfaction",
|
|
26
|
+
"business-impact"
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"id": "hbiz-002",
|
|
31
|
+
"type": "constraint",
|
|
32
|
+
"topic": "evidence tier scoring",
|
|
33
|
+
"content": "Evidence tier sub-score uses weighted sum normalized to 0-100. Weight: 25%. Business decisions need strong evidence — 'we tested it' beats 'someone blogged about it'.",
|
|
34
|
+
"source": {
|
|
35
|
+
"origin": "best-practice",
|
|
36
|
+
"artifact": null,
|
|
37
|
+
"connector": null
|
|
38
|
+
},
|
|
39
|
+
"evidence": "documented",
|
|
40
|
+
"status": "active",
|
|
41
|
+
"phase_added": "define",
|
|
42
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
43
|
+
"conflicts_with": [],
|
|
44
|
+
"resolved_by": null,
|
|
45
|
+
"tags": ["hackathon", "scoring", "evidence-tier", "business-impact"]
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"id": "hbiz-003",
|
|
49
|
+
"type": "constraint",
|
|
50
|
+
"topic": "corroboration scoring",
|
|
51
|
+
"content": "Corroboration sub-score = witnessed_claims / total_claims * 100. Weight: 20%. Business decisions carry more weight when findings are corroborated by multiple independent sources.",
|
|
52
|
+
"source": {
|
|
53
|
+
"origin": "best-practice",
|
|
54
|
+
"artifact": null,
|
|
55
|
+
"connector": null
|
|
56
|
+
},
|
|
57
|
+
"evidence": "documented",
|
|
58
|
+
"status": "active",
|
|
59
|
+
"phase_added": "define",
|
|
60
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
61
|
+
"conflicts_with": [],
|
|
62
|
+
"resolved_by": null,
|
|
63
|
+
"tags": ["hackathon", "scoring", "corroboration", "business-impact"]
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "hbiz-004",
|
|
67
|
+
"type": "constraint",
|
|
68
|
+
"topic": "type diversity scoring",
|
|
69
|
+
"content": "Type diversity sub-score = (distinct_types / 6) * 100. Weight: 15%. Business-impactful research uses estimates (cost, timeline), risks, and constraints — not just facts.",
|
|
70
|
+
"source": {
|
|
71
|
+
"origin": "best-practice",
|
|
72
|
+
"artifact": null,
|
|
73
|
+
"connector": null
|
|
74
|
+
},
|
|
75
|
+
"evidence": "documented",
|
|
76
|
+
"status": "active",
|
|
77
|
+
"phase_added": "define",
|
|
78
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
79
|
+
"conflicts_with": [],
|
|
80
|
+
"resolved_by": null,
|
|
81
|
+
"tags": ["hackathon", "scoring", "type-diversity", "business-impact"]
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"id": "hbiz-005",
|
|
85
|
+
"type": "constraint",
|
|
86
|
+
"topic": "health scoring",
|
|
87
|
+
"content": "Health sub-score = max(0, (1 - warnings/total_claims) * 100). Weight: 10%. A clean compilation signals thoroughness — important when research informs business decisions.",
|
|
88
|
+
"source": {
|
|
89
|
+
"origin": "best-practice",
|
|
90
|
+
"artifact": null,
|
|
91
|
+
"connector": null
|
|
92
|
+
},
|
|
93
|
+
"evidence": "documented",
|
|
94
|
+
"status": "active",
|
|
95
|
+
"phase_added": "define",
|
|
96
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
97
|
+
"conflicts_with": [],
|
|
98
|
+
"resolved_by": null,
|
|
99
|
+
"tags": ["hackathon", "scoring", "health", "business-impact"]
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "hbiz-006",
|
|
103
|
+
"type": "recommendation",
|
|
104
|
+
"topic": "business impact signals",
|
|
105
|
+
"content": "Signals of business impact: (1) estimate claims with cost/timeline numbers, (2) constraint claims tied to real stakeholder requirements, (3) risk claims with mitigation strategies, (4) recommendations with clear ROI framing.",
|
|
106
|
+
"source": {
|
|
107
|
+
"origin": "best-practice",
|
|
108
|
+
"artifact": null,
|
|
109
|
+
"connector": null
|
|
110
|
+
},
|
|
111
|
+
"evidence": "stated",
|
|
112
|
+
"status": "active",
|
|
113
|
+
"phase_added": "define",
|
|
114
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
115
|
+
"conflicts_with": [],
|
|
116
|
+
"resolved_by": null,
|
|
117
|
+
"tags": ["hackathon", "business-signals", "business-impact"]
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"id": "hbiz-007",
|
|
121
|
+
"type": "factual",
|
|
122
|
+
"topic": "enterprise use cases",
|
|
123
|
+
"content": "High-business-impact wheat use cases: vendor evaluation (45-day process compressed to minutes), architecture decision records (weeks to minutes), compliance gap analysis (weeks to 20 minutes), security questionnaire prep (days to hours).",
|
|
124
|
+
"source": { "origin": "research", "artifact": null, "connector": null },
|
|
125
|
+
"evidence": "web",
|
|
126
|
+
"status": "active",
|
|
127
|
+
"phase_added": "research",
|
|
128
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
129
|
+
"conflicts_with": [],
|
|
130
|
+
"resolved_by": null,
|
|
131
|
+
"tags": ["hackathon", "enterprise", "time-savings", "business-impact"]
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"id": "hbiz-008",
|
|
135
|
+
"type": "recommendation",
|
|
136
|
+
"topic": "human judge criteria",
|
|
137
|
+
"content": "Human judges for 'Best Business Impact' score on: (1) decision clarity — could a VP act on this brief? (2) stakeholder awareness — are constraints from real decision-makers? (3) actionability — are next steps concrete with owners and timelines?",
|
|
138
|
+
"source": { "origin": "research", "artifact": null, "connector": null },
|
|
139
|
+
"evidence": "stated",
|
|
140
|
+
"status": "active",
|
|
141
|
+
"phase_added": "research",
|
|
142
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
143
|
+
"conflicts_with": [],
|
|
144
|
+
"resolved_by": null,
|
|
145
|
+
"tags": ["hackathon", "human-judging", "criteria", "business-impact"]
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"id": "hbiz-009",
|
|
149
|
+
"type": "risk",
|
|
150
|
+
"topic": "false precision",
|
|
151
|
+
"content": "Risk of false precision in business impact scoring: teams may add fake cost estimates or timelines to boost their 'estimate' claim count. Counter: human judges verify estimate plausibility in final round.",
|
|
152
|
+
"source": { "origin": "research", "artifact": null, "connector": null },
|
|
153
|
+
"evidence": "stated",
|
|
154
|
+
"status": "active",
|
|
155
|
+
"phase_added": "research",
|
|
156
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
157
|
+
"conflicts_with": [],
|
|
158
|
+
"resolved_by": null,
|
|
159
|
+
"tags": ["hackathon", "gaming", "false-precision", "risk"]
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"id": "hbiz-010",
|
|
163
|
+
"type": "factual",
|
|
164
|
+
"topic": "WildHacks normalization",
|
|
165
|
+
"content": "WildHacks (Northwestern) dual-normalization: adjusts for judge leniency and project quality variance. Raw scores scaled to 100, then normalized per-judge. Gold standard for fair multi-judge hackathon scoring.",
|
|
166
|
+
"source": {
|
|
167
|
+
"origin": "research",
|
|
168
|
+
"artifact": "https://guide.wildhacks.net/judging-and-awards/scoring-formula/",
|
|
169
|
+
"connector": null
|
|
170
|
+
},
|
|
171
|
+
"evidence": "web",
|
|
172
|
+
"status": "active",
|
|
173
|
+
"phase_added": "research",
|
|
174
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
175
|
+
"conflicts_with": [],
|
|
176
|
+
"resolved_by": null,
|
|
177
|
+
"tags": ["hackathon", "normalization", "wildhacks", "fairness"]
|
|
178
|
+
}
|
|
179
|
+
]
|
|
180
|
+
}
|
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Hackathon: Innovation Night",
|
|
3
|
+
"description": "Creative hackathon category pack for open-ended innovation events. Judging weights: 30% creativity, 25% novelty, 25% evidence quality, 20% feasibility. Rewards divergent thinking and cross-domain synthesis.",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"judging": {
|
|
6
|
+
"weights": {
|
|
7
|
+
"creativity": 0.3,
|
|
8
|
+
"novelty": 0.25,
|
|
9
|
+
"evidence": 0.25,
|
|
10
|
+
"feasibility": 0.2
|
|
11
|
+
},
|
|
12
|
+
"auto_score_dimensions": {
|
|
13
|
+
"creativity": {
|
|
14
|
+
"type_diversity": 0.35,
|
|
15
|
+
"recommendation_ratio": 0.3,
|
|
16
|
+
"cross_topic_breadth": 0.35
|
|
17
|
+
},
|
|
18
|
+
"novelty": {
|
|
19
|
+
"challenge_depth": 0.4,
|
|
20
|
+
"tag_diversity": 0.3,
|
|
21
|
+
"recommendation_ratio": 0.3
|
|
22
|
+
},
|
|
23
|
+
"evidence": {
|
|
24
|
+
"evidence_tier": 0.5,
|
|
25
|
+
"corroboration": 0.3,
|
|
26
|
+
"health": 0.2
|
|
27
|
+
},
|
|
28
|
+
"feasibility": {
|
|
29
|
+
"constraint_satisfaction": 0.4,
|
|
30
|
+
"estimate_claims_present": 0.3,
|
|
31
|
+
"risk_claims_present": 0.3
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"human_score_dimensions": [
|
|
35
|
+
"novelty_of_approach",
|
|
36
|
+
"synthesis_quality",
|
|
37
|
+
"practical_creativity"
|
|
38
|
+
],
|
|
39
|
+
"final_blend": {
|
|
40
|
+
"auto": 0.5,
|
|
41
|
+
"human": 0.5
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"claims": [
|
|
45
|
+
{
|
|
46
|
+
"id": "hin-001",
|
|
47
|
+
"type": "constraint",
|
|
48
|
+
"topic": "innovation night format",
|
|
49
|
+
"content": "Innovation Night is an open-ended creative hackathon format. Teams choose from themed challenge packs or propose their own research question. Output is a 3-minute demo pitch backed by a compiled wheat brief. The format rewards divergent thinking and cross-domain synthesis.",
|
|
50
|
+
"source": {
|
|
51
|
+
"origin": "stakeholder",
|
|
52
|
+
"artifact": null,
|
|
53
|
+
"connector": null
|
|
54
|
+
},
|
|
55
|
+
"evidence": "stated",
|
|
56
|
+
"status": "active",
|
|
57
|
+
"phase_added": "define",
|
|
58
|
+
"timestamp": "2026-03-21T00:00:00.000Z",
|
|
59
|
+
"conflicts_with": [],
|
|
60
|
+
"resolved_by": null,
|
|
61
|
+
"tags": ["hackathon", "innovation", "creative", "format"]
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"id": "hin-002",
|
|
65
|
+
"type": "constraint",
|
|
66
|
+
"topic": "creativity scoring",
|
|
67
|
+
"content": "Creativity is the dominant judging dimension at 30%. Scored across: (1) Type diversity — exploring problems from multiple angles (constraints, risks, estimates, recommendations). (2) Recommendation originality — actionable insights that propose novel combinations. (3) Cross-topic breadth — drawing from diverse knowledge domains to synthesize new understanding.",
|
|
68
|
+
"source": {
|
|
69
|
+
"origin": "best-practice",
|
|
70
|
+
"artifact": null,
|
|
71
|
+
"connector": null
|
|
72
|
+
},
|
|
73
|
+
"evidence": "documented",
|
|
74
|
+
"status": "active",
|
|
75
|
+
"phase_added": "define",
|
|
76
|
+
"timestamp": "2026-03-21T00:00:00.000Z",
|
|
77
|
+
"conflicts_with": [],
|
|
78
|
+
"resolved_by": null,
|
|
79
|
+
"tags": ["hackathon", "innovation", "creativity", "scoring"]
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"id": "hin-003",
|
|
83
|
+
"type": "constraint",
|
|
84
|
+
"topic": "novelty scoring",
|
|
85
|
+
"content": "Novelty is weighted at 25%. Scored across: (1) Challenge depth — questioning assumptions and resolving conflicting evidence. (2) Tag diversity — exploring across many distinct knowledge areas. (3) Recommendation ratio — generating original actionable insights rather than just collecting facts.",
|
|
86
|
+
"source": {
|
|
87
|
+
"origin": "best-practice",
|
|
88
|
+
"artifact": null,
|
|
89
|
+
"connector": null
|
|
90
|
+
},
|
|
91
|
+
"evidence": "documented",
|
|
92
|
+
"status": "active",
|
|
93
|
+
"phase_added": "define",
|
|
94
|
+
"timestamp": "2026-03-21T00:00:00.000Z",
|
|
95
|
+
"conflicts_with": [],
|
|
96
|
+
"resolved_by": null,
|
|
97
|
+
"tags": ["hackathon", "innovation", "novelty", "scoring"]
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"id": "hin-004",
|
|
101
|
+
"type": "constraint",
|
|
102
|
+
"topic": "evidence scoring",
|
|
103
|
+
"content": "Evidence quality is weighted at 25%. Even creative ideas need grounding. Scored across: (1) Evidence tier distribution — higher tiers show the team validated their creative ideas. (2) Corroboration — cross-referencing diverse sources is a hallmark of innovative research. (3) Health — clean compilation despite creative exploration.",
|
|
104
|
+
"source": {
|
|
105
|
+
"origin": "best-practice",
|
|
106
|
+
"artifact": null,
|
|
107
|
+
"connector": null
|
|
108
|
+
},
|
|
109
|
+
"evidence": "documented",
|
|
110
|
+
"status": "active",
|
|
111
|
+
"phase_added": "define",
|
|
112
|
+
"timestamp": "2026-03-21T00:00:00.000Z",
|
|
113
|
+
"conflicts_with": [],
|
|
114
|
+
"resolved_by": null,
|
|
115
|
+
"tags": ["hackathon", "innovation", "evidence", "scoring"]
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"id": "hin-005",
|
|
119
|
+
"type": "constraint",
|
|
120
|
+
"topic": "feasibility scoring",
|
|
121
|
+
"content": "Feasibility is weighted at 20%. Creative ideas must be implementable. Scored across: (1) Constraint satisfaction — does the sprint acknowledge real-world constraints? (2) Estimate claims — are there cost, timeline, or effort projections? (3) Risk claims — has the team considered what could go wrong?",
|
|
122
|
+
"source": {
|
|
123
|
+
"origin": "best-practice",
|
|
124
|
+
"artifact": null,
|
|
125
|
+
"connector": null
|
|
126
|
+
},
|
|
127
|
+
"evidence": "documented",
|
|
128
|
+
"status": "active",
|
|
129
|
+
"phase_added": "define",
|
|
130
|
+
"timestamp": "2026-03-21T00:00:00.000Z",
|
|
131
|
+
"conflicts_with": [],
|
|
132
|
+
"resolved_by": null,
|
|
133
|
+
"tags": ["hackathon", "innovation", "feasibility", "scoring"]
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"id": "hin-006",
|
|
137
|
+
"type": "recommendation",
|
|
138
|
+
"topic": "themed challenge packs",
|
|
139
|
+
"content": "Innovation Night should ship with themed creative challenge packs: (1) 'Moonshot' — solve a problem that seems impossible. (2) 'Cross-pollinate' — apply techniques from an unrelated domain. (3) 'Reverse engineer' — start with a desired outcome and work backward. (4) 'Constraint art' — maximum creativity under tight constraints. Themed challenges with creative constraints produce higher quality output than 'build anything'.",
|
|
140
|
+
"source": { "origin": "research", "artifact": null, "connector": null },
|
|
141
|
+
"evidence": "web",
|
|
142
|
+
"status": "active",
|
|
143
|
+
"phase_added": "research",
|
|
144
|
+
"timestamp": "2026-03-21T00:00:00.000Z",
|
|
145
|
+
"conflicts_with": [],
|
|
146
|
+
"resolved_by": null,
|
|
147
|
+
"tags": ["hackathon", "innovation", "themes", "challenge-packs"]
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"id": "hin-007",
|
|
151
|
+
"type": "recommendation",
|
|
152
|
+
"topic": "hybrid voting",
|
|
153
|
+
"content": "Innovation Night uses hybrid voting: peer voting for 'People's Choice' plus judge panel for category awards. Peer voting increases engagement among non-participants. Categories: Overall Popular Vote, Most Creative, Best Use of AI, Most Likely to Be Implemented.",
|
|
154
|
+
"source": {
|
|
155
|
+
"origin": "research",
|
|
156
|
+
"artifact": "https://info.devpost.com/blog/private-hackathon-voting",
|
|
157
|
+
"connector": null
|
|
158
|
+
},
|
|
159
|
+
"evidence": "web",
|
|
160
|
+
"status": "active",
|
|
161
|
+
"phase_added": "research",
|
|
162
|
+
"timestamp": "2026-03-21T00:00:00.000Z",
|
|
163
|
+
"conflicts_with": [],
|
|
164
|
+
"resolved_by": null,
|
|
165
|
+
"tags": ["hackathon", "innovation", "voting", "peer-voting"]
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"id": "hin-008",
|
|
169
|
+
"type": "risk",
|
|
170
|
+
"topic": "inclusion and accessibility",
|
|
171
|
+
"content": "Risk: evening/weekend hackathons exclude parents, caregivers, and anyone with work-life boundaries. Innovation Night template should explicitly offer async submission as an alternative, or run during protected work hours. Non-technical participants must not be disadvantaged — judge on insight quality, not tool proficiency.",
|
|
172
|
+
"source": { "origin": "research", "artifact": null, "connector": null },
|
|
173
|
+
"evidence": "web",
|
|
174
|
+
"status": "active",
|
|
175
|
+
"phase_added": "research",
|
|
176
|
+
"timestamp": "2026-03-21T00:00:00.000Z",
|
|
177
|
+
"conflicts_with": [],
|
|
178
|
+
"resolved_by": null,
|
|
179
|
+
"tags": ["hackathon", "innovation", "inclusion", "risk"]
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"id": "hin-009",
|
|
183
|
+
"type": "recommendation",
|
|
184
|
+
"topic": "demo format",
|
|
185
|
+
"content": "Standard demo format: 3-minute pitch covering (1) the problem — why does this matter? (2) the approach — what creative angle did you take? (3) the findings — what did you discover? (4) the evidence — how do you know? Demo-first, slides optional. The compiled wheat brief is the supporting artifact.",
|
|
186
|
+
"source": { "origin": "research", "artifact": null, "connector": null },
|
|
187
|
+
"evidence": "web",
|
|
188
|
+
"status": "active",
|
|
189
|
+
"phase_added": "research",
|
|
190
|
+
"timestamp": "2026-03-21T00:00:00.000Z",
|
|
191
|
+
"conflicts_with": [],
|
|
192
|
+
"resolved_by": null,
|
|
193
|
+
"tags": ["hackathon", "innovation", "demo", "presentation"]
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"id": "hin-010",
|
|
197
|
+
"type": "recommendation",
|
|
198
|
+
"topic": "human judge criteria",
|
|
199
|
+
"content": "Human judges for Innovation Night score on: (1) Novelty of approach — did the team explore an unexpected angle? (2) Synthesis quality — are diverse findings woven into coherent insight? (3) Practical creativity — are recommendations actionable and non-obvious?",
|
|
200
|
+
"source": { "origin": "research", "artifact": null, "connector": null },
|
|
201
|
+
"evidence": "stated",
|
|
202
|
+
"status": "active",
|
|
203
|
+
"phase_added": "research",
|
|
204
|
+
"timestamp": "2026-03-21T00:00:00.000Z",
|
|
205
|
+
"conflicts_with": [],
|
|
206
|
+
"resolved_by": null,
|
|
207
|
+
"tags": ["hackathon", "innovation", "human-judging", "criteria"]
|
|
208
|
+
}
|
|
209
|
+
]
|
|
210
|
+
}
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Hackathon: Most Innovative",
|
|
3
|
+
"description": "Scoring rubric and seed claims for the 'Most Innovative' hackathon category. Weights type diversity and recommendation ratio heavily — rewards creative, wide-ranging research with novel insights.",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"claims": [
|
|
6
|
+
{
|
|
7
|
+
"id": "hinn-001",
|
|
8
|
+
"type": "constraint",
|
|
9
|
+
"topic": "type diversity scoring",
|
|
10
|
+
"content": "Type diversity sub-score = (distinct_types / 6) * 100. Weight: 30% — the dominant factor. Innovative sprints explore problems from multiple angles: constraints, risks, estimates, recommendations, not just facts.",
|
|
11
|
+
"source": {
|
|
12
|
+
"origin": "best-practice",
|
|
13
|
+
"artifact": null,
|
|
14
|
+
"connector": null
|
|
15
|
+
},
|
|
16
|
+
"evidence": "documented",
|
|
17
|
+
"status": "active",
|
|
18
|
+
"phase_added": "define",
|
|
19
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
20
|
+
"conflicts_with": [],
|
|
21
|
+
"resolved_by": null,
|
|
22
|
+
"tags": ["hackathon", "scoring", "type-diversity", "most-innovative"]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"id": "hinn-002",
|
|
26
|
+
"type": "constraint",
|
|
27
|
+
"topic": "recommendation ratio scoring",
|
|
28
|
+
"content": "Recommendation ratio sub-score = (recommendation_claims / total_claims) * 100. Weight: 25%. Innovative sprints produce actionable insights, not just observations. High recommendation ratio signals original thinking.",
|
|
29
|
+
"source": {
|
|
30
|
+
"origin": "best-practice",
|
|
31
|
+
"artifact": null,
|
|
32
|
+
"connector": null
|
|
33
|
+
},
|
|
34
|
+
"evidence": "documented",
|
|
35
|
+
"status": "active",
|
|
36
|
+
"phase_added": "define",
|
|
37
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
38
|
+
"conflicts_with": [],
|
|
39
|
+
"resolved_by": null,
|
|
40
|
+
"tags": ["hackathon", "scoring", "recommendations", "most-innovative"]
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"id": "hinn-003",
|
|
44
|
+
"type": "constraint",
|
|
45
|
+
"topic": "evidence tier scoring",
|
|
46
|
+
"content": "Evidence tier sub-score uses weighted sum normalized to 0-100. Weight: 15%. Even innovative ideas need some grounding — but less weight than rigor category.",
|
|
47
|
+
"source": {
|
|
48
|
+
"origin": "best-practice",
|
|
49
|
+
"artifact": null,
|
|
50
|
+
"connector": null
|
|
51
|
+
},
|
|
52
|
+
"evidence": "documented",
|
|
53
|
+
"status": "active",
|
|
54
|
+
"phase_added": "define",
|
|
55
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
56
|
+
"conflicts_with": [],
|
|
57
|
+
"resolved_by": null,
|
|
58
|
+
"tags": ["hackathon", "scoring", "evidence-tier", "most-innovative"]
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"id": "hinn-004",
|
|
62
|
+
"type": "constraint",
|
|
63
|
+
"topic": "challenge depth scoring",
|
|
64
|
+
"content": "Challenge depth sub-score = (challenge_claims + resolved_conflicts) / total_claims * 100. Weight: 15%. Innovation often emerges from challenging assumptions and resolving conflicting viewpoints.",
|
|
65
|
+
"source": {
|
|
66
|
+
"origin": "best-practice",
|
|
67
|
+
"artifact": null,
|
|
68
|
+
"connector": null
|
|
69
|
+
},
|
|
70
|
+
"evidence": "documented",
|
|
71
|
+
"status": "active",
|
|
72
|
+
"phase_added": "define",
|
|
73
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
74
|
+
"conflicts_with": [],
|
|
75
|
+
"resolved_by": null,
|
|
76
|
+
"tags": ["hackathon", "scoring", "challenge-depth", "most-innovative"]
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"id": "hinn-005",
|
|
80
|
+
"type": "constraint",
|
|
81
|
+
"topic": "corroboration scoring",
|
|
82
|
+
"content": "Corroboration sub-score = witnessed_claims / total_claims * 100. Weight: 15%. Cross-referencing diverse sources is a hallmark of innovative research that synthesizes across domains.",
|
|
83
|
+
"source": {
|
|
84
|
+
"origin": "best-practice",
|
|
85
|
+
"artifact": null,
|
|
86
|
+
"connector": null
|
|
87
|
+
},
|
|
88
|
+
"evidence": "documented",
|
|
89
|
+
"status": "active",
|
|
90
|
+
"phase_added": "define",
|
|
91
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
92
|
+
"conflicts_with": [],
|
|
93
|
+
"resolved_by": null,
|
|
94
|
+
"tags": ["hackathon", "scoring", "corroboration", "most-innovative"]
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"id": "hinn-006",
|
|
98
|
+
"type": "recommendation",
|
|
99
|
+
"topic": "innovation signals",
|
|
100
|
+
"content": "Signals of innovation in a wheat sprint: (1) cross-domain tag diversity, (2) claims that bridge multiple topics, (3) recommendations that propose novel combinations, (4) challenges to conventional wisdom with evidence.",
|
|
101
|
+
"source": {
|
|
102
|
+
"origin": "best-practice",
|
|
103
|
+
"artifact": null,
|
|
104
|
+
"connector": null
|
|
105
|
+
},
|
|
106
|
+
"evidence": "stated",
|
|
107
|
+
"status": "active",
|
|
108
|
+
"phase_added": "define",
|
|
109
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
110
|
+
"conflicts_with": [],
|
|
111
|
+
"resolved_by": null,
|
|
112
|
+
"tags": ["hackathon", "innovation-signals", "most-innovative"]
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"id": "hinn-007",
|
|
116
|
+
"type": "risk",
|
|
117
|
+
"topic": "diversity gaming",
|
|
118
|
+
"content": "Teams may add shallow claims of all 6 types just to maximize diversity score. Counter: human judges in final round assess whether type usage is genuine (does the 'risk' claim identify a real risk?).",
|
|
119
|
+
"source": { "origin": "research", "artifact": null, "connector": null },
|
|
120
|
+
"evidence": "stated",
|
|
121
|
+
"status": "active",
|
|
122
|
+
"phase_added": "research",
|
|
123
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
124
|
+
"conflicts_with": [],
|
|
125
|
+
"resolved_by": null,
|
|
126
|
+
"tags": ["hackathon", "gaming", "type-diversity", "risk"]
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"id": "hinn-008",
|
|
130
|
+
"type": "factual",
|
|
131
|
+
"topic": "pointwise rubric evaluation",
|
|
132
|
+
"content": "Research on automated evaluation shows category-specific rubrics outperform generic rubrics. Each hackathon category needs its own weighted rubric — 'Most Innovative' values different signals than 'Most Rigorous'.",
|
|
133
|
+
"source": {
|
|
134
|
+
"origin": "research",
|
|
135
|
+
"artifact": "https://arxiv.org/html/2503.23989v1",
|
|
136
|
+
"connector": null
|
|
137
|
+
},
|
|
138
|
+
"evidence": "web",
|
|
139
|
+
"status": "active",
|
|
140
|
+
"phase_added": "research",
|
|
141
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
142
|
+
"conflicts_with": [],
|
|
143
|
+
"resolved_by": null,
|
|
144
|
+
"tags": ["hackathon", "rubric", "evaluation", "best-practice"]
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"id": "hinn-009",
|
|
148
|
+
"type": "recommendation",
|
|
149
|
+
"topic": "non-technical fairness",
|
|
150
|
+
"content": "Non-technical participants must not be disadvantaged. Guided mode + smart defaults normalize quality. Judge on output quality — insight depth and novelty — not tool proficiency.",
|
|
151
|
+
"source": {
|
|
152
|
+
"origin": "stakeholder",
|
|
153
|
+
"artifact": null,
|
|
154
|
+
"connector": null
|
|
155
|
+
},
|
|
156
|
+
"evidence": "stated",
|
|
157
|
+
"status": "active",
|
|
158
|
+
"phase_added": "define",
|
|
159
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
160
|
+
"conflicts_with": [],
|
|
161
|
+
"resolved_by": null,
|
|
162
|
+
"tags": ["hackathon", "fairness", "non-technical", "most-innovative"]
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"id": "hinn-010",
|
|
166
|
+
"type": "recommendation",
|
|
167
|
+
"topic": "human judge criteria",
|
|
168
|
+
"content": "Human judges for 'Most Innovative' score on: (1) novelty of approach — did the team explore an unexpected angle? (2) synthesis quality — are diverse findings woven into coherent insight? (3) practical creativity — are recommendations actionable and non-obvious?",
|
|
169
|
+
"source": { "origin": "research", "artifact": null, "connector": null },
|
|
170
|
+
"evidence": "stated",
|
|
171
|
+
"status": "active",
|
|
172
|
+
"phase_added": "research",
|
|
173
|
+
"timestamp": "2026-01-01T00:00:00.000Z",
|
|
174
|
+
"conflicts_with": [],
|
|
175
|
+
"resolved_by": null,
|
|
176
|
+
"tags": ["hackathon", "human-judging", "criteria", "most-innovative"]
|
|
177
|
+
}
|
|
178
|
+
]
|
|
179
|
+
}
|