kaos-ui 0.1.0a1__tar.gz

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 (227) hide show
  1. kaos_ui-0.1.0a1/.gitignore +40 -0
  2. kaos_ui-0.1.0a1/CHANGELOG.md +69 -0
  3. kaos_ui-0.1.0a1/CODE_OF_CONDUCT.md +34 -0
  4. kaos_ui-0.1.0a1/CONTRIBUTING.md +102 -0
  5. kaos_ui-0.1.0a1/LICENSE +201 -0
  6. kaos_ui-0.1.0a1/NOTICE +8 -0
  7. kaos_ui-0.1.0a1/PKG-INFO +246 -0
  8. kaos_ui-0.1.0a1/README.md +215 -0
  9. kaos_ui-0.1.0a1/SECURITY.md +67 -0
  10. kaos_ui-0.1.0a1/kaos_ui/__init__.py +45 -0
  11. kaos_ui-0.1.0a1/kaos_ui/__main__.py +6 -0
  12. kaos_ui-0.1.0a1/kaos_ui/_version.py +1 -0
  13. kaos_ui-0.1.0a1/kaos_ui/agents.py +220 -0
  14. kaos_ui-0.1.0a1/kaos_ui/cli.py +197 -0
  15. kaos_ui-0.1.0a1/kaos_ui/doctor.py +398 -0
  16. kaos_ui-0.1.0a1/kaos_ui/exceptions.py +34 -0
  17. kaos_ui-0.1.0a1/kaos_ui/manifest.py +178 -0
  18. kaos_ui-0.1.0a1/kaos_ui/mcp/__init__.py +20 -0
  19. kaos_ui-0.1.0a1/kaos_ui/mcp/tools.py +414 -0
  20. kaos_ui-0.1.0a1/kaos_ui/post_install.py +162 -0
  21. kaos_ui-0.1.0a1/kaos_ui/py.typed +0 -0
  22. kaos_ui-0.1.0a1/kaos_ui/runtime.py +48 -0
  23. kaos_ui-0.1.0a1/kaos_ui/scaffolder.py +296 -0
  24. kaos_ui-0.1.0a1/kaos_ui/settings.py +51 -0
  25. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/.env.example +38 -0
  26. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/.gitignore +31 -0
  27. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/.pre-commit-config.yaml +22 -0
  28. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/.python-version +1 -0
  29. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/.streamlit/config.toml +44 -0
  30. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/.streamlit/secrets.toml.example +7 -0
  31. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/AGENTS.md +53 -0
  32. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/CLAUDE.md +239 -0
  33. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/Dockerfile +60 -0
  34. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/Makefile +39 -0
  35. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/README.md +63 -0
  36. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/app.py.tmpl +66 -0
  37. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/docker-compose.postgres.yml +31 -0
  38. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/docker-compose.yml +17 -0
  39. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/pages/browse.py.tmpl +49 -0
  40. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/pages/chat.py.tmpl +66 -0
  41. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/pages/search.py.tmpl +30 -0
  42. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/pages/settings.py.tmpl +25 -0
  43. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/pages/upload.py.tmpl +42 -0
  44. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/pyproject.toml.tmpl +80 -0
  45. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/tests/__init__.py.tmpl +0 -0
  46. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/tests/conftest.py.tmpl +17 -0
  47. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/tests/test_auth.py.tmpl +26 -0
  48. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/tests/test_logging.py.tmpl +56 -0
  49. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/tests/test_settings.py.tmpl +76 -0
  50. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/tests/test_smoke.py.tmpl +36 -0
  51. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/tests/test_uploads.py.tmpl +83 -0
  52. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/{{KAOS_PYTHON_MODULE}}/__init__.py.tmpl +6 -0
  53. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/{{KAOS_PYTHON_MODULE}}/auth.py.tmpl +74 -0
  54. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/{{KAOS_PYTHON_MODULE}}/exceptions.py.tmpl +26 -0
  55. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/{{KAOS_PYTHON_MODULE}}/logging_setup.py.tmpl +101 -0
  56. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/{{KAOS_PYTHON_MODULE}}/runtime.py.tmpl +44 -0
  57. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/{{KAOS_PYTHON_MODULE}}/services/__init__.py.tmpl +6 -0
  58. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/{{KAOS_PYTHON_MODULE}}/services/chat.py.tmpl +50 -0
  59. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/{{KAOS_PYTHON_MODULE}}/services/documents.py.tmpl +51 -0
  60. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/{{KAOS_PYTHON_MODULE}}/services/search.py.tmpl +53 -0
  61. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/{{KAOS_PYTHON_MODULE}}/services/uploads.py.tmpl +188 -0
  62. kaos_ui-0.1.0a1/kaos_ui/templates/dashboard/streamlit/{{KAOS_PYTHON_MODULE}}/settings.py.tmpl +133 -0
  63. kaos_ui-0.1.0a1/kaos_ui/templates/module/.gitignore +12 -0
  64. kaos_ui-0.1.0a1/kaos_ui/templates/module/.python-version +1 -0
  65. kaos_ui-0.1.0a1/kaos_ui/templates/module/CLAUDE.md +26 -0
  66. kaos_ui-0.1.0a1/kaos_ui/templates/module/README.md +25 -0
  67. kaos_ui-0.1.0a1/kaos_ui/templates/module/pyproject.toml.tmpl +29 -0
  68. kaos_ui-0.1.0a1/kaos_ui/templates/module/tests/conftest.py.tmpl +1 -0
  69. kaos_ui-0.1.0a1/kaos_ui/templates/module/tests/unit/test_tools.py.tmpl +46 -0
  70. kaos_ui-0.1.0a1/kaos_ui/templates/module/{{KAOS_PYTHON_MODULE}}/__init__.py.tmpl +23 -0
  71. kaos_ui-0.1.0a1/kaos_ui/templates/module/{{KAOS_PYTHON_MODULE}}/__main__.py.tmpl +5 -0
  72. kaos_ui-0.1.0a1/kaos_ui/templates/module/{{KAOS_PYTHON_MODULE}}/_version.py.tmpl +3 -0
  73. kaos_ui-0.1.0a1/kaos_ui/templates/module/{{KAOS_PYTHON_MODULE}}/cli.py.tmpl +65 -0
  74. kaos_ui-0.1.0a1/kaos_ui/templates/module/{{KAOS_PYTHON_MODULE}}/serve.py.tmpl +67 -0
  75. kaos_ui-0.1.0a1/kaos_ui/templates/module/{{KAOS_PYTHON_MODULE}}/tools.py.tmpl +66 -0
  76. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/.env.example +24 -0
  77. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/.gitignore +32 -0
  78. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/.pre-commit-config.yaml +22 -0
  79. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/.python-version +1 -0
  80. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/AGENTS.md +38 -0
  81. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/CLAUDE.md +149 -0
  82. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/Makefile +36 -0
  83. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/README.md +69 -0
  84. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/pyproject.toml.tmpl +78 -0
  85. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/tests/__init__.py.tmpl +0 -0
  86. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/tests/conftest.py.tmpl +25 -0
  87. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/tests/test_logging.py.tmpl +37 -0
  88. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/tests/test_services.py.tmpl +48 -0
  89. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/tests/test_settings.py.tmpl +40 -0
  90. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/tests/test_smoke.py.tmpl +51 -0
  91. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/{{KAOS_PYTHON_MODULE}}/__init__.py.tmpl +6 -0
  92. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/{{KAOS_PYTHON_MODULE}}/__main__.py.tmpl +6 -0
  93. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/{{KAOS_PYTHON_MODULE}}/app.py.tmpl +75 -0
  94. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/{{KAOS_PYTHON_MODULE}}/exceptions.py.tmpl +22 -0
  95. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/{{KAOS_PYTHON_MODULE}}/logging_setup.py.tmpl +99 -0
  96. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/{{KAOS_PYTHON_MODULE}}/runtime.py.tmpl +43 -0
  97. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/{{KAOS_PYTHON_MODULE}}/screens/__init__.py.tmpl +1 -0
  98. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/{{KAOS_PYTHON_MODULE}}/screens/chat.py.tmpl +117 -0
  99. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/{{KAOS_PYTHON_MODULE}}/screens/documents.py.tmpl +58 -0
  100. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/{{KAOS_PYTHON_MODULE}}/screens/settings.py.tmpl +30 -0
  101. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/{{KAOS_PYTHON_MODULE}}/services/__init__.py.tmpl +6 -0
  102. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/{{KAOS_PYTHON_MODULE}}/services/chat.py.tmpl +85 -0
  103. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/{{KAOS_PYTHON_MODULE}}/services/documents.py.tmpl +53 -0
  104. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/{{KAOS_PYTHON_MODULE}}/settings.py.tmpl +85 -0
  105. kaos_ui-0.1.0a1/kaos_ui/templates/tui/textual/{{KAOS_PYTHON_MODULE}}/styles.tcss +44 -0
  106. kaos_ui-0.1.0a1/kaos_ui/templates/web/api/.gitignore +15 -0
  107. kaos_ui-0.1.0a1/kaos_ui/templates/web/api/.python-version +1 -0
  108. kaos_ui-0.1.0a1/kaos_ui/templates/web/api/CLAUDE.md +26 -0
  109. kaos_ui-0.1.0a1/kaos_ui/templates/web/api/README.md +26 -0
  110. kaos_ui-0.1.0a1/kaos_ui/templates/web/api/app/__init__.py.tmpl +0 -0
  111. kaos_ui-0.1.0a1/kaos_ui/templates/web/api/app/config.py.tmpl +16 -0
  112. kaos_ui-0.1.0a1/kaos_ui/templates/web/api/app/main.py.tmpl +36 -0
  113. kaos_ui-0.1.0a1/kaos_ui/templates/web/api/app/routers/__init__.py.tmpl +0 -0
  114. kaos_ui-0.1.0a1/kaos_ui/templates/web/api/app/routers/documents.py.tmpl +19 -0
  115. kaos_ui-0.1.0a1/kaos_ui/templates/web/api/app/routers/health.py.tmpl +11 -0
  116. kaos_ui-0.1.0a1/kaos_ui/templates/web/api/app/services/__init__.py.tmpl +0 -0
  117. kaos_ui-0.1.0a1/kaos_ui/templates/web/api/app/services/extraction.py.tmpl +39 -0
  118. kaos_ui-0.1.0a1/kaos_ui/templates/web/api/pyproject.toml.tmpl +37 -0
  119. kaos_ui-0.1.0a1/kaos_ui/templates/web/api/tests/conftest.py.tmpl +18 -0
  120. kaos_ui-0.1.0a1/kaos_ui/templates/web/api/tests/test_health.py.tmpl +10 -0
  121. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/.env.example +46 -0
  122. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/.gitignore +46 -0
  123. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/AGENTS.md +30 -0
  124. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/CLAUDE.md +182 -0
  125. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/Caddyfile +61 -0
  126. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/Makefile +56 -0
  127. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/README.md +91 -0
  128. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/.gitignore +12 -0
  129. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/biome.json +29 -0
  130. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/index.html +13 -0
  131. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/openapi-ts.config.ts +26 -0
  132. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/package.json +46 -0
  133. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/src/auth/context.tsx +77 -0
  134. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/src/components/chat/Composer.tsx +138 -0
  135. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/src/components/chat/EmptyState.tsx +101 -0
  136. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/src/components/chat/Message.tsx +73 -0
  137. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/src/components/chat/StarterCard.tsx +39 -0
  138. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/src/components/chat/TurnStatus.tsx +59 -0
  139. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/src/components/chat/UsageChip.tsx +27 -0
  140. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/src/lib/api-fetch.ts +43 -0
  141. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/src/lib/streaming.ts +130 -0
  142. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/src/main.tsx +69 -0
  143. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/src/routes/__root.tsx +16 -0
  144. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/src/routes/_auth.chat.tsx +199 -0
  145. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/src/routes/_auth.tsx +38 -0
  146. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/src/routes/index.tsx +11 -0
  147. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/src/routes/login.tsx +84 -0
  148. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/src/styles/globals.css +13 -0
  149. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/tests/setup.ts +26 -0
  150. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/tests/streaming.test.ts +119 -0
  151. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/tsconfig.json +25 -0
  152. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/apps/spa/vite.config.ts +65 -0
  153. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/.python-version +1 -0
  154. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/Dockerfile +67 -0
  155. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/__init__.py.tmpl +1 -0
  156. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/auth.py.tmpl +118 -0
  157. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/deps.py.tmpl +22 -0
  158. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/exceptions.py.tmpl +30 -0
  159. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/logging_setup.py.tmpl +93 -0
  160. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/main.py.tmpl +81 -0
  161. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/routers/__init__.py.tmpl +1 -0
  162. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/routers/auth.py.tmpl +75 -0
  163. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/routers/documents.py.tmpl +80 -0
  164. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/routers/health.py.tmpl +28 -0
  165. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/routers/search.py.tmpl +49 -0
  166. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/routers/sessions.py.tmpl +47 -0
  167. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/routers/uploads.py.tmpl +48 -0
  168. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/runtime.py.tmpl +40 -0
  169. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/services/__init__.py.tmpl +2 -0
  170. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/services/chat.py.tmpl +65 -0
  171. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/services/documents.py.tmpl +49 -0
  172. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/services/search.py.tmpl +51 -0
  173. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/services/uploads.py.tmpl +140 -0
  174. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/app/settings.py.tmpl +143 -0
  175. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/pyproject.toml.tmpl +84 -0
  176. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/tests/__init__.py.tmpl +0 -0
  177. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/tests/conftest.py.tmpl +33 -0
  178. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/tests/test_auth.py.tmpl +57 -0
  179. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/tests/test_health.py.tmpl +18 -0
  180. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/tests/test_logging.py.tmpl +50 -0
  181. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/tests/test_settings.py.tmpl +56 -0
  182. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/backend/tests/test_uploads.py.tmpl +51 -0
  183. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/docker-compose.postgres.yml +31 -0
  184. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/docker-compose.yml +36 -0
  185. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/package.json +15 -0
  186. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/packages/ui/components.json +18 -0
  187. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/packages/ui/package.json +37 -0
  188. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/packages/ui/src/components/.gitkeep +0 -0
  189. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/packages/ui/src/components/ui/button.tsx +70 -0
  190. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/packages/ui/src/components/ui/card.tsx +75 -0
  191. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/packages/ui/src/components/ui/input.tsx +27 -0
  192. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/packages/ui/src/components/ui/separator.tsx +29 -0
  193. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/packages/ui/src/components/ui/skeleton.tsx +19 -0
  194. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/packages/ui/src/components/ui/textarea.tsx +28 -0
  195. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/packages/ui/src/fonts.ts +10 -0
  196. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/packages/ui/src/hooks/use-documents.ts +10 -0
  197. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/packages/ui/src/lib/api.ts +26 -0
  198. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/packages/ui/src/lib/query-client.ts +12 -0
  199. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/packages/ui/src/lib/utils.ts +6 -0
  200. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/packages/ui/src/styles/globals.css +126 -0
  201. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/packages/ui/src/types/document.ts +14 -0
  202. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/packages/ui/tsconfig.json +22 -0
  203. kaos_ui-0.1.0a1/kaos_ui/templates/web/spa/pnpm-workspace.yaml +19 -0
  204. kaos_ui-0.1.0a1/kaos_ui/templates/workflow/README.md +10 -0
  205. kaos_ui-0.1.0a1/kaos_ui/templates/workflow/main.py.tmpl +39 -0
  206. kaos_ui-0.1.0a1/kaos_ui/templates/workflow/pyproject.toml.tmpl +21 -0
  207. kaos_ui-0.1.0a1/pyproject.toml +130 -0
  208. kaos_ui-0.1.0a1/tests/__init__.py +0 -0
  209. kaos_ui-0.1.0a1/tests/conftest.py +15 -0
  210. kaos_ui-0.1.0a1/tests/integration/__init__.py +0 -0
  211. kaos_ui-0.1.0a1/tests/integration/test_scaffold_api.py +136 -0
  212. kaos_ui-0.1.0a1/tests/integration/test_scaffold_module.py +88 -0
  213. kaos_ui-0.1.0a1/tests/integration/test_scaffold_spa.py +175 -0
  214. kaos_ui-0.1.0a1/tests/integration/test_scaffold_streamlit.py +196 -0
  215. kaos_ui-0.1.0a1/tests/integration/test_scaffold_textual.py +189 -0
  216. kaos_ui-0.1.0a1/tests/integration/test_scaffold_workflow.py +125 -0
  217. kaos_ui-0.1.0a1/tests/integration/test_template_compiles.py +297 -0
  218. kaos_ui-0.1.0a1/tests/unit/__init__.py +0 -0
  219. kaos_ui-0.1.0a1/tests/unit/test_agents_helpers.py +101 -0
  220. kaos_ui-0.1.0a1/tests/unit/test_cli.py +125 -0
  221. kaos_ui-0.1.0a1/tests/unit/test_doctor.py +143 -0
  222. kaos_ui-0.1.0a1/tests/unit/test_manifest.py +53 -0
  223. kaos_ui-0.1.0a1/tests/unit/test_mcp_tools.py +230 -0
  224. kaos_ui-0.1.0a1/tests/unit/test_post_install_chained.py +60 -0
  225. kaos_ui-0.1.0a1/tests/unit/test_scaffolder.py +86 -0
  226. kaos_ui-0.1.0a1/tests/unit/test_scaffolder_settings.py +65 -0
  227. kaos_ui-0.1.0a1/tests/unit/test_settings.py +34 -0
@@ -0,0 +1,40 @@
1
+ # Build / dist
2
+ build/
3
+ dist/
4
+ *.egg-info/
5
+
6
+ # Caches
7
+ .benchmarks/
8
+ .coverage
9
+ .coverage.*
10
+ .kaos-vfs/
11
+ .kaos-vfs-*/
12
+ .mypy_cache/
13
+ .pytest_cache/
14
+ .ruff_cache/
15
+ .ty_cache/
16
+ .venv/
17
+ __pycache__/
18
+ coverage.xml
19
+ htmlcov/
20
+ *.pyc
21
+
22
+ # OS / editor scratch
23
+ .DS_Store
24
+ Thumbs.db
25
+ .idea/
26
+ .vscode/
27
+
28
+ # Secrets — never commit
29
+ .env
30
+ .env.*
31
+ !.env.example
32
+ *.pem
33
+ *.key
34
+ *.p12
35
+ *.pfx
36
+ .kaos-credentials.json
37
+
38
+ # Scaffolder outputs from local testing
39
+ /demo-*/
40
+ /test-scaffold-*/
@@ -0,0 +1,69 @@
1
+ # Changelog
2
+
3
+ All notable changes to `kaos-ui` are documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ### Fixed
11
+ - `register_kaos_ui_tools()` previously returned the `KaosRuntime`
12
+ instance and was named with the long form `register_kaos_<name>_tools`.
13
+ Both broke the `kaos-mcp serve --module ui` loader contract — it
14
+ expects a function named `register_<name>_tools` (short form) that
15
+ returns an `int` tool count (matching `kaos-pdf` / `kaos-web` /
16
+ `kaos-office` / `kaos-reference`). The canonical entry point is now
17
+ `kaos_ui.register_ui_tools` (returns `int`); the long form remains
18
+ as a backwards-compatible alias.
19
+
20
+ ### Added
21
+ - Apache-2.0 license metadata in `pyproject.toml`, plus `LICENSE` and
22
+ `NOTICE` files at the project root.
23
+ - `SECURITY.md` (90-day disclosure window, PVR primary), `CONTRIBUTING.md`,
24
+ and `CODE_OF_CONDUCT.md` (professional conduct template).
25
+ - `[project.urls]` populated with all 5 entries (Homepage, Documentation,
26
+ Repository, Issues, Changelog) and keywords for PyPI discovery.
27
+
28
+ ## [0.1.0a1] — 2026-05-14
29
+
30
+ First public alpha.
31
+
32
+ ### Added
33
+ - **Six shipping templates.** `web:api` (FastAPI), `web:spa`
34
+ (Vite + React + Tailwind v4 + shadcn + FastAPI + Caddy + Docker,
35
+ kaos-agents wired), `dashboard:streamlit`, `tui:textual`,
36
+ `module` (KAOS module package with tools + CLI + serve + tests),
37
+ `workflow` (single-file Python script).
38
+ - **`kaos-ui` CLI** with `list`, `info`, `new`, and `doctor` subcommands.
39
+ Every structured command supports `--json` with a stable
40
+ `command` + payload envelope per `docs/guides/cli-standard.md`.
41
+ - **Four MCP tools** registered onto a `KaosRuntime` via
42
+ `register_kaos_ui_tools()`: `kaos-ui-list-templates`,
43
+ `kaos-ui-template-info`, `kaos-ui-scaffold`, `kaos-ui-doctor`. All
44
+ ship explicit `ToolAnnotations` and structured error envelopes
45
+ (`what` / `how_to_fix` / `alternative_tool`).
46
+ - **Typed `ScaffoldResult`** dataclass — frozen, slotted, with a
47
+ `to_dict()` boundary for JSON/MCP serialization.
48
+ - **`kaos_ui.agents` helper module** — `build_chat_runtime()`,
49
+ `install_tool_bridge_runtime_patch()`, `augment_instructions()`,
50
+ `NO_TOOLS_PATTERN` — so kaos-agents-on-FastAPI apps don't have to
51
+ re-discover the same workarounds for kaos-agents 0.1.0a1.
52
+ - **`KaosUISettings`** (`KAOS_UI_` env prefix) — toolchain versions,
53
+ `templates_dir` override, follows the canonical `ModuleSettings`
54
+ pattern.
55
+ - **Post-install runner** supports `cd X && y && z` chains via shlex
56
+ parsing without enabling a shell (refuses shell-builtin tokens).
57
+ - **`single-user-chat` example** under `examples/` — full end-to-end
58
+ reference for the `web:spa` template, including bearer-token auth,
59
+ SSE streaming proxy, read-only tool allowlist, persistent VFS, and
60
+ markdown rendering with sanitized links.
61
+ - 105 tests passing (75 unit + 30 integration; 81% line coverage).
62
+
63
+ ### Notes
64
+ - This is an **alpha**. The public Python API in `kaos_ui/__init__.py`
65
+ is stable for the duration of the `0.1.x` line; experimental surfaces
66
+ live under `kaos_ui.mcp.tools` and may evolve.
67
+
68
+ [Unreleased]: https://github.com/273v/kaos-ui/compare/v0.1.0a1...HEAD
69
+ [0.1.0a1]: https://github.com/273v/kaos-ui/releases/tag/v0.1.0a1
@@ -0,0 +1,34 @@
1
+ # Professional Conduct
2
+
3
+ `kaos-ui` is a professional open-source project. Contributors,
4
+ maintainers, and users are expected to keep project spaces focused,
5
+ respectful, and useful.
6
+
7
+ ## Expectations
8
+
9
+ - Assume good faith.
10
+ - Discuss ideas, code, and tradeoffs directly.
11
+ - Keep disagreement technical and specific.
12
+ - Respect other contributors' time and boundaries.
13
+ - Do not harass, threaten, insult, dox, spam, or deliberately disrupt
14
+ project spaces.
15
+ - Do not use project spaces for conduct that would be inappropriate in
16
+ a professional engineering environment.
17
+
18
+ Different people and organizations bring different values, cultures,
19
+ and communication styles. This project does not require ideological
20
+ alignment. It does require professional behavior.
21
+
22
+ ## Maintainer Action
23
+
24
+ Maintainers may edit, hide, close, or remove issues, pull requests,
25
+ comments, or other contributions that make the project less useful or
26
+ less safe to participate in. Repeated or serious disruption may lead to
27
+ temporary or permanent loss of participation privileges.
28
+
29
+ ## Reporting
30
+
31
+ For conduct concerns, contact **conduct@273ventures.com**.
32
+
33
+ For security vulnerabilities, do not use public issues. Follow
34
+ [SECURITY.md](SECURITY.md).
@@ -0,0 +1,102 @@
1
+ # Contributing to kaos-ui
2
+
3
+ `kaos-ui` is the project scaffolder for KAOS user-facing applications:
4
+ FastAPI APIs, web SPAs, Streamlit dashboards, Textual TUIs, and
5
+ standalone module/workflow packages. Contributions are welcome as
6
+ issues, evidence reports, and code changes — particularly ones that
7
+ tighten the link between what the scaffolder advertises and what the
8
+ scaffolded project actually does at runtime.
9
+
10
+ ## Ground rules
11
+
12
+ 1. **Templates ship working code.** Every shipping template must pass
13
+ the per-template smoke matrix (`tests/integration/test_scaffold_*`).
14
+ A template that scaffolds but doesn't boot is a release blocker.
15
+ 2. **One source of truth per operation.** The CLI, the MCP tools, and
16
+ the scaffolded `doctor` command all delegate to the same Python
17
+ functions. Don't fork logic across layers.
18
+ 3. **No AGPL/GPL dependencies — ever.** Either in `kaos-ui` itself or
19
+ in any shipping template's `pyproject.toml`/`package.json`.
20
+ 4. **Settings load at the edge.** `KaosUISettings` (and per-template
21
+ env vars like `KAOS_UI_PYTHON_VERSION`) are resolved at the CLI or
22
+ MCP tool boundary, not inside scaffolder internals.
23
+ 5. **Errors are agent prompts.** Every tool / CLI / scaffolder error
24
+ ships a `what` / `how_to_fix` / `alternative_tool` triple.
25
+
26
+ ## How to contribute
27
+
28
+ ### Reporting an issue
29
+
30
+ If a scaffold renders broken output, or a `kaos-ui doctor` check
31
+ returns a false negative, please open an issue with:
32
+
33
+ - The exact command you ran (e.g., `kaos-ui new web:spa myproj`)
34
+ - The kaos-ui version (`uv pip show kaos-ui`)
35
+ - The OS + Python version (`uname -a && python --version`)
36
+ - The unexpected output (stderr from the command, or the broken file)
37
+ - The expected output (what a working scaffold of the same kind should produce)
38
+
39
+ ### Proposing a new template kind
40
+
41
+ New templates are welcome. Before opening a PR:
42
+
43
+ 1. Confirm the kind has a clear use-case that's not covered by an
44
+ existing kind. "Just like web:spa but with a different css framework"
45
+ is usually a configuration switch on `web:spa`, not a new kind.
46
+ 2. Build the template against the latest stable major of every external
47
+ dependency. Pin to the minor in `pyproject.toml.tmpl` so consumers
48
+ get bug-fix updates by default.
49
+ 3. Add a per-template smoke test under `tests/integration/`. The
50
+ test must scaffold the kind into a tmp directory, run the manifest's
51
+ `post_install` chain, and exercise at least one user-facing path
52
+ (e.g., for a web template: boot the dev server and curl /health).
53
+ 4. Run the local quality gate (below) before pushing.
54
+
55
+ ### Code contributions
56
+
57
+ 1. Run the local quality gate before pushing:
58
+
59
+ ```bash
60
+ uv sync --group dev
61
+ uv run ruff format kaos_ui tests
62
+ uv run ruff check kaos_ui tests
63
+ uv run ty check kaos_ui tests
64
+ uv run pytest tests/ -q
65
+ ```
66
+
67
+ 2. New scaffolder features need a unit test (`tests/unit/`) covering
68
+ the success path AND at least one error path.
69
+ 3. New MCP tools need explicit `ToolAnnotations`, structured error
70
+ envelopes (`_error_info`), and unit tests covering metadata +
71
+ execute success + execute error.
72
+ 4. Sign commits with `git commit -s` for the Developer Certificate
73
+ of Origin.
74
+ 5. Use conventional-commit-style messages (`feat:`, `fix:`, `chore:`,
75
+ `docs:`, `ci:`, `test:`).
76
+ 6. PR descriptions: state what changed, why, how it was tested, and
77
+ whether the change affects shipping templates (those have a higher
78
+ bar for backwards-compatibility).
79
+
80
+ ## Reviewing template changes
81
+
82
+ A change to `kaos_ui/templates/<kind>/` is a soft-public-API change:
83
+ every consumer who scaffolds that kind picks up the change on their
84
+ next `kaos-ui new`. Test it the same way you'd test a function with
85
+ unknown callers.
86
+
87
+ The per-template smoke test (`tests/integration/test_scaffold_*.py`)
88
+ is the regression net. Keep it green.
89
+
90
+ ## Security disclosures
91
+
92
+ See [`SECURITY.md`](SECURITY.md). Do not open public issues for
93
+ suspected vulnerabilities — use the private reporting channel.
94
+
95
+ ## License
96
+
97
+ By submitting a contribution, you agree to license it under the
98
+ project's Apache 2.0 license (see [`LICENSE`](LICENSE)) and certify
99
+ that you have the right to do so under the
100
+ [Developer Certificate of Origin](https://developercertificate.org/),
101
+ which is signaled by the `Signed-off-by` trailer added by
102
+ `git commit -s`.
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for describing the origin of the Work and
141
+ reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2026 273 Ventures LLC
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
kaos_ui-0.1.0a1/NOTICE ADDED
@@ -0,0 +1,8 @@
1
+ kaos-ui
2
+ Copyright 2026 273 Ventures LLC.
3
+
4
+ This product includes software developed at 273 Ventures LLC
5
+ (https://273ventures.com).
6
+
7
+ Licensed under the Apache License, Version 2.0. See the LICENSE file
8
+ distributed with this software for the full text of the license.