@powerhousedao/academy 0.1.0-dev.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.
Files changed (226) hide show
  1. package/.vscode/settings.json +3 -0
  2. package/CHANGELOG.md +9 -0
  3. package/Dockerfile +31 -0
  4. package/ProcFile +1 -0
  5. package/README.md +43 -0
  6. package/babel.config.js +3 -0
  7. package/blog/BeyondCommunication-ABlueprintForDevelopment.md +88 -0
  8. package/blog/TheChallengeOfChange.md +86 -0
  9. package/blog/images/Iteration.png +0 -0
  10. package/blog/images/RAD.png +0 -0
  11. package/docs/academy/01-GetStarted/00-GetStarted.mdx +181 -0
  12. package/docs/academy/01-GetStarted/01_InstallDemoPackage.md +38 -0
  13. package/docs/academy/01-GetStarted/02-ToDoList/01-CreateNewPowerhouseProject.md +97 -0
  14. package/docs/academy/01-GetStarted/02-ToDoList/02-DefineToDoListDocumentModel.md +86 -0
  15. package/docs/academy/01-GetStarted/02-ToDoList/03-ImplementOperationReducers.md +201 -0
  16. package/docs/academy/01-GetStarted/02-ToDoList/04-BuildToDoListEditor.md +494 -0
  17. package/docs/academy/01-GetStarted/02-ToDoList/_category_.json +8 -0
  18. package/docs/academy/01-GetStarted/02-ToDoList/images/DocumentModelHeader.png +0 -0
  19. package/docs/academy/01-GetStarted/02-ToDoList/images/DocumentModelOperations.png +0 -0
  20. package/docs/academy/01-GetStarted/02-ToDoList/images/OpenDocumentModelEditor.gif +0 -0
  21. package/docs/academy/01-GetStarted/02-ToDoList/images/completeEditor.png +0 -0
  22. package/docs/academy/01-GetStarted/02-ToDoList/images/connectApp.gif +0 -0
  23. package/docs/academy/01-GetStarted/02-ToDoList/images/form.png +0 -0
  24. package/docs/academy/01-GetStarted/02-ToDoList/images/mytodolist.gif +0 -0
  25. package/docs/academy/01-GetStarted/02-ToDoList/images/reducers.png +0 -0
  26. package/docs/academy/01-GetStarted/02-ToDoList/images/vscode.png +0 -0
  27. package/docs/academy/01-GetStarted/styles.module.css +99 -0
  28. package/docs/academy/02-AdvancedTutorial/01-Create/00-BuilderTools.md +234 -0
  29. package/docs/academy/02-AdvancedTutorial/01-Create/01-SetupBuilderEnvironment.md +247 -0
  30. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/04-UtilitiesAndTips.md +79 -0
  31. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/01-SetupBuilderEnvironment.md +216 -0
  32. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/02-CreateNewPowerhouseProject.md +78 -0
  33. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/03-DefineChatroomDocumentModel.md +139 -0
  34. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/04-ImplementOperationReducers.md +364 -0
  35. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/05-ImplementChatroomEditor.md +194 -0
  36. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/06-LaunchALocalReactor.md +15 -0
  37. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/_category_.json +8 -0
  38. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/image-1.png +0 -0
  39. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/image-2.png +0 -0
  40. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/image-3.png +0 -0
  41. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/image-4.png +0 -0
  42. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/image-5.png +0 -0
  43. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/image.png +0 -0
  44. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/images/ChatRoomConnectApp.gif +0 -0
  45. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/images/ChatRoomTest.gif +0 -0
  46. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/images/completeEditor.png +0 -0
  47. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/images/form.png +0 -0
  48. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/images/reducers.png +0 -0
  49. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/images/vscode.png +0 -0
  50. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/_category_.json +8 -0
  51. package/docs/academy/02-AdvancedTutorial/01-Create/02-StandardDocumentModelWorkflow.md +229 -0
  52. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/01-BuildingBeautifulDocumentEditors.md +109 -0
  53. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/02-ConfiguringDrives.md +51 -0
  54. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/03-BuildingADriveExplorer.md +174 -0
  55. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/01-OperationHistory.md +67 -0
  56. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/02-RevisionHistoryTimeline.md +132 -0
  57. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/_category_.json +7 -0
  58. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/images/committer-address-popup.png +0 -0
  59. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/images/revision-hash-popup.png +0 -0
  60. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/images/revision-history-list.png +0 -0
  61. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/images/signature-details-popup.png +0 -0
  62. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/_category_.json +8 -0
  63. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/images/CreateDrive.png +0 -0
  64. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/images/mytodolist.gif +0 -0
  65. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/01-ReadingAndWritingThroughTheAPI.mdx +121 -0
  66. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/02-GraphQLAtPowerhouse.md +156 -0
  67. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/03-WorkingWithSubgraphs/02-GraphQLAndSubgraphs.mdx +119 -0
  68. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/03-WorkingWithSubgraphs/03-WorkingWithSubgraphs.md +312 -0
  69. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/03-WorkingWithSubgraphs/_category_.json +8 -0
  70. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/04-analytics-processor.md +342 -0
  71. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/01-SetupBuilderEnvironment.md +215 -0
  72. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/02-CreateNewPowerhouseProject.md +55 -0
  73. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/03-GenerateAnAnalyticsProcessor.md +173 -0
  74. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/04-UpdateAnalyticsProcessor.md +223 -0
  75. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/_category_.json +8 -0
  76. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/images/Create-SPV.gif +0 -0
  77. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/images/Create-a-new-asset.png +0 -0
  78. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/images/Create-a-transaction.gif +0 -0
  79. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/images/Transaction-table.png +0 -0
  80. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/images/create-a-new-RWA-document.gif +0 -0
  81. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/images/granularity.png +0 -0
  82. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/GraphQL References/QueryingADocumentWithGraphQL.md +244 -0
  83. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/GraphQL References/rwa-reports/listener-raw.png +0 -0
  84. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/GraphQL References/rwa-reports/raw-reports1.png +0 -0
  85. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/GraphQL References/rwa-reports/raw-reports2.png +0 -0
  86. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/GraphQL References/rwa-reports/rwaRegister.png +0 -0
  87. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/apse.png +0 -0
  88. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/best-practices.md +60 -0
  89. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/filter.png +0 -0
  90. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/filteroptions.png +0 -0
  91. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/graphql/index.md +166 -0
  92. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/graphql/integration.md +75 -0
  93. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/dbs.png +0 -0
  94. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/high-level.jpg +0 -0
  95. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/indexeddb.png +0 -0
  96. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/libs-core.jpg +0 -0
  97. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/libs.jpg +0 -0
  98. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/lod.jpg +0 -0
  99. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/logo.png +0 -0
  100. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/navbar.png +0 -0
  101. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/overview-1.jpg +0 -0
  102. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/overview-2.jpg +0 -0
  103. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/overview-3.jpg +0 -0
  104. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/overview-4.jpg +0 -0
  105. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/overview-5.jpg +0 -0
  106. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/overview-6.jpg +0 -0
  107. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/paths-1.jpg +0 -0
  108. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/paths-2.jpg +0 -0
  109. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/intro.md +149 -0
  110. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/benchmarks.md +27 -0
  111. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/browser.md +77 -0
  112. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/compatibility.md +14 -0
  113. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/index.md +230 -0
  114. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/memory.md +72 -0
  115. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/pg.md +63 -0
  116. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/schema.md +14 -0
  117. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/utilities.md +102 -0
  118. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/use-cases/index.md +7 -0
  119. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/use-cases/maker.md +652 -0
  120. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/use-cases/processors.md +3 -0
  121. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/_category_.json +8 -0
  122. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/images/OperationHistory.png +0 -0
  123. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/images/OperationsQuery.png +0 -0
  124. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/images/QueryDocumentID.png +0 -0
  125. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/images/SwitchboardButton.png +0 -0
  126. package/docs/academy/02-AdvancedTutorial/05-Launch/00-IntegrateInAFront-End +3 -0
  127. package/docs/academy/02-AdvancedTutorial/05-Launch/01-IntroducingFusion +18 -0
  128. package/docs/academy/02-AdvancedTutorial/05-Launch/02-IntroductionToPackages.md +79 -0
  129. package/docs/academy/02-AdvancedTutorial/05-Launch/02-PublishYourProject.md +230 -0
  130. package/docs/academy/02-AdvancedTutorial/05-Launch/03-RunOnACloudServer.md +279 -0
  131. package/docs/academy/02-AdvancedTutorial/05-Launch/03-SetupEnvironment.md +436 -0
  132. package/docs/academy/02-AdvancedTutorial/05-Launch/04-GraphQLNamespacing +44 -0
  133. package/docs/academy/02-AdvancedTutorial/05-Launch/05-LaunchYourBackend.md +3 -0
  134. package/docs/academy/02-AdvancedTutorial/05-Launch/06-LaunchYourFrontend.md +3 -0
  135. package/docs/academy/02-AdvancedTutorial/05-Launch/_category_.json +8 -0
  136. package/docs/academy/02-AdvancedTutorial/05-Launch/images/SSHConnection.png +0 -0
  137. package/docs/academy/02-AdvancedTutorial/05-Launch/images/homedesign.png +0 -0
  138. package/docs/academy/02-AdvancedTutorial/05-Launch/images/keyconcepts.png +0 -0
  139. package/docs/academy/02-AdvancedTutorial/05-Launch/images/tutorialschema.png +0 -0
  140. package/docs/academy/02-AdvancedTutorial/06-Authorization/Authorization.md +100 -0
  141. package/docs/academy/02-AdvancedTutorial/_category_.json +7 -0
  142. package/docs/academy/03-APIReferences/00-PowerhouseCLI.md +1 -0
  143. package/docs/academy/03-APIReferences/_category_.json +7 -0
  144. package/docs/academy/04-ComponentLibrary/01-PowerhouseDesignSystem.md +94 -0
  145. package/docs/academy/04-ComponentLibrary/02-BuildingWithScalars.md +54 -0
  146. package/docs/academy/04-ComponentLibrary/03-Scalar-Components/01-phid-field.mdx +72 -0
  147. package/docs/academy/04-ComponentLibrary/03-Scalar-Components/02-input-field.mdx +0 -0
  148. package/docs/academy/04-ComponentLibrary/04-Complex-Components/01-sidebar.mdx +36 -0
  149. package/docs/academy/04-ComponentLibrary/05-Layout-Components/01-test-toupdate.mdx +61 -0
  150. package/docs/academy/04-ComponentLibrary/06-Fragments/01-test-toupdate.mdx +61 -0
  151. package/docs/academy/04-ComponentLibrary/_category_.json +8 -0
  152. package/docs/academy/05-Architecture/00-PowerhouseArchitecture.md +50 -0
  153. package/docs/academy/05-Architecture/01-WorkingWithTheReactor.md +48 -0
  154. package/docs/academy/05-Architecture/02-ReferencingMonorepoPackages +65 -0
  155. package/docs/academy/05-Architecture/04-MovingBeyondCRUD +61 -0
  156. package/docs/academy/05-Architecture/05-DocumentModelTheory/01-WhatIsADocumentModel.md +188 -0
  157. package/docs/academy/05-Architecture/05-DocumentModelTheory/02-DAOandDocumentsModelsQ+A.md +177 -0
  158. package/docs/academy/05-Architecture/05-DocumentModelTheory/02-domain-modeling.md +103 -0
  159. package/docs/academy/05-Architecture/05-DocumentModelTheory/03-BenefitsOfDocumentModels.md +95 -0
  160. package/docs/academy/05-Architecture/05-DocumentModelTheory/05-best-practices.md +257 -0
  161. package/docs/academy/05-Architecture/05-DocumentModelTheory/_category_.json +8 -0
  162. package/docs/academy/05-Architecture/05-DocumentModelTheory/three-data-layers.png +0 -0
  163. package/docs/academy/05-Architecture/_category_.json +7 -0
  164. package/docs/academy/05-Architecture/images/image.png +0 -0
  165. package/docs/academy/06-Cookbook.md +905 -0
  166. package/docs/academy/07-Glossary.md +50 -0
  167. package/docs/bookofpowerhouse/01-Overview.md +29 -0
  168. package/docs/bookofpowerhouse/02-GeneralFrameworkAndPhilosophy.md +15 -0
  169. package/docs/bookofpowerhouse/03-PowerhouseSoftwareArchitecture.md +33 -0
  170. package/docs/bookofpowerhouse/04-DevelopmentApproaches.md +36 -0
  171. package/docs/bookofpowerhouse/05-SNOsandANewModelForOSSandPublicGoods.md +73 -0
  172. package/docs/bookofpowerhouse/06-SNOsInActionAndPlatformEconomies.md +17 -0
  173. package/docs/renown/01-intro.md +18 -0
  174. package/docs/renown/02-renown-login-flow.md +60 -0
  175. package/docusaurus +0 -0
  176. package/docusaurus.config.ts +170 -0
  177. package/package.json +50 -0
  178. package/powerhouse-docs@0.0.0 +0 -0
  179. package/sidebars.ts +33 -0
  180. package/src/components/HomepageFeatures/index.tsx +250 -0
  181. package/src/components/HomepageFeatures/styles.module.css +267 -0
  182. package/src/css/custom.css +450 -0
  183. package/src/pages/index.module.css +37 -0
  184. package/src/pages/index.tsx +42 -0
  185. package/src/pages/markdown-page.md +7 -0
  186. package/static/.nojekyll +0 -0
  187. package/static/fonts/FranieBold.otf +0 -0
  188. package/static/fonts/FranieRegular.otf +0 -0
  189. package/static/img/Powerhouse Website Drive.png +0 -0
  190. package/static/img/Powerhouse Website Storage Layer (1).png +0 -0
  191. package/static/img/Powerhouse Website Storage Layer.png +0 -0
  192. package/static/img/Powerhouse-main-light.svg +13 -0
  193. package/static/img/Powerhouse-main.svg +13 -0
  194. package/static/img/Renown Intro Diagram.png +0 -0
  195. package/static/img/Union.svg +3 -0
  196. package/static/img/academy/icons/Advanced.svg +4 -0
  197. package/static/img/academy/icons/Book.svg +5 -0
  198. package/static/img/academy/icons/Cookbook.svg +3 -0
  199. package/static/img/academy/icons/Create.svg +3 -0
  200. package/static/img/academy/icons/Data.svg +3 -0
  201. package/static/img/academy/icons/Editor.svg +3 -0
  202. package/static/img/academy/icons/Flash.svg +3 -0
  203. package/static/img/academy/icons/Launch.svg +3 -0
  204. package/static/img/academy-icon.png +0 -0
  205. package/static/img/connect-icon.png +0 -0
  206. package/static/img/connect.png +0 -0
  207. package/static/img/docusaurus-social-card.jpg +0 -0
  208. package/static/img/docusaurus.png +0 -0
  209. package/static/img/empty-background.png +0 -0
  210. package/static/img/favicon.ico +0 -0
  211. package/static/img/fusion-icon.png +0 -0
  212. package/static/img/fusion.png +0 -0
  213. package/static/img/ph-icon-light.svg +3 -0
  214. package/static/img/powerhouse-layer.png +0 -0
  215. package/static/img/powerhouse-storage-layer.png +0 -0
  216. package/static/img/reactor.png +0 -0
  217. package/static/img/renown-icon.png +0 -0
  218. package/static/img/renown.png +0 -0
  219. package/static/img/switchboard-icon.png +0 -0
  220. package/static/img/switchboard.png +0 -0
  221. package/static/img/undraw_docusaurus_mountain.svg +171 -0
  222. package/static/img/undraw_docusaurus_react.svg +170 -0
  223. package/static/img/undraw_docusaurus_tree.svg +40 -0
  224. package/static/img/video-placeholder.svg +16 -0
  225. package/static.json +7 -0
  226. package/tsconfig.json +7 -0
@@ -0,0 +1,50 @@
1
+ # Glossary
2
+
3
+ ## General Terms
4
+ - **Powerhouse** – A network organization that provides open-source software and services to support decentralized operations for other network organizations.
5
+ - **Scalable Network Organization (SNO)** – A network organization structured according to the Powerhouse framework, designed for sustainable and scalable growth.
6
+
7
+ ## Organizational Concepts
8
+ - **Network Organization** – A group of independent contributors and teams working together towards a common purpose, relying on decentralization and resource sharing.
9
+ - **Keiretsu** – A Japanese term referring to networks of independent companies collaborating while maintaining their legal autonomy.
10
+ - **Mondragon Corporation** – A Spanish federation of worker cooperatives that exemplifies the network organization model.
11
+ - **Genesis Wrapper** – The initial legal entity representing a SNO, usually a Swiss Association that acts as a wrapper around the multisig wallet.
12
+
13
+ ## Governance & Legal
14
+ - **Proof of Work Tokens (POWts)** – A legal instrument used to measure opportunity costs for contributors in a SNO.
15
+ - **Multisig Participation Agreement (MPA)** – A contractual agreement regulating the responsibilities of multisig signers within the network.
16
+ - **Operational Hub (OH)** – An entity within the SNO responsible for managing contributors, contracts, and payments.
17
+
18
+ ## Technology & Framework
19
+ - **Powerhouse Framework** – A technical architecture designed to support SNOs by capturing data and automating processes.
20
+ - **CQRS (Command Query Responsibility Segregation)** – A pattern that separates read and write operations to improve scalability.
21
+ - **Event Sourcing** – A method of storing system state as a sequence of immutable events rather than modifying a single record.
22
+ - **Event-Driven Architecture (EDA)** – A software design approach where system flows are determined by events that trigger actions asynchronously.
23
+
24
+ ## Powerhouse Platforms
25
+ - **Dope** – A decentralized operations platform connecting finance, legal, governance, and people ops service providers with SNOs.
26
+ - **Modlr** – A builder platform that helps users create SNO software platforms using the Powerhouse framework.
27
+
28
+ ## Software Components
29
+ - **Reactor** – A storage node for Powerhouse documents and files with multiple storage adapters (local, cloud, decentralized).
30
+ - **Powerhouse Switchboard** – A scalable API service that aggregates and processes document data.
31
+ - **Powerhouse Fusion** – A platform front-end that hosts the public marketplace for SNO interactions.
32
+ - **Powerhouse Renown** – A decentralized authentication system managing contributor reputation.
33
+ - **Powerhouse Academy** – A training platform for onboarding and upskilling SNO contributors.
34
+ - **Powergrid** – A decentralized network of reactors that sync with each other.
35
+
36
+ ## Development & Data Modeling
37
+ - **Document Models** – Structured data models that define how Powerhouse documents store and process information.
38
+ - **Document Model Editors** – An interface or UI to a document model that allows users to create and modify the data captured by the document models.
39
+ - **Powerhouse Project** – A collection of document models, document model editors, and other resources being build in Connect Studio.
40
+ - **Host Applications** – Applications that use the Powerhouse framework to create and manage documents and data.
41
+ - **Packages** – A collection of document models, document model editors, and other resources that are published as a package and can be used in any of the host applications.
42
+ - **GraphQL Scalars** – Data types used in Powerhouse document modeling (e.g., `String`, `Int`, `Currency`, `OID` for unique object IDs).
43
+ - **NanoID** – A small, unique identifier used to reference objects within the Powerhouse framework.
44
+ - **Model-Driven Development (MDD)** – A software approach that uses high-level models to generate system logic and configurations.
45
+ - **Strands** – A single synchronization channel that connects exactly one unit of synchronization to another, with all four parameters (drive_url, doc_id, scope, branch) set to fixed values. This allows synchronization between two distinct points of instances of a document or document drive.
46
+
47
+ ## AI & Automation
48
+ - **AI Assistants** – AI-powered contributors paired with human contributors to automate tasks and improve productivity.
49
+ - **AI Contributor Modes** – Configurable states that determine the AI assistant’s behavior, permissions, and task focus.
50
+ - **Task Automation & Scaling** – The use of AI to streamline repetitive tasks, improve communications, and enhance decision-making.
@@ -0,0 +1,29 @@
1
+ # Overview
2
+
3
+ Powerhouse is an initiative at the intersection of software development, legal innovation, and new business models for open-source projects. These elements form a common vision for reimagining how software is created, funded, and sustained. While each component has its own purpose, they are deeply interconnected and designed to support one another.
4
+
5
+ <div style={{ margin: '20px 0', textAlign: 'center' }}>
6
+ <iframe
7
+ src="https://drive.google.com/file/d/125zalHkrfpEsunm4b_5q6cQEHSmDsOKc/preview"
8
+ frameBorder="0"
9
+ allow="autoplay; fullscreen"
10
+ allowFullScreen
11
+ title="Powerhouse Overview Video"
12
+ style={{
13
+ width: '100%',
14
+ maxWidth: '960px',
15
+ aspectRatio: '16 / 9',
16
+ borderRadius: '8px',
17
+ display: 'block',
18
+ margin: '0 auto'
19
+ }}
20
+ ></iframe>
21
+ </div>
22
+
23
+ Book of Powerhouse Outline:
24
+
25
+ 1. General Framework and Philosophy
26
+ 2. Powerhouse Software Architecture
27
+ 3. Technical Development Approaches
28
+ 4. SNOs as an extension of DAOs
29
+ 5. The Powerhouse Operations Platform
@@ -0,0 +1,15 @@
1
+ # Part 1: General Framework and Philosophy
2
+
3
+ Powerhouse emerged in the wake of Ethereum’s DAO movement, which began gaining momentum after the collapse of *The DAO* in 2016. This turning point spurred the creation of blockchain-enabled organizations capable of operating without centralized corporate structures. Over the years, governance systems and decentralized operational tools have advanced, paving the way for the next generation of organizations across chains like Solana, Ethereum Layer 2 solutions, and beyond. Powerhouse aims to advance these principles and build large, global organizations around networks.
4
+
5
+ ### Decentralized Operations and Collaboration
6
+ - Decentralization is central to Powerhouse’s philosophy. It extends beyond infrastructure to organizational design, enabling entities to function independently of centralized authorities. Just as Ethereum allows value to be transferred globally without intermediaries, **Powerhouse envisions organizations coordinating workflows without relying on traditional hierarchies or centralized services.**
7
+ - This marks a new era for decentralization—not just in the infrastructure we use, but in how organizations operate and how contributors collaborate. Instead of a traditional top-down hierarchy pursuing a singular vision, Powerhouse envisions a web of aligned, incentivized entities working together to build and deliver products and services. Powerhouse is designed to simplify the creation and assignment of workflows, empowering decentralized contributor networks to thrive.
8
+
9
+ ### Open Source and Transparency
10
+ - Open source lies at the heart of Powerhouse. By eliminating lock-in to centralized services, open-source software (OSS) creates trust within network organizations, as the codebase is accessible to all. Additionally, open-source ecosystems create an environment of rapid innovation and collaboration. Powerhouse goes beyond simply releasing software as open source—its legal infrastructure and innovative revenue models aim to make open-source development sustainable and investable at scale.
11
+ - Today’s organizations often operate as opaque black boxes, forcing consumers to trust that centralized entities aren’t extracting disproportionate value. Inspired by blockchain and DeFi’s transparency, Powerhouse promotes openness as a risk-lowering measure. In DeFi, collateral and liquidity are publicly verifiable on-chain. Similarly, Powerhouse encourages public scrutiny and contributions, where anyone can inspect, analyze, or build without needing permission.
12
+
13
+ ### Coordination at Massive Global Scale
14
+ - Scalable Network Organizations (SNOs), a concept pioneered by Powerhouse, go beyond DAOs by creating a coordinated network of specialized entities. These entities work together to pay service providers, generate revenue, manage IP, and enable strategic investments, all within a decentralized framework.
15
+ - Unlike traditional organizations, SNOs rely on decentralized ownership and operations, which makes them particularly well-suited for managing and growing software platforms with network effects. The corporate structures of the past were designed for a pre-digital world where networks were constrained by geography and jurisdiction. In today’s era of global communication and coordination, we need innovative structures and alignment mechanisms, such as SNOs, to support this new paradigm.
@@ -0,0 +1,33 @@
1
+ # Part 2: Powerhouse Software Architecture
2
+
3
+ Powerhouse’s software architecture is designed to empower scalable, decentralized organizations with a modular, layered approach. It uses document models as the core unit that used across three layers:
4
+ - the **Data Infrastructure Layer**, which handles secure storage and synchronization across local, cloud, and decentralized systems;
5
+ - the **Host Application Layer**, which provides contributor tools like Powerhouse Connect and Fusion;
6
+ - and the Customization **Layer**, enabling bespoke solutions for specific use cases.
7
+
8
+ ## Software Architecture
9
+
10
+ ### Document Models
11
+ - A **document model** is a structured representation of data and workflows that captures relationships, states, and operations within a system. By treating documents as dynamic entities that evolve over time, document models allow multiple people to contribute, make changes, and track progress in a flexible and transparent way. Document models are central to Powerhouse’s development approach, forming the backbone of adaptable workflows and versatile data management. In environments where contributors work asynchronously and systems must respond to evolving needs, document models provide the flexibility and responsiveness that traditional, static structures often lack.
12
+ - Building on this foundation, Powerhouse’s document models are designed to go beyond static data storage, encapsulating the complex relationships, states, and operations that drive decentralized workflows. Each document functions as a living entity, continuously evolving to reflect updates and interactions among contributors. This allows for:
13
+ - **Asynchronous Collaboration**: Contributors can work on documents without being bound by linear processes. For example, a task document can move through different states (e.g., draft, review, approved) based on specific triggers or events.
14
+ - **Customizable Processes**: Document models are highly adaptable, supporting unique workflows for different teams or organizations. This flexibility ensures that systems can address specialized requirements while maintaining overall consistency and transparency.
15
+ - **Event-Driven Updates**: By integrating with Powerhouse’s event-driven architecture, documents can respond to real-time changes, such as new data inputs or status updates, ensuring workflows remain efficient and responsive.
16
+
17
+ ### Three layers of Powerhouse
18
+ 1. **Data Infrastructure Layer -** This layer is responsible for data storage and synchronization, whether locally, in the cloud, or on decentralized storage networks like Ceramic or IPFS. It includes:
19
+ - **Reactor**: A storage node for documents and files, supporting multiple storage adapters for various environments.
20
+ - **Powerhouse Network Components**: services required to build scalable networks of Reactor nodes, such as event buses, queues, caching services, and load balancers.
21
+
22
+ 2. **Host Application Layer - t**his layer provides the tools to build apps and platforms using modular host applications. Each host application is an empty shell that gains functionality through plugins. The key host applications include:
23
+ - **Powerhouse Connect**: Tools for contributors to perform their roles with tailored plugins for document management.
24
+ - **Powerhouse Switchboard**: A scalable API service for aggregating data into operational, analytical, or other specialized read models.
25
+ - **Powerhouse Fusion**: Public-facing collaboration platforms or marketplaces for the SNO’s platform economy.
26
+ - **Powerhouse Renown**: Decentralized authentication and reputation management for contributors.
27
+ - **Powerhouse Academy**: Onboarding and training tools for contributors, offering tutorials and reputation badges.
28
+
29
+ 3. **Customization Layer - t**his layer consists of organization-specific plugins and instances of the host applications. It enables customization and deployment of unique platforms for each network organization. Examples include:
30
+ - **Connect Plugins**: Tailored apps for contributors.
31
+ - **Switchboard Plugins**: Aggregated data and API services.
32
+ - **Fusion Plugins**: Custom marketplaces and user-facing platforms.
33
+ - **Renown and Academy Plugins**: Contributor reputation systems and training resources.
@@ -0,0 +1,36 @@
1
+ # Part 3: Development Approaches
2
+
3
+ Powerhouse’s development approaches are designed to enable efficient, scalable, and innovative solutions for decentralized organizations. By drawing from blockchain principles, adopting Model-Driven Development (MDD), leveraging dynamic document models, and employing a Rapid Application Development (RAD) process, Powerhouse provides a comprehensive framework to address the unique challenges of decentralized systems.
4
+
5
+ These methodologies enhance collaboration, streamline workflows, and accelerate iteration cycles, empowering teams to design, implement, and adapt their solutions seamlessly while staying aligned with Powerhouse’s vision for sustainable and decentralized growth.
6
+
7
+ ### Blockchain principles applied to decentralized operations
8
+ - Powerhouse’s development approach draws inspiration from the principles of blockchain technology while adapting them to meet the specific needs of decentralized organizations. These principles heavily influence its architecture, blending blockchain’s strengths with practical adaptations for scalable operations.
9
+ - Powerhouse shares several core ideas with blockchain:
10
+ - **Immutability**: Like a blockchain, Powerhouse emphasizes immutable data records. Through event sourcing, every state change is preserved as an append-only event, ensuring transparent, auditable histories.
11
+ - **Decentralization**: Both systems operate without relying on a centralized authority. Powerhouse’s Document Synchronization Protocol (DocSync) does not rely on a centralized server but can run P2P. It is also storage agnostic, so there is no lock-in. Users have the option to rely on decentralized, centralized or local storage solutions.
12
+ - **Transparency**: Inspired by the visibility of blockchain transactions, Powerhouse ensures operational workflows and changes are traceable, which makes governance and accountability easier.
13
+ - While Powerhouse builds on blockchain principles, it diverges in key ways to address operational challenges:
14
+ - **Local Scalability**: Blockchain’s global consensus can limit speed and scalability. Powerhouse prioritizes local-first workflows, ensuring contributors can operate efficiently without requiring global synchronization.
15
+ - **Tailored Operations**: Unlike blockchain’s general-purpose design, Powerhouse’s architecture focuses on organizational needs, supporting custom workflows, dynamic governance, and flexible scaling.
16
+
17
+ ### Model-Driven Development & Rapid Application Development (RAD)
18
+ - Powerhouse leverages **Model-Driven Development (MDD)** and **Rapid Application Development (RAD)** to streamline the creation of scalable, decentralized systems.
19
+ - MDD enables cross-functional collaboration by using **abstract models** as blueprints for workflows, data, and system behaviors—similar to how GraphQL schemas unify API design. These models ensure alignment across teams, enable early validation, and support seamless system evolution. **Meta-models** extend this by automating code generation, documentation, and workflow updates, reducing manual effort and ensuring consistency.
20
+ - RAD accelerates development by eliminating backend complexity and leveraging **automated code generation**. Pre-built frameworks and reusable components let developers focus on UI/UX without managing backend logic. An **event-driven architecture** handles state and data sync, while document models serve as a **source of truth**, ensuring APIs, data structures, and front-end scaffolding stay in sync. Developers can rapidly iterate on tailored user experiences—akin to “swapping skins” in a game—without disrupting core functionality.
21
+
22
+
23
+ ### CQRS (Command Query Responsibility Segregation)
24
+ - CQRS, or Command Query Responsibility Segregation, is a key design principle in Powerhouse’s software architecture. It separates the responsibilities of handling write operations (commands) and read operations (queries) into distinct models, optimizing both for their specific purposes.
25
+ - In the Powerhouse framework:
26
+ - **Commands** handle operations that modify the state, such as creating or updating documents. These commands are validated and stored as events, forming the immutable history central to the system’s transparency and auditability.
27
+ - **Queries** are optimized for retrieving data, leveraging read models designed for performance, scalability, and flexibility. These models aggregate data from events to provide users with tailored insights, whether for analytics, search, or operational tasks.
28
+ - This separation offers significant advantages:
29
+ 1. **Scalability**: Write and read models can scale independently, allowing Powerhouse to support large decentralized organizations without performance bottlenecks.
30
+ 2. **Maintainability**: By isolating business logic (commands) from query logic, developers can iterate on one without affecting the other, ensuring the system evolves efficiently.
31
+ 3. **Flexibility**: Powerhouse supports multiple types of read models—such as operational databases, full-text search, and analytics—each tailored to specific organizational needs.
32
+
33
+ ### Event-driven Architectures (EDA)
34
+ - Event-Driven Architecture (EDA) is a foundational element of Powerhouse’s software philosophy, designed to create responsive, scalable systems that support asynchronous workflows. In EDA, events represent meaningful changes or actions, such as “Document Updated” or “Contributor Added,” and these events trigger reactions across the system in real time.
35
+ - EDA enables Powerhouse to design systems that are inherently responsive and scalable. By decoupling components, EDA allows systems to react to events independently, ensuring high availability and performance even as complexity grows. For example, when a document is updated, different processes like validation, notifications, and analytics generation can run in parallel without blocking each other. This architecture makes Powerhouse systems highly efficient in handling distributed operations, as it allows them to scale dynamically by adding or replicating components where needed. It also improves fault tolerance, as failures in one part of the system do not cascade to others due to the loosely coupled design.
36
+ - **Asynchronous Workflows -** EDA is particularly effective in supporting asynchronous workflows, which are critical for decentralized organizations. In this model, components communicate through events, eliminating the need for direct dependencies. This loose coupling enables workflows to operate flexibly, allowing different tasks to be executed simultaneously without blocking others. For instance, when a contributor submits work, separate processes—like task approval, logging, and analytics—can run independently, ensuring smoother coordination. Additionally, event histories can be replayed to debug workflows or audit past operations, providing transparency and traceability essential to decentralized systems.
@@ -0,0 +1,73 @@
1
+ # Part 4: SNOs and a new model for OSS and Public Goods
2
+
3
+ Decentralized Autonomous Organizations (DAOs) once promised to revolutionize global collaboration by enabling decentralized governance, transparent decision-making, and equitable ownership. However, the reality has often fallen short. DAOs have struggled with legal ambiguity, resource allocation inefficiencies, and broken incentive structures. These challenges have stifled their ability to scale and compete with centralized organizations.
4
+
5
+ Scalable Network Organizations (SNOs) emerge as the next evolutionary step. Combining the principles of decentralization with the operational rigor of traditional organizations, SNOs provide a structured framework for decentralized governance, sustainable operations, and global scalability. Powerhouse’s vision for SNOs aims to deliver on the original promise of DAOs, empowering organizations to scale without sacrificing their decentralized principles.
6
+
7
+ ### Core Components of SNOs
8
+
9
+ At the heart of Scalable Network Organizations (SNOs) are five entities, each fulfilling a critical role in scaling decentralized operations. From governance to funding and IP management, these components work together to ensure alignment, collaboration, and financial sustainability.
10
+
11
+ - **DAO**
12
+ - The DAO is the governing entity responsible for setting the strategic vision and ensuring alignment across the SNO. Through on-chain governance mechanisms powered by smart contracts, the DAO facilitates transparent decision-making, distributed ownership, and accountability. Members participate in proposing and voting on budgets, initiatives, and key operational decisions, creating a decentralized system where authority is widely distributed rather than concentrated in a single entity.
13
+ - By maintaining immutable records and eliminating the need for intermediaries, the DAO supports scalable and adaptable governance structures that suit decentralized networks. Its ability to flexibly adapt rules and processes ensures that the SNO remains efficient and innovative as it grows, while retaining the values of transparency and inclusivity.
14
+ - **Operational Hub (OH)**
15
+ - The Operational Hub acts as the administrative core of the SNO, handling contributor relationships, compliance, and payment processing. By leveraging legal structures like Swiss Associations, the OH ensures contributors are protected from liability while enabling the SNO to interact with banks, vendors, and regulatory entities. This hub simplifies complex operations such as tax reporting, cross-border compliance, and contributor agreements, removing these burdens from individual participants.
16
+ - The Operational Hub acts as the administrative core of the SNO, handling contributor relationships, compliance, and payment processing. By leveraging legal structures like Swiss Associations, the OH ensures contributors are protected from liability while enabling the SNO to interact with banks, vendors, and regulatory entities. This hub simplifies complex operations such as tax reporting, cross-border compliance, and contributor agreements, removing these burdens from individual participants.
17
+ - **Operational Collateral Fund (OCF)**
18
+ - The OCF provides the financial infrastructure to fuel the SNO’s growth. It allocates resources to high-potential initiatives and rewards contributors by issuing Proof of Work Tokens (POWTs). These tokens align incentives by linking compensation to measurable contributions, ensuring that individuals and teams are motivated to create long-term value. POWTs represent a stake in the success of the network, making contributors invested in the outcomes of the projects they support.
19
+ - Beyond its internal role, the OCF also attracts external investment by offering structured opportunities for funding impactful projects within the network. By maintaining transparency in its allocation processes and linking funding to measurable outputs, the OCF builds trust among both contributors and investors, creating a virtuous cycle where capital supports meaningful innovation.
20
+ - **Revenue Generating Hub (RGH)**
21
+ - The RGH is the SNO’s commercial interface, enabling the network to generate sustainable revenue while maintaining its decentralized principles. It manages licensing agreements, product sales, and customer-facing activities, ensuring that all revenue-generating operations align with the broader goals set by the DAO. By addressing the regulatory complexities associated with handling fiat revenue or contractual obligations, the RGH provides a seamless bridge between decentralized networks and traditional market systems.
22
+ - The RGH supports multiple revenue streams, including enterprise licensing for proprietary versions of open-source software, subscription models for SaaS offerings, and consulting services tailored to client needs. A portion of the revenue collected flows back into the ecosystem, funding operations, rewarding contributors through the OCF, and sustaining the open-source projects that drive the SNO’s long-term success.
23
+ - **IP-Holding Entity (IPSPV)**
24
+ - The IP-Holding Entity safeguards the SNO’s intellectual property assets, including trademarks, copyrights, and other IP rights. It is responsible for enforcing licensing agreements and ensuring that the use of the network’s IP aligns with governance decisions made by the DAO. By employing a dual licensing model, the IPSPV supports open-source availability through copyleft licenses while generating revenue from enterprise licenses, allowing businesses to use proprietary versions of the SNO’s software.
25
+ - The IPSPV also plays a critical role in protecting the network’s creative assets from exploitation or infringement. It ensures that the IP is managed as a collective resource, aligned with the community’s mission and values, while providing a steady revenue stream for reinvestment into the ecosystem. By separating IP management from operational activities, the IPSPV ensures that the SNO remains focused on innovation without losing control of its most valuable assets.
26
+
27
+ ### **Legal Foundations for SNOs**
28
+
29
+ Legal structures are crucial for the success of SNOs, providing clarity, compliance, and protection.
30
+
31
+ - **Multisig Participation Agreements (MPAs)**
32
+
33
+ MPAs are a foundational legal tool within the SNO framework. These agreements define the roles and responsibilities of multisig wallet signers, ensuring accountability and mitigating internal liability risks. By formalizing governance processes, MPAs reduce the chaos and inefficiency often associated with decentralized decision-making. They also protect contributors by clarifying liability boundaries, preventing signers from inadvertently exposing themselves to legal risks.
34
+
35
+ MPAs are fully customizable, allowing SNOs to adapt them to their specific operational needs. They integrate seamlessly with Gnosis Safe wallets, creating a transparent and secure environment for managing resources.
36
+
37
+ - **Swiss Associations**
38
+
39
+ Swiss Associations offer a flexible and cost-effective legal wrapper for early-stage SNOs. These entities provide liability protection, separate legal personhood, and the ability to engage in commercial activities that support the SNO’s mission. Notably, Swiss Associations do not require registration, preserving privacy while maintaining compliance. Their reputation as part of Switzerland’s crypto-friendly regulatory environment makes them ideal for DAOs transitioning into SNOs. These are typically used as legal structures for the OCR and IPSPV, while the OH and RGH may be Swiss foundations but their jurisdiction is likely determined by where inbound and outbound payments are taking place.
40
+
41
+ - **Open Source Legal Templates**
42
+
43
+ Powerhouse has developed a library of open-source legal templates to simplify the setup and operation of SNO entities. These templates include Contributor Agreements, MPAs, and licensing contracts, reducing the complexity and cost of navigating legal requirements. By standardizing these processes, Powerhouse enables SNOs to focus on innovation and growth.
44
+
45
+
46
+ ### Financial Sustainability and Growing SNOs
47
+
48
+ SNOs leverage innovative financial mechanisms to incentivize contributions and ensure sustainability. **Contributor Proof of Work Tokens (POWTs)** are a mechanism in the Powerhouse ecosystem that acknowledge and quantify contributions to open-source public goods. They serve as both a **record of work done** and a **unit for potential future value capture**, ensuring contributors are recognized and fairly compensated within Scalable Network Organizations (SNOs).
49
+
50
+ - **Aligning Incentives for Long-Term Value Creation**
51
+
52
+ POWTs ensure that contributors to open-source public goods receive recognition and potential future upside when their work enables successful projects. By retroactively distributing revenue from monetized components, POWTs create a self-sustaining funding loop, reducing dependence on grants or donations. Multipliers further incentivize contributions to high-impact, long-term infrastructure, ensuring that even foundational work—often undervalued in traditional models—receives proper recognition and financial participation.
53
+
54
+ - **Efficient Compensation & Scalable Contribution Tracking**
55
+
56
+ Instead of outdated timelogs, POWTs offer a transparent, structured accounting model that ties contributions directly to project components. Contributors receive compensation as a mix of cash and POWTs, with opportunity cost calculations ensuring fair valuation. POWTs act as on-chain attestations, enabling clear tracking of work history, efficient resource allocation, and dynamic revenue-sharing mechanisms that scale with the ecosystem’s growth. This structured approach streamlines financial operations across Scalable Network Organizations (SNOs).
57
+
58
+ - **Building Sustainable, Reputation-Driven Network Organizations**
59
+
60
+ POWTs reinforce decentralized governance by embedding reputation and financial sustainability into the ecosystem. Contributors accumulate POWTs as proof of their impact, unlocking higher compensation tiers, governance privileges, and access to new opportunities. Since POWTs are non-transferable but convertible into Investor POWTs, they balance incentive alignment with long-term network resilience. This model attracts builders, investors, and organizations to SNOs by ensuring that contributions are rewarded while keeping the system free from short-term speculation.
61
+
62
+
63
+ ### IP Management
64
+
65
+ Intellectual property management is a cornerstone of SNOs, ensuring that contributions remain open and accessible while generating revenue.
66
+
67
+ - **Dual Licensing Model**
68
+
69
+ SNOs use a dual licensing approach to balance openness and monetization. A copyleft license governs the open-source version, requiring derivative works to remain open-source. Enterprise licenses allow proprietary use, generating revenue for the ecosystem.
70
+
71
+ - **IP-Holding Entity**
72
+
73
+ The IPSPV serves as the guardian of intellectual property, managing licenses and defending against infringement. Structured as a neutral, autonomous entity, the IPSPV ensures that IP remains aligned with the SNO’s mission while facilitating revenue generation through licensing agreements.
@@ -0,0 +1,17 @@
1
+ # Part 5: SNOs in action and platform economies
2
+
3
+ The **Powerhouse Operations Platform** is the core infrastructure that enables **Scalable Network Organizations (SNOs)** to function efficiently. It streamlines operations by integrating automated workflows, smart contracts, and model-driven development, ensuring efficient and transparent collaboration across distributed teams.
4
+
5
+ - The Powerhouse Operations Platform
6
+ - **Payments & Compensation Management -** The platform facilitates seamless compensation processing by enabling contributors to receive payments in a structured and verifiable manner. It automates invoicing, integrates with fiat and crypto payment systems, and ensures compliance with contributor agreements. This eliminates manual overhead while maintaining clear records of work completed and payments disbursed.
7
+ - **Intellectual Property & Contribution Tracking -** To support open-source and collaborative innovation, the platform provides tools for managing IP ownership, licensing, and contribution history. It ensures that contributors are properly attributed for their work while protecting key assets that drive long-term sustainability.
8
+ - **Budgeting & Project Management -** Operational Hubs (Ops Hubs) use the platform to allocate budgets, track project milestones, and manage resources effectively. Smart contracts enforce budget limits, trigger payments upon project completion, and provide real-time financial insights. This enables scalable, transparent decision-making and ensures that funding is distributed efficiently across initiatives.
9
+ - The Powerhouse Operations Platform functions as a **full-stack operational system** for decentralized teams, ensuring smooth financial operations, legal clarity, and structured project execution in a distributed environment.
10
+
11
+ - Potential SNO use cases:
12
+ 1. Open-source software Platforms
13
+ 2. Decentralized networks and DAOs
14
+ 3. Networks requiring IP management
15
+ 4. Global Collaborative Networks
16
+ 5. Consumer Marketplaces and Platforms
17
+ 6. Public Goods
@@ -0,0 +1,18 @@
1
+ ---
2
+ # sidebar_position: 1
3
+ sidebar_label: Renown
4
+ displayed_sidebar: renownSidebar
5
+ ---
6
+
7
+ # Intro to Renown
8
+
9
+ Renown is Powerhouse's decentralized identity and reputation system designed to address the challenge of trust within DAOs, where contributors often operate under pseudonyms. In traditional organizations, personal identity and reputation are key to establishing trust and accountability. Renown replicates this dynamic in the digital space, allowing contributors to earn experience and build reputation without revealing their real-world identities.
10
+
11
+ ## Decentralised identifiers & Verifiable Credentials
12
+
13
+ At its core, Renown uses **decentralized identifiers and credentials**, enabling contributors to sign actions and contributions with their digital identity (tethered to Ethereum addresses), ensuring verifiable proof of their work. This reputation system incentivizes value-aligned behavior through gamification rewards, fostering collaboration without the need for direct management oversight. Over time, contributors can share their pseudonymous profiles with other organizations as cryptographic resumes, helping to secure new opportunities while maintaining privacy.
14
+
15
+ By enabling trust and accountability in a pseudonymous environment, Renown strengthens decentralized collaboration and contributes to the scalability and efficiency of DAOs and open organisations.
16
+
17
+ <img src="/img/Renown Intro Diagram.png" alt="renown diagram"/>
18
+ *An overview of the Holder - Issuer - Verifier relationship that the decentralised identity system Renown makes use of to establish a self sovereign identity for it's users.*
@@ -0,0 +1,60 @@
1
+ ---
2
+ # sidebar_position: 1
3
+ sidebar_label: Renown Login Flow
4
+ displayed_sidebar: renownSidebar
5
+ ---
6
+
7
+ # Renown Login Flow
8
+
9
+ The Renown login flow leverages decentralized identity (DID) creation and the Ceramic network for credential storage and verification, ensuring secure and verifiable actions within decentralized organizations. Below is a detailed breakdown of the process, aimed at developers integrating the Renown, Connect, and Switchboard components.
10
+
11
+ ### Overview
12
+ Renown provides a decentralized identity and reputation hub, where users connect their Ethereum address, creating a Decentralized Identifier (DID) tied to their wallet. The system uses Ceramic for credential generation and storage. Credentials are later verified through Switchboard for secure operation management.
13
+
14
+ ### Detailed Flow
15
+
16
+ #### 1. User Login via Wallet Connection
17
+ - The user starts by logging into Renown using their Ethereum address. This is done by signing a message with their wallet.
18
+ - The Ethereum key is used to create a DID (Decentralized Identifier), which uniquely represents the user without exposing their personal identity.
19
+
20
+ #### 2. DID Creation
21
+ - A Decentralized Identifier (DID) is created based on the user's Ethereum key. The DID follows a specific format:
22
+ `did:example:123456789abcdefghijk`
23
+ - This DID acts as the user's digital identifier across decentralized systems.
24
+
25
+ #### 3. Credential Generation
26
+ - A credential is generated, allowing the DID to sign operations on behalf of the user. This credential is stored on Ceramic, a decentralized data stream network.
27
+ - Ceramic ensures that the credentials are securely stored and verifiable across the network. Credentials include the user's signing permissions and are linked to the DID.
28
+
29
+ #### 4. Operation Signing with Connect
30
+ - Connect uses the newly created DID to sign operations performed by the user. For example, when a document or transaction is edited in Connect, the operation is signed with the user's DID.
31
+ - This ensures that every action taken within the Connect system is linked to the user's decentralized identity, maintaining transparency and accountability.
32
+
33
+ #### 5. Switchboard Verification
34
+ - Once an operation is signed by the DID through Connect, it is sent to Switchboard for verification.
35
+ - Switchboard verifies whether the DID has a valid credential stored on Ceramic and if the DID was indeed the one that signed the operation.
36
+ - The request includes critical metadata such as the user's Ethereum address, the DID, the signed operation, and other parameters required for validation.
37
+
38
+ ```json
39
+ {
40
+ "signerAddress": "0x1234...",
41
+ "hash": "did:key:2be4x...",
42
+ "signatureBytes": "Xmqy8FNz...",
43
+ "isVerified": true
44
+ }
45
+ ```
46
+
47
+ #### 6. Operation Validation and Execution
48
+ - After Switchboard validates the operation, it ensures the operation context is accurate and the credentials match the signer.
49
+ - The operation is then either approved or rejected based on the verification results.
50
+ - Approved operations are processed, and changes made within the Connect system are synchronized across the relevant nodes.
51
+
52
+ :::info
53
+ **Key Components used during login-flow**
54
+ - **Renown**: Manages user identities via DID creation and Ethereum wallet integration.
55
+ - **Ceramic**: Decentralized data stream where user credentials are stored and verified.
56
+ - **Connect**: The interface for users to perform operations. It uses the DID for signing operations.
57
+ - **Switchboard**: Responsible for verifying credentials and operation signatures to ensure authenticity.
58
+ :::
59
+
60
+ This flow ensures that all actions within the Powerhouse ecosystem are secure, transparent, and verifiable, promoting trust in a pseudonymous contributor environment.
package/docusaurus ADDED
File without changes
@@ -0,0 +1,170 @@
1
+ import { themes as prismThemes } from 'prism-react-renderer';
2
+ import type { Config } from '@docusaurus/types';
3
+ import type * as Preset from '@docusaurus/preset-classic';
4
+
5
+ const config: Config = {
6
+ title: 'Powerhouse Academy',
7
+ tagline: 'Get started with the Powerhouse ecosystem',
8
+ favicon: 'img/ph-icon-light.svg',
9
+
10
+ // Set the production url of your site here
11
+ url: 'https://powerhouse.academy',
12
+ // Set the /<baseUrl>/ pathname under which your site is served
13
+ // For GitHub pages deployment, it is often '/<projectName>/'
14
+ baseUrl: '/',
15
+
16
+ // GitHub pages deployment config.
17
+ // If you aren't using GitHub pages, you don't need these.
18
+ organizationName: '', // Usually your GitHub org/user name.
19
+ projectName: '', // Usually your repo name.
20
+
21
+ onBrokenLinks: 'warn',
22
+ onBrokenMarkdownLinks: 'warn',
23
+ deploymentBranch: 'gh-pages',
24
+ trailingSlash: false,
25
+ onBrokenAnchors: 'ignore',
26
+
27
+ // Even if you don't use internationalization, you can use this field to set
28
+ // useful metadata like html lang. For example, if your site is Chinese, you
29
+ // may want to replace "en" with "zh-Hans".
30
+ i18n: {
31
+ defaultLocale: 'en',
32
+ locales: ['en'],
33
+ },
34
+
35
+ presets: [
36
+ [
37
+ 'classic',
38
+ {
39
+ docs: {
40
+ sidebarPath: './sidebars.ts',
41
+ // Please change this to your repo.
42
+ // Remove this to remove the "edit this page" links.
43
+ editUrl:
44
+ 'https://github.com/powerhouse-inc/powerhouse-docs/tree/dev',
45
+ showLastUpdateTime: false,
46
+ showLastUpdateAuthor: false,
47
+ },
48
+ theme: {
49
+ customCss: './src/css/custom.css',
50
+ },
51
+ blog: {
52
+ showReadingTime: false,
53
+ editUrl:
54
+ 'https://github.com/powerhouse-inc/powerhouse-docs/tree/dev',
55
+ onInlineAuthors: 'ignore',
56
+ showLastUpdateTime: false,
57
+ showLastUpdateAuthor: false,
58
+ },
59
+ sitemap: {
60
+ changefreq: 'weekly',
61
+ priority: 0.5,
62
+ ignorePatterns: ['/tags/**'],
63
+ filename: 'sitemap.xml',
64
+ },
65
+ } satisfies Preset.Options,
66
+ ],
67
+ ],
68
+
69
+ themeConfig: {
70
+ // Replace with your project's social card
71
+ image: 'img/docusaurus-social-card.jpg',
72
+ algolia: {
73
+ appId: '2P4JJIQAAV',
74
+ apiKey: 'b5d796c3c48626f107dabdcb1cd77f29',
75
+ indexName: 'staging-powerhouse',
76
+ contextualSearch: true,
77
+ },
78
+ navbar: {
79
+ title: '',
80
+ logo: {
81
+ alt: 'My Site Logo',
82
+ src: 'img/Powerhouse-main.svg',
83
+ srcDark: 'img/Powerhouse-main-light.svg',
84
+ },
85
+ items: [
86
+ {
87
+ type: 'docSidebar',
88
+ sidebarId: 'academySidebar',
89
+ position: 'left',
90
+ label: 'Academy',
91
+ },
92
+ {
93
+ type: 'docSidebar',
94
+ sidebarId: 'bookofpowerhouseSidebar',
95
+ position: 'left',
96
+ label: 'Book of Powerhouse',
97
+ },
98
+ {to: '/blog', label: 'Blog', position: 'left'},
99
+ {
100
+ href: 'https://github.com/powerhouse-inc/powerhouse-docs',
101
+ label: 'GitHub',
102
+ position: 'right',
103
+ },
104
+ ],
105
+ },
106
+ footer: {
107
+ style: 'dark',
108
+ links: [
109
+ {
110
+ title: 'Docs',
111
+ items: [
112
+ {
113
+ label: 'Connect',
114
+ to: 'docs/academy/Architecture/PowerhouseArchitecture',
115
+ },
116
+ {
117
+ label: 'Reactor',
118
+ to: 'docs/academy/Architecture/PowerhouseArchitecture',
119
+ },
120
+ {
121
+ label: 'Switchboard',
122
+ to: 'docs/academy/Architecture/PowerhouseArchitecture',
123
+ },
124
+ {
125
+ label: 'Renown',
126
+ to: 'docs/academy/Architecture/PowerhouseArchitecture',
127
+ },
128
+ {
129
+ label: 'FAQ',
130
+ to: 'docs/academy/Architecture/PowerhouseArchitecture',
131
+ },
132
+ {
133
+ label: "Blog",
134
+ to: '/blog'
135
+ }
136
+ ],
137
+ },
138
+ {
139
+ title: 'Community',
140
+ items: [
141
+ {
142
+ label: 'Discord',
143
+ href: 'https://discord.gg/h7GKvqDyDP',
144
+ },
145
+ {
146
+ label: 'X',
147
+ href: 'https://x.com/PowerhouseDAO',
148
+ },
149
+ ],
150
+ },
151
+ {
152
+ title: 'More',
153
+ items: [
154
+ {
155
+ label: 'GitHub',
156
+ href: 'https://github.com/powerhouse-inc',
157
+ },
158
+ ],
159
+ },
160
+ ],
161
+ copyright: `Copyright © ${new Date().getFullYear()} Powerhouse, Inc.`,
162
+ },
163
+ prism: {
164
+ theme: prismThemes.github,
165
+ darkTheme: prismThemes.dracula,
166
+ },
167
+ } satisfies Preset.ThemeConfig,
168
+ };
169
+
170
+ export default config;
package/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@powerhousedao/academy",
3
+ "version": "0.1.0-dev.0",
4
+ "homepage": "https://powerhouse.academy",
5
+ "packageManager": "pnpm@10.9.0",
6
+ "scripts": {
7
+ "docusaurus": "docusaurus",
8
+ "start": "docusaurus serve",
9
+ "dev": "docusaurus start",
10
+ "build": "NODE_OPTIONS=--max_old_space_size=2048 docusaurus build",
11
+ "swizzle": "docusaurus swizzle",
12
+ "deploy": "docusaurus deploy",
13
+ "clear": "docusaurus clear",
14
+ "serve": "docusaurus serve",
15
+ "write-translations": "docusaurus write-translations",
16
+ "write-heading-ids": "docusaurus write-heading-ids",
17
+ "typecheck": "tsc",
18
+ "heroku-postbuild": "npm run build"
19
+ },
20
+ "dependencies": {
21
+ "@codesandbox/sandpack-react": "^2.14.4",
22
+ "@docusaurus/core": "^3.6.3",
23
+ "@docusaurus/preset-classic": "^3.6.3",
24
+ "@docusaurus/theme-search-algolia": "^3.7.0",
25
+ "@mdx-js/react": "^3.0.0",
26
+ "@powerhousedao/design-system": "^1.6.0",
27
+ "clsx": "^2.0.0",
28
+ "prism-react-renderer": "^2.3.0",
29
+ "react": "^18.0.0",
30
+ "react-dom": "^18.0.0"
31
+ },
32
+ "devDependencies": {
33
+ "@docusaurus/module-type-aliases": "^3.6.3",
34
+ "@docusaurus/tsconfig": "^3.6.3",
35
+ "@docusaurus/types": "^3.6.3",
36
+ "typescript": "^5.7.3"
37
+ },
38
+ "browserslist": {
39
+ "production": [
40
+ ">0.5%",
41
+ "not dead",
42
+ "not op_mini all"
43
+ ],
44
+ "development": [
45
+ "last 3 chrome version",
46
+ "last 3 firefox version",
47
+ "last 5 safari version"
48
+ ]
49
+ }
50
+ }
File without changes
package/sidebars.ts ADDED
@@ -0,0 +1,33 @@
1
+ import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
2
+
3
+ /**
4
+ * Creating a sidebar enables you to:
5
+ - create an ordered group of docs
6
+ - render a sidebar for each doc of that group
7
+ - provide next/previous navigation
8
+
9
+ The sidebars can be generated from the filesystem, or explicitly defined here.
10
+
11
+ Create as many sidebars as you want.
12
+ */
13
+ const sidebars: SidebarsConfig = {
14
+ // By default, Docusaurus generates a sidebar from the docs folder structure
15
+ academySidebar: [{type: 'autogenerated', dirName: 'academy'}],
16
+ bookofpowerhouseSidebar: [{type: 'autogenerated', dirName: 'bookofpowerhouse'}],
17
+ renownSidebar: [{type: 'autogenerated', dirName: 'renown'}],
18
+
19
+ // But you can create a sidebar manually
20
+ /*
21
+ tutorialSidebar: [
22
+ 'intro',
23
+ 'hello',
24
+ {
25
+ type: 'category',
26
+ label: 'Tutorial',
27
+ items: ['tutorial-basics/create-a-document'],
28
+ },
29
+ ],
30
+ */
31
+ };
32
+
33
+ export default sidebars;