PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / project-brief / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/project-brief/block.json

203 lines 5.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/project-brief",
5 "title": "Project Brief",
6 "description": "A structured project brief with goals, deliverables, stakeholders, risks, and budget.",
7 "category": "bkbg-blog",
8 "icon": "clipboard",
9 "keywords": [
10 "project",
11 "brief",
12 "plan",
13 "scope",
14 "deliverables",
15 "stakeholders",
16 "risks"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-project-brief-editor",
20 "editorStyle": "bkbg-project-brief-style",
21 "style": "bkbg-project-brief-style",
22 "viewScript": "bkbg-project-brief-frontend",
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "projectName": {
34 "type": "string",
35 "default": "Acme Platform Redesign"
36 },
37 "projectType": {
38 "type": "string",
39 "default": "Web Application"
40 },
41 "status": {
42 "type": "string",
43 "default": "active"
44 },
45 "client": {
46 "type": "string",
47 "default": "Acme Corporation"
48 },
49 "owner": {
50 "type": "string",
51 "default": "Jane Smith"
52 },
53 "startDate": {
54 "type": "string",
55 "default": "March 1, 2026"
56 },
57 "endDate": {
58 "type": "string",
59 "default": "August 31, 2026"
60 },
61 "showDates": {
62 "type": "boolean",
63 "default": true
64 },
65 "overview": {
66 "type": "string",
67 "default": "A complete redesign of the Acme customer-facing platform focusing on improved user experience, performance, and accessibility. The project encompasses UI/UX redesign, frontend rebuild, and integration with the new API layer."
68 },
69 "goals": {
70 "type": "array",
71 "default": [
72 "Reduce page load time by 40% across all core views",
73 "Achieve WCAG 2.1 AA accessibility compliance",
74 "Increase mobile conversion rate by 25%",
75 "Unify design system across 6 product areas"
76 ]
77 },
78 "deliverables": {
79 "type": "array",
80 "default": [
81 "Updated design system and component library",
82 "Redesigned customer portal (40+ screens)",
83 "Mobile-responsive checkout and onboarding flows",
84 "Performance audit report and optimisation",
85 "Accessibility audit and remediation"
86 ]
87 },
88 "stakeholders": {
89 "type": "array",
90 "default": [
91 {
92 "name": "Jane Smith",
93 "role": "Project Owner"
94 },
95 {
96 "name": "Tom Bradley",
97 "role": "Engineering Lead"
98 },
99 {
100 "name": "Sara Park",
101 "role": "Design Lead"
102 },
103 {
104 "name": "Mike Chen",
105 "role": "Client Sponsor"
106 }
107 ]
108 },
109 "risks": {
110 "type": "array",
111 "default": [
112 {
113 "risk": "API delays from third-party vendor",
114 "likelihood": "medium",
115 "impact": "high"
116 },
117 {
118 "risk": "Design scope creep across milestones",
119 "likelihood": "high",
120 "impact": "medium"
121 },
122 {
123 "risk": "Resource availability during Q2",
124 "likelihood": "low",
125 "impact": "medium"
126 }
127 ]
128 },
129 "budget": {
130 "type": "string",
131 "default": "$240,000"
132 },
133 "showBudget": {
134 "type": "boolean",
135 "default": true
136 },
137 "notes": {
138 "type": "string",
139 "default": ""
140 },
141 "showNotes": {
142 "type": "boolean",
143 "default": false
144 },
145 "titleTypo": {
146 "type": "object",
147 "default": {}
148 },
149 "bodyTypo": {
150 "type": "object",
151 "default": {}
152 },
153 "borderRadius": {
154 "type": "number",
155 "default": 12
156 },
157 "bgColor": {
158 "type": "string",
159 "default": "#ffffff"
160 },
161 "borderColor": {
162 "type": "string",
163 "default": "#e5e7eb"
164 },
165 "headerBg": {
166 "type": "string",
167 "default": "#0f172a"
168 },
169 "headerColor": {
170 "type": "string",
171 "default": "#ffffff"
172 },
173 "metaColor": {
174 "type": "string",
175 "default": "#94a3b8"
176 },
177 "sectionTitleColor": {
178 "type": "string",
179 "default": "#111827"
180 },
181 "bodyTextColor": {
182 "type": "string",
183 "default": "#374151"
184 },
185 "goalDotColor": {
186 "type": "string",
187 "default": "#3b82f6"
188 },
189 "delivDotColor": {
190 "type": "string",
191 "default": "#10b981"
192 },
193 "sectionBg": {
194 "type": "string",
195 "default": "#f8fafc"
196 },
197 "accentColor": {
198 "type": "string",
199 "default": "#3b82f6"
200 }
201 }
202 }
203