@snipcodeit/mgw 0.1.0

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.
@@ -0,0 +1,98 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "title": "Vision Brief",
4
+ "description": "Structured output from the vision-synthesizer agent. Represents the full project vision after the collaboration cycle.",
5
+ "type": "object",
6
+ "required": ["project_identity", "target_users", "core_value_proposition", "feature_categories", "success_metrics", "estimated_scope", "recommended_milestone_structure"],
7
+ "properties": {
8
+ "project_identity": {
9
+ "type": "object",
10
+ "required": ["name", "tagline", "domain"],
11
+ "properties": {
12
+ "name": { "type": "string", "description": "Short project name" },
13
+ "tagline": { "type": "string", "description": "One-line value statement" },
14
+ "domain": { "type": "string", "description": "Industry/domain (e.g. 'local services', 'developer tooling', 'healthcare')" }
15
+ }
16
+ },
17
+ "target_users": {
18
+ "type": "array",
19
+ "minItems": 1,
20
+ "items": {
21
+ "type": "object",
22
+ "required": ["persona", "needs", "pain_points"],
23
+ "properties": {
24
+ "persona": { "type": "string" },
25
+ "needs": { "type": "array", "items": { "type": "string" } },
26
+ "pain_points": { "type": "array", "items": { "type": "string" } }
27
+ }
28
+ }
29
+ },
30
+ "core_value_proposition": {
31
+ "type": "string",
32
+ "description": "1-2 sentences: who it's for, what it does, why it's different"
33
+ },
34
+ "feature_categories": {
35
+ "type": "object",
36
+ "required": ["must_have", "should_have", "could_have", "wont_have"],
37
+ "properties": {
38
+ "must_have": {
39
+ "type": "array",
40
+ "items": {
41
+ "type": "object",
42
+ "required": ["name", "description", "rationale"],
43
+ "properties": {
44
+ "name": { "type": "string" },
45
+ "description": { "type": "string" },
46
+ "rationale": { "type": "string", "description": "Why this is non-negotiable" }
47
+ }
48
+ }
49
+ },
50
+ "should_have": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" } } } },
51
+ "could_have": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" } } } },
52
+ "wont_have": {
53
+ "type": "array",
54
+ "items": {
55
+ "type": "object",
56
+ "required": ["name", "reason"],
57
+ "properties": {
58
+ "name": { "type": "string" },
59
+ "reason": { "type": "string", "description": "Explicit out-of-scope reasoning" }
60
+ }
61
+ }
62
+ }
63
+ }
64
+ },
65
+ "technical_constraints": {
66
+ "type": "array",
67
+ "items": { "type": "string" },
68
+ "description": "Hard constraints: tech stack requirements, platform targets, compliance needs"
69
+ },
70
+ "success_metrics": {
71
+ "type": "array",
72
+ "items": { "type": "string" },
73
+ "description": "Measurable definition of done for the full project"
74
+ },
75
+ "estimated_scope": {
76
+ "type": "object",
77
+ "required": ["milestones", "phases", "complexity"],
78
+ "properties": {
79
+ "milestones": { "type": "integer", "minimum": 1 },
80
+ "phases": { "type": "integer", "minimum": 1 },
81
+ "complexity": { "type": "string", "enum": ["small", "medium", "large", "enterprise"] }
82
+ }
83
+ },
84
+ "recommended_milestone_structure": {
85
+ "type": "array",
86
+ "minItems": 1,
87
+ "items": {
88
+ "type": "object",
89
+ "required": ["name", "focus", "deliverables"],
90
+ "properties": {
91
+ "name": { "type": "string", "description": "Milestone name (e.g. 'v1 — Foundation')" },
92
+ "focus": { "type": "string", "description": "What this milestone achieves" },
93
+ "deliverables": { "type": "array", "items": { "type": "string" } }
94
+ }
95
+ }
96
+ }
97
+ }
98
+ }