@powerhousedao/academy 5.0.0-staging.9 → 5.0.1-staging.3

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.
Files changed (108) hide show
  1. package/.vscode/settings.json +1 -1
  2. package/CHANGELOG.md +404 -0
  3. package/README.md +3 -3
  4. package/babel.config.js +1 -1
  5. package/blog/BeyondCommunication-ABlueprintForDevelopment.md +25 -24
  6. package/blog/TheChallengeOfChange.md +21 -21
  7. package/docs/academy/01-GetStarted/00-ExploreDemoPackage.mdx +67 -30
  8. package/docs/academy/01-GetStarted/01-CreateNewPowerhouseProject.md +38 -21
  9. package/docs/academy/01-GetStarted/02-DefineToDoListDocumentModel.md +24 -19
  10. package/docs/academy/01-GetStarted/03-ImplementOperationReducers.md +44 -41
  11. package/docs/academy/01-GetStarted/04-BuildToDoListEditor.md +10 -10
  12. package/docs/academy/01-GetStarted/05-VetraStudio.md +164 -0
  13. package/docs/academy/01-GetStarted/06-ReactorMCP.md +58 -0
  14. package/docs/academy/01-GetStarted/home.mdx +185 -90
  15. package/docs/academy/01-GetStarted/images/Modules.png +0 -0
  16. package/docs/academy/01-GetStarted/images/VetraStudioDrive.png +0 -0
  17. package/docs/academy/01-GetStarted/styles.module.css +5 -5
  18. package/docs/academy/02-MasteryTrack/01-BuilderEnvironment/01-Prerequisites.md +46 -18
  19. package/docs/academy/02-MasteryTrack/01-BuilderEnvironment/02-StandardDocumentModelWorkflow.md +118 -68
  20. package/docs/academy/02-MasteryTrack/01-BuilderEnvironment/03-BuilderTools.md +75 -33
  21. package/docs/academy/02-MasteryTrack/01-BuilderEnvironment/_category_.json +6 -6
  22. package/docs/academy/02-MasteryTrack/02-DocumentModelCreation/01-WhatIsADocumentModel.md +30 -21
  23. package/docs/academy/02-MasteryTrack/02-DocumentModelCreation/02-SpecifyTheStateSchema.md +41 -37
  24. package/docs/academy/02-MasteryTrack/02-DocumentModelCreation/03-SpecifyDocumentOperations.md +29 -25
  25. package/docs/academy/02-MasteryTrack/02-DocumentModelCreation/04-UseTheDocumentModelGenerator.md +36 -37
  26. package/docs/academy/02-MasteryTrack/02-DocumentModelCreation/05-ImplementDocumentReducers.md +128 -109
  27. package/docs/academy/02-MasteryTrack/02-DocumentModelCreation/06-ImplementDocumentModelTests.md +95 -86
  28. package/docs/academy/02-MasteryTrack/02-DocumentModelCreation/07-ExampleToDoListRepository.md +7 -9
  29. package/docs/academy/02-MasteryTrack/02-DocumentModelCreation/_category_.json +6 -6
  30. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/01-BuildingDocumentEditors.md +65 -47
  31. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/02-ConfiguringDrives.md +77 -62
  32. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/03-BuildingADriveExplorer.md +360 -349
  33. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/06-DocumentTools/00-DocumentToolbar.mdx +16 -10
  34. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/06-DocumentTools/01-OperationHistory.md +10 -7
  35. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/06-DocumentTools/02-RevisionHistoryTimeline.md +25 -17
  36. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/06-DocumentTools/_category_.json +6 -6
  37. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/07-Authorization/01-RenownAuthenticationFlow.md +14 -7
  38. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/07-Authorization/02-Authorization.md +0 -1
  39. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/07-Authorization/_category_.json +5 -5
  40. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/_category_.json +1 -1
  41. package/docs/academy/02-MasteryTrack/04-WorkWithData/01-GraphQLAtPowerhouse.md +45 -33
  42. package/docs/academy/02-MasteryTrack/04-WorkWithData/02-UsingTheAPI.mdx +61 -18
  43. package/docs/academy/02-MasteryTrack/04-WorkWithData/03-UsingSubgraphs.md +50 -54
  44. package/docs/academy/02-MasteryTrack/04-WorkWithData/04-analytics-processor.md +126 -110
  45. package/docs/academy/02-MasteryTrack/04-WorkWithData/05-RelationalDbProcessor.md +75 -45
  46. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/GraphQL References/QueryingADocumentWithGraphQL.md +23 -21
  47. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/best-practices.md +9 -9
  48. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/graphql/index.md +11 -23
  49. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/graphql/integration.md +25 -9
  50. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/intro.md +10 -10
  51. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/typescript/benchmarks.md +1 -1
  52. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/typescript/index.md +16 -11
  53. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/typescript/memory.md +6 -5
  54. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/typescript/schema.md +2 -2
  55. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/typescript/utilities.md +7 -5
  56. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/use-cases/maker.md +32 -58
  57. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/use-cases/processors.md +1 -1
  58. package/docs/academy/02-MasteryTrack/04-WorkWithData/07-drive-analytics.md +105 -71
  59. package/docs/academy/02-MasteryTrack/04-WorkWithData/_ARCHIVE-AnalyticsProcessorTutorial/_01-SetupBuilderEnvironment.md +22 -0
  60. package/docs/academy/02-MasteryTrack/04-WorkWithData/_ARCHIVE-AnalyticsProcessorTutorial/_02-CreateNewPowerhouseProject.md +9 -8
  61. package/docs/academy/02-MasteryTrack/04-WorkWithData/_ARCHIVE-AnalyticsProcessorTutorial/_03-GenerateAnAnalyticsProcessor.md +28 -32
  62. package/docs/academy/02-MasteryTrack/04-WorkWithData/_ARCHIVE-AnalyticsProcessorTutorial/_04-UpdateAnalyticsProcessor.md +25 -26
  63. package/docs/academy/02-MasteryTrack/04-WorkWithData/_ARCHIVE-AnalyticsProcessorTutorial/_category_.json +1 -1
  64. package/docs/academy/02-MasteryTrack/04-WorkWithData/_category_.json +7 -7
  65. package/docs/academy/02-MasteryTrack/05-Launch/01-IntroductionToPackages.md +3 -4
  66. package/docs/academy/02-MasteryTrack/05-Launch/02-PublishYourProject.md +69 -45
  67. package/docs/academy/02-MasteryTrack/05-Launch/03-SetupEnvironment.md +70 -40
  68. package/docs/academy/02-MasteryTrack/05-Launch/04-ConfigureEnvironment.md +1 -0
  69. package/docs/academy/02-MasteryTrack/05-Launch/_category_.json +7 -7
  70. package/docs/academy/02-MasteryTrack/_category_.json +6 -6
  71. package/docs/academy/03-ExampleUsecases/Chatroom/02-CreateNewPowerhouseProject.md +5 -3
  72. package/docs/academy/03-ExampleUsecases/Chatroom/03-DefineChatroomDocumentModel.md +38 -37
  73. package/docs/academy/03-ExampleUsecases/Chatroom/04-ImplementOperationReducers.md +45 -41
  74. package/docs/academy/03-ExampleUsecases/Chatroom/05-ImplementChatroomEditor.md +14 -14
  75. package/docs/academy/03-ExampleUsecases/Chatroom/06-LaunchALocalReactor.md +6 -6
  76. package/docs/academy/03-ExampleUsecases/Chatroom/_category_.json +1 -1
  77. package/docs/academy/04-APIReferences/00-PowerhouseCLI.md +104 -43
  78. package/docs/academy/04-APIReferences/01-ReactHooks.md +177 -129
  79. package/docs/academy/04-APIReferences/04-RelationalDatabase.md +121 -113
  80. package/docs/academy/04-APIReferences/05-PHDocumentMigrationGuide.md +48 -41
  81. package/docs/academy/04-APIReferences/_category_.json +6 -6
  82. package/docs/academy/05-Architecture/00-PowerhouseArchitecture.md +1 -2
  83. package/docs/academy/05-Architecture/01-WorkingWithTheReactor.md +11 -8
  84. package/docs/academy/05-Architecture/05-DocumentModelTheory/_category_.json +1 -1
  85. package/docs/academy/05-Architecture/_category_.json +6 -6
  86. package/docs/academy/06-ComponentLibrary/00-DocumentEngineering.md +25 -23
  87. package/docs/academy/06-ComponentLibrary/02-CreateCustomScalars.md +105 -93
  88. package/docs/academy/06-ComponentLibrary/03-IntegrateIntoAReactComponent.md +1 -0
  89. package/docs/academy/06-ComponentLibrary/_category_.json +7 -7
  90. package/docs/academy/07-Cookbook.md +268 -35
  91. package/docs/academy/08-Glossary.md +7 -1
  92. package/docs/bookofpowerhouse/01-Overview.md +2 -2
  93. package/docs/bookofpowerhouse/02-GeneralFrameworkAndPhilosophy.md +1 -7
  94. package/docs/bookofpowerhouse/03-PowerhouseSoftwareArchitecture.md +10 -7
  95. package/docs/bookofpowerhouse/04-DevelopmentApproaches.md +10 -4
  96. package/docs/bookofpowerhouse/05-SNOsandANewModelForOSSandPublicGoods.md +23 -30
  97. package/docs/bookofpowerhouse/06-SNOsInActionAndPlatformEconomies.md +0 -7
  98. package/docusaurus.config.ts +64 -66
  99. package/package.json +9 -7
  100. package/scripts/generate-combined-cli-docs.ts +43 -13
  101. package/sidebars.ts +2 -0
  102. package/src/components/HomepageFeatures/index.tsx +171 -78
  103. package/src/components/HomepageFeatures/styles.module.css +1 -2
  104. package/src/css/custom.css +89 -89
  105. package/src/pages/_archive-homepage.tsx +17 -16
  106. package/src/theme/DocCardList/index.tsx +9 -8
  107. package/static.json +6 -6
  108. package/tsconfig.tsbuildinfo +1 -0
@@ -1,3 +1,3 @@
1
1
  {
2
2
  "svg.preview.background": "transparent"
3
- }
3
+ }
package/CHANGELOG.md CHANGED
@@ -1,3 +1,407 @@
1
+ ## 5.0.1-staging.3 (2025-10-27)
2
+
3
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
4
+
5
+ ## 5.0.1-staging.2 (2025-10-27)
6
+
7
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
8
+
9
+ ## 5.0.1-staging.1 (2025-10-27)
10
+
11
+ ### 🚀 Features
12
+
13
+ - **reactor-api:** updated apollo server to v5 ([66dffda7b](https://github.com/powerhouse-inc/powerhouse/commit/66dffda7b))
14
+ - add automated tests for vetra features ([#1962](https://github.com/powerhouse-inc/powerhouse/pull/1962))
15
+ - **reactor-browser:** remove catch all wildcard ([f09931a88](https://github.com/powerhouse-inc/powerhouse/commit/f09931a88))
16
+ - **renown:** added login button ([f109c7305](https://github.com/powerhouse-inc/powerhouse/commit/f109c7305))
17
+ - **builder-tools, ph-cli, connect:** reimplemented ph connect build and preview ([4f568517b](https://github.com/powerhouse-inc/powerhouse/commit/4f568517b))
18
+ - **vetra:** add open button to Package Information section ([#1930](https://github.com/powerhouse-inc/powerhouse/pull/1930))
19
+ - update @electric-sql/pglite version ([fa3529328](https://github.com/powerhouse-inc/powerhouse/commit/fa3529328))
20
+ - **reactor-browser,connect:** use new window function factory ([7886c284f](https://github.com/powerhouse-inc/powerhouse/commit/7886c284f))
21
+ - **vetra:** added read model to fetch vetra packages ([23c55364d](https://github.com/powerhouse-inc/powerhouse/commit/23c55364d))
22
+ - **monorepo:** use latest versions of react related deps ([#1905](https://github.com/powerhouse-inc/powerhouse/pull/1905))
23
+ - **monorepo:** remove global storybook installs ([#1903](https://github.com/powerhouse-inc/powerhouse/pull/1903))
24
+ - **monorepo:** update to react 19 ([#1902](https://github.com/powerhouse-inc/powerhouse/pull/1902))
25
+ - **vetra:** enabled HMR in dev mode ([8cf19757e](https://github.com/powerhouse-inc/powerhouse/commit/8cf19757e))
26
+ - **vetra:** new connect build setup on vetra ([8dd11a849](https://github.com/powerhouse-inc/powerhouse/commit/8dd11a849))
27
+ - **monorepo:** revert package versions ([8a1a02628](https://github.com/powerhouse-inc/powerhouse/commit/8a1a02628))
28
+ - **monorepo:** update eslint config ([ac97af97d](https://github.com/powerhouse-inc/powerhouse/commit/ac97af97d))
29
+ - adding feature flags to reactor-mcp ([fe4f2f683](https://github.com/powerhouse-inc/powerhouse/commit/fe4f2f683))
30
+ - stubbing out feature flag + reactor setup in connect and deleting unused code in reactor-browser ([793bbd7af](https://github.com/powerhouse-inc/powerhouse/commit/793bbd7af))
31
+ - syncing feature flag behavior between switchboard and reactor-local ([e45dc2bf7](https://github.com/powerhouse-inc/powerhouse/commit/e45dc2bf7))
32
+ - added initial pieces of the kysely operation store implementation ([3fbece162](https://github.com/powerhouse-inc/powerhouse/commit/3fbece162))
33
+ - **connect,builder-tools:** build rework ([#1871](https://github.com/powerhouse-inc/powerhouse/pull/1871))
34
+ - restructure document model to avoid circular imports ([#1874](https://github.com/powerhouse-inc/powerhouse/pull/1874))
35
+ - **monorepo:** rename tsc to tsc:build ([c1385418b](https://github.com/powerhouse-inc/powerhouse/commit/c1385418b))
36
+ - adding feature flag to switchboard for controlling reactorv2 api ([4486c8a8d](https://github.com/powerhouse-inc/powerhouse/commit/4486c8a8d))
37
+ - **monorepo:** empty commit to satisfy naming ([5aa18f417](https://github.com/powerhouse-inc/powerhouse/commit/5aa18f417))
38
+ - **monorepo:** merge main ([79f6472b1](https://github.com/powerhouse-inc/powerhouse/commit/79f6472b1))
39
+ - **monorepo:** update release branch workflow ([e9c221ab5](https://github.com/powerhouse-inc/powerhouse/commit/e9c221ab5))
40
+
41
+ ### 🩹 Fixes
42
+
43
+ - used fixed versions for codemirror dep ([183e487db](https://github.com/powerhouse-inc/powerhouse/commit/183e487db))
44
+ - **vetra:** added codegen debounce test and reduced logging ([bc360b8e0](https://github.com/powerhouse-inc/powerhouse/commit/bc360b8e0))
45
+ - add missing @openfeature/core peer dependency ([2c4a904b0](https://github.com/powerhouse-inc/powerhouse/commit/2c4a904b0))
46
+ - **codegen:** update graphql dependency in package.json ([257f368ac](https://github.com/powerhouse-inc/powerhouse/commit/257f368ac))
47
+ - **codegen:** update analytics processor imports to use in processor templates ([#1954](https://github.com/powerhouse-inc/powerhouse/pull/1954))
48
+ - **builder-tools:** declare @storybook/preview-api dependency ([705ac8da1](https://github.com/powerhouse-inc/powerhouse/commit/705ac8da1))
49
+ - lots of type fixes for modules ([8f4cf02fe](https://github.com/powerhouse-inc/powerhouse/commit/8f4cf02fe))
50
+ - test fix for document-drive package ([40f4b6416](https://github.com/powerhouse-inc/powerhouse/commit/40f4b6416))
51
+ - **monorepo:** re-add nx js plugin ([d477a49d7](https://github.com/powerhouse-inc/powerhouse/commit/d477a49d7))
52
+ - **monorepo:** regenerate lockfile ([7811171ff](https://github.com/powerhouse-inc/powerhouse/commit/7811171ff))
53
+ - **monorepo:** linting and type checking ([#1776](https://github.com/powerhouse-inc/powerhouse/pull/1776))
54
+
55
+ ### ❤️ Thank You
56
+
57
+ - acaldas @acaldas
58
+ - Benjamin Jordan (@thegoldenmule)
59
+ - Frank
60
+ - Guillermo Puente @gpuente
61
+ - Guillermo Puente Sandoval @gpuente
62
+ - Ryan Wolhuter @ryanwolhuter
63
+ - ryanwolhuter @ryanwolhuter
64
+
65
+ ## 4.1.0-dev.90 (2025-10-27)
66
+
67
+ ### 🚀 Features
68
+
69
+ - **reactor-api:** updated apollo server to v5 ([66dffda7b](https://github.com/powerhouse-inc/powerhouse/commit/66dffda7b))
70
+
71
+ ### ❤️ Thank You
72
+
73
+ - acaldas
74
+
75
+ ## 4.1.0-dev.89 (2025-10-24)
76
+
77
+ ### 🩹 Fixes
78
+
79
+ - used fixed versions for codemirror dep ([183e487db](https://github.com/powerhouse-inc/powerhouse/commit/183e487db))
80
+
81
+ ### ❤️ Thank You
82
+
83
+ - Guillermo Puente @gpuente
84
+
85
+ ## 4.1.0-dev.88 (2025-10-24)
86
+
87
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
88
+
89
+ ## 4.1.0-dev.87 (2025-10-24)
90
+
91
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
92
+
93
+ ## 4.1.0-dev.86 (2025-10-23)
94
+
95
+ ### 🩹 Fixes
96
+
97
+ - **vetra:** added codegen debounce test and reduced logging ([bc360b8e0](https://github.com/powerhouse-inc/powerhouse/commit/bc360b8e0))
98
+
99
+ ### ❤️ Thank You
100
+
101
+ - acaldas @acaldas
102
+
103
+ ## 4.1.0-dev.85 (2025-10-22)
104
+
105
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
106
+
107
+ ## 4.1.0-dev.84 (2025-10-22)
108
+
109
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
110
+
111
+ ## 4.1.0-dev.83 (2025-10-22)
112
+
113
+ ### 🚀 Features
114
+
115
+ - add automated tests for vetra features ([#1962](https://github.com/powerhouse-inc/powerhouse/pull/1962))
116
+
117
+ ### ❤️ Thank You
118
+
119
+ - Guillermo Puente Sandoval @gpuente
120
+
121
+ ## 4.1.0-dev.82 (2025-10-21)
122
+
123
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
124
+
125
+ ## 4.1.0-dev.81 (2025-10-21)
126
+
127
+ ### 🚀 Features
128
+
129
+ - **reactor-browser:** remove catch all wildcard ([f09931a88](https://github.com/powerhouse-inc/powerhouse/commit/f09931a88))
130
+ - **reactor-browser,connect:** use new window function factory ([7886c284f](https://github.com/powerhouse-inc/powerhouse/commit/7886c284f))
131
+
132
+ ### ❤️ Thank You
133
+
134
+ - ryanwolhuter @ryanwolhuter
135
+
136
+ ## 4.1.0-dev.80 (2025-10-21)
137
+
138
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
139
+
140
+ ## 4.1.0-dev.79 (2025-10-20)
141
+
142
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
143
+
144
+ ## 4.1.0-dev.78 (2025-10-20)
145
+
146
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
147
+
148
+ ## 4.1.0-dev.77 (2025-10-20)
149
+
150
+ ### 🩹 Fixes
151
+
152
+ - add missing @openfeature/core peer dependency ([2c4a904b0](https://github.com/powerhouse-inc/powerhouse/commit/2c4a904b0))
153
+
154
+ ### ❤️ Thank You
155
+
156
+ - acaldas @acaldas
157
+
158
+ ## 4.1.0-dev.76 (2025-10-18)
159
+
160
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
161
+
162
+ ## 4.1.0-dev.75 (2025-10-17)
163
+
164
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
165
+
166
+ ## 4.1.0-dev.74 (2025-10-15)
167
+
168
+ ### 🩹 Fixes
169
+
170
+ - **codegen:** update graphql dependency in package.json ([257f368ac](https://github.com/powerhouse-inc/powerhouse/commit/257f368ac))
171
+
172
+ ### ❤️ Thank You
173
+
174
+ - Guillermo Puente @gpuente
175
+
176
+ ## 4.1.0-dev.73 (2025-10-15)
177
+
178
+ ### 🚀 Features
179
+
180
+ - **renown:** added login button ([f109c7305](https://github.com/powerhouse-inc/powerhouse/commit/f109c7305))
181
+
182
+ ### ❤️ Thank You
183
+
184
+ - Frank
185
+
186
+ ## 4.1.0-dev.72 (2025-10-15)
187
+
188
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
189
+
190
+ ## 4.1.0-dev.71 (2025-10-15)
191
+
192
+ ### 🩹 Fixes
193
+
194
+ - **codegen:** update analytics processor imports to use in processor templates ([#1954](https://github.com/powerhouse-inc/powerhouse/pull/1954))
195
+
196
+ ### ❤️ Thank You
197
+
198
+ - Guillermo Puente Sandoval @gpuente
199
+
200
+ ## 4.1.0-dev.70 (2025-10-14)
201
+
202
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
203
+
204
+ ## 4.1.0-dev.69 (2025-10-11)
205
+
206
+ ### 🚀 Features
207
+
208
+ - **builder-tools, ph-cli, connect:** reimplemented ph connect build and preview ([4f568517b](https://github.com/powerhouse-inc/powerhouse/commit/4f568517b))
209
+
210
+ ### ❤️ Thank You
211
+
212
+ - acaldas @acaldas
213
+
214
+ ## 4.1.0-dev.68 (2025-10-11)
215
+
216
+ ### 🚀 Features
217
+
218
+ - **vetra:** added read model to fetch vetra packages ([abb6d3742](https://github.com/powerhouse-inc/powerhouse/commit/abb6d3742))
219
+
220
+ ### ❤️ Thank You
221
+
222
+ - Frank
223
+
224
+ ## 4.1.0-dev.67 (2025-10-10)
225
+
226
+ ### 🚀 Features
227
+
228
+ - **vetra:** add open button to Package Information section ([#1930](https://github.com/powerhouse-inc/powerhouse/pull/1930))
229
+
230
+ ### ❤️ Thank You
231
+
232
+ - Guillermo Puente Sandoval @gpuente
233
+
234
+ ## 4.1.0-dev.66 (2025-10-09)
235
+
236
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
237
+
238
+ ## 4.1.0-dev.65 (2025-10-09)
239
+
240
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
241
+
242
+ ## 4.1.0-dev.64 (2025-10-09)
243
+
244
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
245
+
246
+ ## 4.1.0-dev.63 (2025-10-09)
247
+
248
+ ### 🚀 Features
249
+
250
+ - update @electric-sql/pglite version ([fa3529328](https://github.com/powerhouse-inc/powerhouse/commit/fa3529328))
251
+
252
+ ### ❤️ Thank You
253
+
254
+ - acaldas @acaldas
255
+
256
+ ## 4.1.0-dev.62 (2025-10-08)
257
+
258
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
259
+
260
+ ## 4.1.0-dev.61 (2025-10-08)
261
+
262
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
263
+
264
+ ## 4.1.0-dev.60 (2025-10-08)
265
+
266
+ ### 🚀 Features
267
+
268
+ - **vetra:** added read model to fetch vetra packages ([23c55364d](https://github.com/powerhouse-inc/powerhouse/commit/23c55364d))
269
+ - **monorepo:** use latest versions of react related deps ([#1905](https://github.com/powerhouse-inc/powerhouse/pull/1905))
270
+ - **monorepo:** remove global storybook installs ([#1903](https://github.com/powerhouse-inc/powerhouse/pull/1903))
271
+ - **monorepo:** update to react 19 ([#1902](https://github.com/powerhouse-inc/powerhouse/pull/1902))
272
+ - **vetra:** enabled HMR in dev mode ([8cf19757e](https://github.com/powerhouse-inc/powerhouse/commit/8cf19757e))
273
+ - **vetra:** new connect build setup on vetra ([8dd11a849](https://github.com/powerhouse-inc/powerhouse/commit/8dd11a849))
274
+ - **monorepo:** revert package versions ([8a1a02628](https://github.com/powerhouse-inc/powerhouse/commit/8a1a02628))
275
+ - **monorepo:** update eslint config ([ac97af97d](https://github.com/powerhouse-inc/powerhouse/commit/ac97af97d))
276
+ - adding feature flags to reactor-mcp ([fe4f2f683](https://github.com/powerhouse-inc/powerhouse/commit/fe4f2f683))
277
+ - stubbing out feature flag + reactor setup in connect and deleting unused code in reactor-browser ([793bbd7af](https://github.com/powerhouse-inc/powerhouse/commit/793bbd7af))
278
+ - syncing feature flag behavior between switchboard and reactor-local ([e45dc2bf7](https://github.com/powerhouse-inc/powerhouse/commit/e45dc2bf7))
279
+ - added initial pieces of the kysely operation store implementation ([3fbece162](https://github.com/powerhouse-inc/powerhouse/commit/3fbece162))
280
+ - **connect,builder-tools:** build rework ([#1871](https://github.com/powerhouse-inc/powerhouse/pull/1871))
281
+ - **codegen:** updated editor boilerplate with document state and example setName dispatch ([3e7c51cc3](https://github.com/powerhouse-inc/powerhouse/commit/3e7c51cc3))
282
+ - restructure document model to avoid circular imports ([#1874](https://github.com/powerhouse-inc/powerhouse/pull/1874))
283
+ - added watch-packages option to vetra command and disabled dynamic package loading by default ([#1875](https://github.com/powerhouse-inc/powerhouse/pull/1875))
284
+
285
+ ### ❤️ Thank You
286
+
287
+ - acaldas @acaldas
288
+ - Benjamin Jordan (@thegoldenmule)
289
+ - Frank
290
+ - Guillermo Puente @gpuente
291
+ - Guillermo Puente Sandoval @gpuente
292
+ - Ryan Wolhuter @ryanwolhuter
293
+ - ryanwolhuter @ryanwolhuter
294
+
295
+ ## 4.1.0-dev.59 (2025-09-24)
296
+
297
+ ### 🚀 Features
298
+
299
+ - **monorepo:** rename tsc to tsc:build ([c1385418b](https://github.com/powerhouse-inc/powerhouse/commit/c1385418b))
300
+
301
+ ### 🩹 Fixes
302
+
303
+ - **builder-tools:** declare @storybook/preview-api dependency ([705ac8da1](https://github.com/powerhouse-inc/powerhouse/commit/705ac8da1))
304
+ - lots of type fixes for modules ([8f4cf02fe](https://github.com/powerhouse-inc/powerhouse/commit/8f4cf02fe))
305
+
306
+ ### ❤️ Thank You
307
+
308
+ - acaldas @acaldas
309
+ - Benjamin Jordan (@thegoldenmule)
310
+ - ryanwolhuter @ryanwolhuter
311
+
312
+ ## 4.1.0-dev.58 (2025-09-18)
313
+
314
+ ### 🚀 Features
315
+
316
+ - adding feature flag to switchboard for controlling reactorv2 api ([4486c8a8d](https://github.com/powerhouse-inc/powerhouse/commit/4486c8a8d))
317
+
318
+ ### 🩹 Fixes
319
+
320
+ - test fix for document-drive package ([40f4b6416](https://github.com/powerhouse-inc/powerhouse/commit/40f4b6416))
321
+
322
+ ### ❤️ Thank You
323
+
324
+ - Benjamin Jordan (@thegoldenmule)
325
+
326
+ ## 4.1.0-dev.57 (2025-09-17)
327
+
328
+ ### 🚀 Features
329
+
330
+ - **monorepo:** empty commit to satisfy naming ([5aa18f417](https://github.com/powerhouse-inc/powerhouse/commit/5aa18f417))
331
+ - **monorepo:** merge main ([79f6472b1](https://github.com/powerhouse-inc/powerhouse/commit/79f6472b1))
332
+ - **monorepo:** update release branch workflow ([e9c221ab5](https://github.com/powerhouse-inc/powerhouse/commit/e9c221ab5))
333
+
334
+ ### 🩹 Fixes
335
+
336
+ - **monorepo:** re-add nx js plugin ([d477a49d7](https://github.com/powerhouse-inc/powerhouse/commit/d477a49d7))
337
+ - **monorepo:** regenerate lockfile ([7811171ff](https://github.com/powerhouse-inc/powerhouse/commit/7811171ff))
338
+ - **monorepo:** linting and type checking ([#1776](https://github.com/powerhouse-inc/powerhouse/pull/1776))
339
+
340
+ ### ❤️ Thank You
341
+
342
+ - Ryan Wolhuter @ryanwolhuter
343
+ - ryanwolhuter @ryanwolhuter
344
+
345
+ ## 4.1.0-dev.56 (2025-09-17)
346
+
347
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
348
+
349
+ ## 4.1.0-dev.55 (2025-09-16)
350
+
351
+ ### 🚀 Features
352
+
353
+ - enable supported document types for drag and drop feature ([#1860](https://github.com/powerhouse-inc/powerhouse/pull/1860))
354
+
355
+ ### ❤️ Thank You
356
+
357
+ - Guillermo Puente Sandoval @gpuente
358
+
359
+ ## 4.1.0-dev.54 (2025-09-16)
360
+
361
+ ### 🚀 Features
362
+
363
+ - adding reactor client to subgraph args ([d0a8011e6](https://github.com/powerhouse-inc/powerhouse/commit/d0a8011e6))
364
+
365
+ ### ❤️ Thank You
366
+
367
+ - Benjamin Jordan (@thegoldenmule)
368
+
369
+ ## 4.1.0-dev.53 (2025-09-13)
370
+
371
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
372
+
373
+ ## 4.1.0-dev.52 (2025-09-12)
374
+
375
+ ### 🩹 Fixes
376
+
377
+ - **connect-e2e:** fix failing tests ([88c3bea94](https://github.com/powerhouse-inc/powerhouse/commit/88c3bea94))
378
+
379
+ ### ❤️ Thank You
380
+
381
+ - acaldas @acaldas
382
+
383
+ ## 4.1.0-dev.51 (2025-09-11)
384
+
385
+ ### 🚀 Features
386
+
387
+ - **reactor-api:** generate sdk ([ec107015c](https://github.com/powerhouse-inc/powerhouse/commit/ec107015c))
388
+ - **reactor-api:** initial gql codegen ([3db9e9778](https://github.com/powerhouse-inc/powerhouse/commit/3db9e9778))
389
+ - **monorepo:** make format consistent across ignores ([98469560f](https://github.com/powerhouse-inc/powerhouse/commit/98469560f))
390
+ - **monorepo:** use consistent separate type imports ([6fd4ac0f4](https://github.com/powerhouse-inc/powerhouse/commit/6fd4ac0f4))
391
+ - **monorepo:** use consistent formatting ([d2a1182c5](https://github.com/powerhouse-inc/powerhouse/commit/d2a1182c5))
392
+
393
+ ### 🩹 Fixes
394
+
395
+ - linting fixes ([27fe7d397](https://github.com/powerhouse-inc/powerhouse/commit/27fe7d397))
396
+ - annoyingly, you have to add ignores to the root eslint ([bb6d993bd](https://github.com/powerhouse-inc/powerhouse/commit/bb6d993bd))
397
+ - **docs:** improve document hooks documentation ([d05fcb835](https://github.com/powerhouse-inc/powerhouse/commit/d05fcb835))
398
+
399
+ ### ❤️ Thank You
400
+
401
+ - Benjamin Jordan (@thegoldenmule)
402
+ - Callme-T
403
+ - ryanwolhuter @ryanwolhuter
404
+
1
405
  ## 5.0.0-staging.9 (2025-09-09)
2
406
 
3
407
  This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Website
2
2
 
3
3
  This documentation website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator.
4
- To contribute to the documentation please work on a feature branch in case of big refactors, and build & serve before pushing to the development branch.
5
- Pushing from the dev branch to the main branch will trigger an auto deployment in Heroku for the staging deployment.
4
+ To contribute to the documentation please work on a feature branch in case of big refactors, and build & serve before pushing to the development branch.
5
+ Pushing from the dev branch to the main branch will trigger an auto deployment in Heroku for the staging deployment.
6
6
 
7
7
  ### Installation
8
8
 
@@ -16,7 +16,7 @@ $ npm install
16
16
  $ npm run dev
17
17
  ```
18
18
 
19
- This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server. The server will break upon broken links or big navigation/relinking.
19
+ This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server. The server will break upon broken links or big navigation/relinking.
20
20
 
21
21
  ### Build
22
22
 
package/babel.config.js CHANGED
@@ -1,3 +1,3 @@
1
1
  module.exports = {
2
- presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
2
+ presets: [require.resolve("@docusaurus/core/lib/babel/preset")],
3
3
  };
@@ -3,7 +3,7 @@ title: Beyond Communication - A Blueprint for Development
3
3
  description: GraphQL Schema’s as a common language for software design
4
4
  slug: Graphql-schema-as-a-common-language
5
5
  authors:
6
- - name: Call me T.
6
+ - name: Call me T.
7
7
  title: Product Manager at Powerhouse
8
8
  image_url: https://avatars.githubusercontent.com/u/148560082?v=4
9
9
  socials:
@@ -12,6 +12,7 @@ tags: [Design thinking, Tooling, Product, GraphQL, Schema's]
12
12
  image: https://i.imgur.com/mErPwqL.png
13
13
  hide_table_of_contents: false
14
14
  ---
15
+
15
16
  GraphQL Schema’s as a common language for software design, bridging the gaps between all stakeholders with the help of a single source of truth document model.
16
17
 
17
18
  <!-- truncate -->
@@ -26,7 +27,7 @@ GraphQL Schema’s as a common language for software design, bridging the gaps b
26
27
 
27
28
  #### For non-technical contributors, schemas offer a clear, readable map of how data flows through a system. Business analysts, product managers, and designers can quickly grasp the relationships between data types and operations without needing to dive into code. “**For developers, schemas serve as a contract, reducing ambiguity during implementation**”. Queries and mutations clearly define how data can be fetched or modified, leaving little room for misinterpretation.
28
29
 
29
- ####
30
+ ####
30
31
 
31
32
  #### By bringing clarity to these conversations, GraphQL fosters collaboration within cross-functional teams and accelerates onboarding for new contributors.
32
33
 
@@ -34,12 +35,12 @@ GraphQL Schema’s as a common language for software design, bridging the gaps b
34
35
 
35
36
  The utility of GraphQL schemas extends far beyond communication. They act as a blueprint that shapes every phase of the development lifecycle:
36
37
 
37
- * **Planning and Design**:
38
- * During the design phase, schemas enable teams to validate assumptions early. Data requirements and workflows can be reviewed collaboratively, ensuring alignment before development begins.
39
- * **Implementation**:
40
- * Developers use schemas as a definitive source of truth, minimizing the need for rework caused by unclear specifications.
41
- * **Testing and Maintenance**:
42
- * When the schema evolves, it highlights changes or inconsistencies, making it easier to adapt systems without breaking existing functionality.
38
+ - **Planning and Design**:
39
+ - During the design phase, schemas enable teams to validate assumptions early. Data requirements and workflows can be reviewed collaboratively, ensuring alignment before development begins.
40
+ - **Implementation**:
41
+ - Developers use schemas as a definitive source of truth, minimizing the need for rework caused by unclear specifications.
42
+ - **Testing and Maintenance**:
43
+ - When the schema evolves, it highlights changes or inconsistencies, making it easier to adapt systems without breaking existing functionality.
43
44
 
44
45
  The result is a smoother development process, where every stakeholder operates with a shared understanding of the system’s architecture.
45
46
 
@@ -49,9 +50,9 @@ GraphQL's design pairs naturally with the Command Query Responsibility Segregati
49
50
 
50
51
  In a CQRS-driven architecture:
51
52
 
52
- * **Queries** retrieve data efficiently.
53
- * **Mutations** handle data modifications.
54
- * **Subscriptions** enable real-time updates.
53
+ - **Queries** retrieve data efficiently.
54
+ - **Mutations** handle data modifications.
55
+ - **Subscriptions** enable real-time updates.
55
56
 
56
57
  GraphQL’s separation of these operations ensures clarity and scalability, especially in distributed systems. Developers can optimize read and write models independently, leading to improved performance and maintainability. This structured approach also simplifies troubleshooting and ensures a smoother evolution of complex systems.
57
58
 
@@ -59,12 +60,12 @@ GraphQL’s separation of these operations ensures clarity and scalability, espe
59
60
 
60
61
  GraphQL’s strong typing makes it a natural ally for TypeScript, a language known for its type safety and developer-friendly features. Together, they form a powerful combination that enhances developer experience and system reliability.
61
62
 
62
- * **Type Safety Across the Stack**:
63
- * Developers can auto-generate TypeScript types from GraphQL schemas, ensuring consistency between client and server. This reduces boilerplate code and eliminates many common runtime errors.
64
- * **Improved Developer Productivity**:
65
- * With type safety built into both the API and the client code, developers can catch potential issues during development, saving time and reducing bugs.
66
- * **Seamless Front-End Integrations**:
67
- * For front-end teams, GraphQL and TypeScript streamline the process of building data-driven applications, ensuring that APIs and components stay in sync.
63
+ - **Type Safety Across the Stack**:
64
+ - Developers can auto-generate TypeScript types from GraphQL schemas, ensuring consistency between client and server. This reduces boilerplate code and eliminates many common runtime errors.
65
+ - **Improved Developer Productivity**:
66
+ - With type safety built into both the API and the client code, developers can catch potential issues during development, saving time and reducing bugs.
67
+ - **Seamless Front-End Integrations**:
68
+ - For front-end teams, GraphQL and TypeScript streamline the process of building data-driven applications, ensuring that APIs and components stay in sync.
68
69
 
69
70
  This synergy results in cleaner, more reliable code and a significantly improved development experience.
70
71
 
@@ -72,12 +73,12 @@ This synergy results in cleaner, more reliable code and a significantly improved
72
73
 
73
74
  Beyond fostering better communication and aligning stakeholders, GraphQL drives efficiency in several key ways:
74
75
 
75
- * **Streamlined API Development**:
76
- * With its declarative queries, GraphQL eliminates over-fetching and under-fetching of data, allowing front-end teams to request only what they need.
77
- * **Empowered Non-Technical Contributors**:
78
- * The interactive nature of GraphQL schemas makes them accessible to non-technical stakeholders, enabling them to explore APIs independently and contribute more effectively to design discussions. The ‘lingua franca’ characteristic now truly starts to live up to its promises as designer or business analysts now can interact with the base schema and steer and discuss potential solutions together with the development team.
79
- * **Real-Time Introspection**:
80
- * Tools like GraphQL Playground allow teams to inspect and test APIs dynamically, making development and debugging faster and more collaborative.
76
+ - **Streamlined API Development**:
77
+ - With its declarative queries, GraphQL eliminates over-fetching and under-fetching of data, allowing front-end teams to request only what they need.
78
+ - **Empowered Non-Technical Contributors**:
79
+ - The interactive nature of GraphQL schemas makes them accessible to non-technical stakeholders, enabling them to explore APIs independently and contribute more effectively to design discussions. The ‘lingua franca’ characteristic now truly starts to live up to its promises as designer or business analysts now can interact with the base schema and steer and discuss potential solutions together with the development team.
80
+ - **Real-Time Introspection**:
81
+ - Tools like GraphQL Playground allow teams to inspect and test APIs dynamically, making development and debugging faster and more collaborative.
81
82
 
82
83
  These features combine to create a more agile, responsive development environment, where teams can adapt quickly to changing requirements.
83
84
 
@@ -85,4 +86,4 @@ These features combine to create a more agile, responsive development environmen
85
86
 
86
87
  The success of any software project hinges on clear communication and shared understanding. GraphQL schemas provide the common language that teams need to align around a unified vision. From clarifying data relationships to supporting scalable architectures, GraphQL empowers organizations to overcome the "lost in translation" problem and focus on what truly matters: building great products.
87
88
 
88
- For teams seeking to improve collaboration, efficiency, and scalability, GraphQL is more than a tool—it’s a framework for shared success,
89
+ For teams seeking to improve collaboration, efficiency, and scalability, GraphQL is more than a tool—it’s a framework for shared success,
@@ -1,9 +1,9 @@
1
1
  ---
2
2
  title: The Challenge of Change
3
- description: Rapid Application Development with document models.
3
+ description: Rapid Application Development with document models.
4
4
  slug: Rapid-Application-Development-with-document-models.
5
5
  authors:
6
- - name: Call me T.
6
+ - name: Call me T.
7
7
  title: Product Manager at Powerhouse
8
8
  image_url: https://avatars.githubusercontent.com/u/148560082?v=4
9
9
  socials:
@@ -12,6 +12,7 @@ tags: [Dao, Tooling]
12
12
  image: https://i.imgur.com/mErPwqL.png
13
13
  hide_table_of_contents: false
14
14
  ---
15
+
15
16
  ### **The Challenge of Change**
16
17
 
17
18
  The pace of innovation is relentless. Organizations today find themselves in a race to adapt to new technologies, shifting consumer demands, and evolving or opaque regulations. Yet, the traditional methods of building and maintaining software systems often lag behind the speed of change, creating bottlenecks that stifle growth and innovation.
@@ -20,10 +21,10 @@ The pace of innovation often outstrips an organization’s ability to adapt, kee
20
21
 
21
22
  <!-- truncate -->
22
23
 
23
- Across many industries, this comes down to a familiar struggle of common trade-offs in product and solution development.
24
+ Across many industries, this comes down to a familiar struggle of common trade-offs in product and solution development.
24
25
 
25
26
  **\- Speed vs. Accuracy:** The balance between haste or precision
26
- **\- Customizability vs. Scalability:** Meeting specific needs or relentless standardisation
27
+ **\- Customizability vs. Scalability:** Meeting specific needs or relentless standardisation
27
28
 
28
29
  As businesses push to innovate, they face a crucial question: how can they accelerate development without sacrificing quality or flexibility?
29
30
 
@@ -37,19 +38,18 @@ The answer lies in embracing methodologies that prioritize agility and adaptabil
37
38
 
38
39
  Key benefits of RAD include:
39
40
 
40
- * **Rapid Prototyping**: Organizations can quickly test ideas without committing to large-scale development, allowing for faster feedback and iteration.
41
- * **Iterative Development**: Instead of delivering a finished product all at once, RAD emphasizes incremental improvements, reducing the risk of misaligned expectations.
42
- * **Adaptability to Change**: By designing with flexibility in mind, RAD allows organizations to pivot and respond to new demands or challenges with ease.
43
-
44
- These principles have been widely embraced in industries ranging from DAO’s, incubators, tech startups to multinational corporations (in the case of the latter often with the help of a high ticket consultant). Other methodologies from adjacent domains of RAD, that you might be more familiar with include:
41
+ - **Rapid Prototyping**: Organizations can quickly test ideas without committing to large-scale development, allowing for faster feedback and iteration.
42
+ - **Iterative Development**: Instead of delivering a finished product all at once, RAD emphasizes incremental improvements, reducing the risk of misaligned expectations.
43
+ - **Adaptability to Change**: By designing with flexibility in mind, RAD allows organizations to pivot and respond to new demands or challenges with ease.
45
44
 
46
- * **Lean Start-up Methodology**: Focussing on finding product market fit early with a minimum viable product through a build, measure, learn cycle.
47
- * **Pre-totyping:** A method by Google's first engineering director focused on validating that you are building the ‘right it’ before you ‘build it’ right with the help of smoke tests or mock-ups.
48
- * **Design-thinking:** Where designers & developers go through non-linear, iterative processes of discovery, definition, development & delivery of their ideas with the help of prototyping together with end-users.
45
+ These principles have been widely embraced in industries ranging from DAO’s, incubators, tech startups to multinational corporations (in the case of the latter often with the help of a high ticket consultant). Other methodologies from adjacent domains of RAD, that you might be more familiar with include:
49
46
 
47
+ - **Lean Start-up Methodology**: Focussing on finding product market fit early with a minimum viable product through a build, measure, learn cycle.
48
+ - **Pre-totyping:** A method by Google's first engineering director focused on validating that you are building the ‘right it’ before you ‘build it’ right with the help of smoke tests or mock-ups.
49
+ - **Design-thinking:** Where designers & developers go through non-linear, iterative processes of discovery, definition, development & delivery of their ideas with the help of prototyping together with end-users.
50
50
 
51
51
  ![Iteration](./images/Iteration.png)
52
- *Figure 1: Notice how Design thinking, Lean Startup Methodology and Rapid Application Development all rely on tooling that put rapid iteration at the center of the methodology? It remains crucial to select the right tool with the correct prototype fidelity at any of the stages these methodologies prescribe*
52
+ _Figure 1: Notice how Design thinking, Lean Startup Methodology and Rapid Application Development all rely on tooling that put rapid iteration at the center of the methodology? It remains crucial to select the right tool with the correct prototype fidelity at any of the stages these methodologies prescribe_
53
53
 
54
54
  ---
55
55
 
@@ -57,9 +57,9 @@ These principles have been widely embraced in industries ranging from DAO’s, i
57
57
 
58
58
  Despite their success in simpler times, traditional development methodologies are currently often falling short in today’s dynamic environments.
59
59
 
60
- * **Long Lead Times**: Developing complex systems from scratch can take months or even years, by which time business requirements may have shifted.
61
- * **Limited Customization**: Off-the-shelf solutions may be fast to deploy but rarely align perfectly with an organization’s unique workflows.
62
- * **High Costs of Change**: Adjusting systems mid-development often incurs significant costs and delays, making organizations hesitant to pivot.
60
+ - **Long Lead Times**: Developing complex systems from scratch can take months or even years, by which time business requirements may have shifted.
61
+ - **Limited Customization**: Off-the-shelf solutions may be fast to deploy but rarely align perfectly with an organization’s unique workflows.
62
+ - **High Costs of Change**: Adjusting systems mid-development often incurs significant costs and delays, making organizations hesitant to pivot.
63
63
 
64
64
  To overcome these challenges, businesses need a new approach—one that combines speed, flexibility, and precision.
65
65
 
@@ -71,16 +71,16 @@ Powerhouse is proposing a framework built to address these very challenges, offe
71
71
 
72
72
  At the core of Powerhouse’s approach is its **document model-driven architecture**, a GraphQL schema based foundation that reimagines how data, workflows, and processes are structured. This architecture enables organizations to:
73
73
 
74
- * **Capture Data Effectively**: Modular document models allow organizations to define and adapt workflows with higher accuracy.
75
- * **Automate Workflows**: With tools to streamline even the most complex processes, so organizations can focus on innovation instead of repetitive tasks.
76
- * **Iterate and Evolve Rapidly**: Modular, reusable components reduce development times, enabling organizations to adapt to their most pressing challenges and changes.
74
+ - **Capture Data Effectively**: Modular document models allow organizations to define and adapt workflows with higher accuracy.
75
+ - **Automate Workflows**: With tools to streamline even the most complex processes, so organizations can focus on innovation instead of repetitive tasks.
76
+ - **Iterate and Evolve Rapidly**: Modular, reusable components reduce development times, enabling organizations to adapt to their most pressing challenges and changes.
77
77
 
78
78
  ---
79
79
 
80
80
  ### **From a front-end developers perspective**
81
81
 
82
- >“The coolest part is being able to plug into any document model and start building UI components for it without the hassle of managing a 'backend' or 'state management' for the components. All front-end devs use and love redux, the event driven architecture these document models are using. But the fact that as a front end dev, you don't have to set up any of it, and can just plug into the underlying framework saves time. It allows me to focus on my actual tasks \- building awesome UI components and experiences. I could start thinking of the same document model but with a 1000 different UI’s depending on the user's specific needs and preferences. Like swapping skins in my favorite video game”
82
+ > “The coolest part is being able to plug into any document model and start building UI components for it without the hassle of managing a 'backend' or 'state management' for the components. All front-end devs use and love redux, the event driven architecture these document models are using. But the fact that as a front end dev, you don't have to set up any of it, and can just plug into the underlying framework saves time. It allows me to focus on my actual tasks \- building awesome UI components and experiences. I could start thinking of the same document model but with a 1000 different UI’s depending on the user's specific needs and preferences. Like swapping skins in my favorite video game”
83
83
 
84
- The rapid application development process we’re setting up, allows us to move quicker from initial problem definition to potential prototype opens up time for designers and developers to actually test and iterate on their imagined solution.
84
+ The rapid application development process we’re setting up, allows us to move quicker from initial problem definition to potential prototype opens up time for designers and developers to actually test and iterate on their imagined solution.
85
85
 
86
86
  By prioritizing rapid, iterative development, Powerhouse aims to empower organizations to innovate faster, adapt more seamlessly, and achieve sustainable growth in even the most challenging environments.