wade-ai 0.1.0__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 (191) hide show
  1. wade_ai-0.1.0/LICENSE +21 -0
  2. wade_ai-0.1.0/MANIFEST.in +14 -0
  3. wade_ai-0.1.0/PKG-INFO +329 -0
  4. wade_ai-0.1.0/README.md +260 -0
  5. wade_ai-0.1.0/app/__init__.py +0 -0
  6. wade_ai-0.1.0/app/agents/__init__.py +0 -0
  7. wade_ai-0.1.0/app/agents/critic.py +342 -0
  8. wade_ai-0.1.0/app/agents/executor.py +641 -0
  9. wade_ai-0.1.0/app/agents/memory_agent.py +178 -0
  10. wade_ai-0.1.0/app/agents/monitors/__init__.py +0 -0
  11. wade_ai-0.1.0/app/agents/monitors/base.py +71 -0
  12. wade_ai-0.1.0/app/agents/monitors/build_logs.py +75 -0
  13. wade_ai-0.1.0/app/agents/monitors/filesystem.py +93 -0
  14. wade_ai-0.1.0/app/agents/monitors/proactive.py +64 -0
  15. wade_ai-0.1.0/app/agents/monitors/schedule.py +73 -0
  16. wade_ai-0.1.0/app/agents/monitors/system.py +94 -0
  17. wade_ai-0.1.0/app/agents/planner.py +206 -0
  18. wade_ai-0.1.0/app/api/__init__.py +0 -0
  19. wade_ai-0.1.0/app/api/v1/__init__.py +0 -0
  20. wade_ai-0.1.0/app/api/v1/admin.py +421 -0
  21. wade_ai-0.1.0/app/api/v1/blink_auth.py +102 -0
  22. wade_ai-0.1.0/app/api/v1/config.py +34 -0
  23. wade_ai-0.1.0/app/api/v1/credentials.py +249 -0
  24. wade_ai-0.1.0/app/api/v1/godmode.py +137 -0
  25. wade_ai-0.1.0/app/api/v1/memory.py +146 -0
  26. wade_ai-0.1.0/app/api/v1/spotify_auth.py +198 -0
  27. wade_ai-0.1.0/app/api/v1/sync.py +41 -0
  28. wade_ai-0.1.0/app/api/v1/tasks.py +46 -0
  29. wade_ai-0.1.0/app/api/v1/whatsapp.py +370 -0
  30. wade_ai-0.1.0/app/assets/__init__.py +0 -0
  31. wade_ai-0.1.0/app/assets/wade.onnx +0 -0
  32. wade_ai-0.1.0/app/cli.py +590 -0
  33. wade_ai-0.1.0/app/core/__init__.py +0 -0
  34. wade_ai-0.1.0/app/core/browser_launcher.py +40 -0
  35. wade_ai-0.1.0/app/core/chroma_utils.py +93 -0
  36. wade_ai-0.1.0/app/core/classifier.py +36 -0
  37. wade_ai-0.1.0/app/core/config.py +141 -0
  38. wade_ai-0.1.0/app/core/credentials.py +59 -0
  39. wade_ai-0.1.0/app/core/events.py +81 -0
  40. wade_ai-0.1.0/app/core/hardware.py +242 -0
  41. wade_ai-0.1.0/app/core/hitl.py +58 -0
  42. wade_ai-0.1.0/app/core/location.py +40 -0
  43. wade_ai-0.1.0/app/core/mdns.py +63 -0
  44. wade_ai-0.1.0/app/core/orchestrator.py +588 -0
  45. wade_ai-0.1.0/app/core/personality.py +205 -0
  46. wade_ai-0.1.0/app/core/project_loader.py +356 -0
  47. wade_ai-0.1.0/app/core/scrape.py +40 -0
  48. wade_ai-0.1.0/app/core/security.py +35 -0
  49. wade_ai-0.1.0/app/core/task_store.py +162 -0
  50. wade_ai-0.1.0/app/core/telemetry.py +225 -0
  51. wade_ai-0.1.0/app/core/tier_personality.py +108 -0
  52. wade_ai-0.1.0/app/core/user_registry.py +282 -0
  53. wade_ai-0.1.0/app/core/utils.py +109 -0
  54. wade_ai-0.1.0/app/core/version.py +2 -0
  55. wade_ai-0.1.0/app/daemon.py +268 -0
  56. wade_ai-0.1.0/app/main.py +893 -0
  57. wade_ai-0.1.0/app/memory/__init__.py +0 -0
  58. wade_ai-0.1.0/app/memory/compactor.py +95 -0
  59. wade_ai-0.1.0/app/memory/episodes.py +163 -0
  60. wade_ai-0.1.0/app/memory/manager.py +157 -0
  61. wade_ai-0.1.0/app/memory/md_patcher.py +47 -0
  62. wade_ai-0.1.0/app/memory/passive_extractor.py +294 -0
  63. wade_ai-0.1.0/app/memory/semantic_memory.py +158 -0
  64. wade_ai-0.1.0/app/services/__init__.py +0 -0
  65. wade_ai-0.1.0/app/services/discovery.py +205 -0
  66. wade_ai-0.1.0/app/services/inference_client.py +520 -0
  67. wade_ai-0.1.0/app/services/installer.py +63 -0
  68. wade_ai-0.1.0/app/services/messenger.py +41 -0
  69. wade_ai-0.1.0/app/services/model_manager.py +53 -0
  70. wade_ai-0.1.0/app/services/model_router.py +66 -0
  71. wade_ai-0.1.0/app/services/ollama_manager.py +161 -0
  72. wade_ai-0.1.0/app/services/proactive.py +301 -0
  73. wade_ai-0.1.0/app/services/voice.py +350 -0
  74. wade_ai-0.1.0/app/setup_wizard.py +809 -0
  75. wade_ai-0.1.0/app/skills/__init__.py +0 -0
  76. wade_ai-0.1.0/app/skills/cameras/__init__.py +0 -0
  77. wade_ai-0.1.0/app/skills/cameras/blink.py +203 -0
  78. wade_ai-0.1.0/app/skills/dev/__init__.py +0 -0
  79. wade_ai-0.1.0/app/skills/dev/code_review.py +66 -0
  80. wade_ai-0.1.0/app/skills/dev/dev_file.py +114 -0
  81. wade_ai-0.1.0/app/skills/dev/dev_files.py +95 -0
  82. wade_ai-0.1.0/app/skills/dev/feature_dev.py +103 -0
  83. wade_ai-0.1.0/app/skills/finance/__init__.py +0 -0
  84. wade_ai-0.1.0/app/skills/finance/market_data.py +171 -0
  85. wade_ai-0.1.0/app/skills/flights/__init__.py +0 -0
  86. wade_ai-0.1.0/app/skills/flights/aero_flow.py +96 -0
  87. wade_ai-0.1.0/app/skills/indexing/__init__.py +0 -0
  88. wade_ai-0.1.0/app/skills/indexing/code_chunker.py +84 -0
  89. wade_ai-0.1.0/app/skills/indexing/indexer.py +716 -0
  90. wade_ai-0.1.0/app/skills/indexing/inventory.py +44 -0
  91. wade_ai-0.1.0/app/skills/indexing/query.py +105 -0
  92. wade_ai-0.1.0/app/skills/indexing/reset_db.py +70 -0
  93. wade_ai-0.1.0/app/skills/math/__init__.py +0 -0
  94. wade_ai-0.1.0/app/skills/math/calculator.py +66 -0
  95. wade_ai-0.1.0/app/skills/memory/__init__.py +0 -0
  96. wade_ai-0.1.0/app/skills/memory/updater.py +257 -0
  97. wade_ai-0.1.0/app/skills/music/__init__.py +0 -0
  98. wade_ai-0.1.0/app/skills/music/spotify.py +447 -0
  99. wade_ai-0.1.0/app/skills/news/__init__.py +0 -0
  100. wade_ai-0.1.0/app/skills/news/global_news.py +168 -0
  101. wade_ai-0.1.0/app/skills/notion/__init__.py +0 -0
  102. wade_ai-0.1.0/app/skills/notion/notion.py +312 -0
  103. wade_ai-0.1.0/app/skills/python/__init__.py +0 -0
  104. wade_ai-0.1.0/app/skills/python/runner.py +222 -0
  105. wade_ai-0.1.0/app/skills/registry.py +325 -0
  106. wade_ai-0.1.0/app/skills/sandbox.py +473 -0
  107. wade_ai-0.1.0/app/skills/scheduling/__init__.py +0 -0
  108. wade_ai-0.1.0/app/skills/scheduling/scheduler.py +123 -0
  109. wade_ai-0.1.0/app/skills/sdk.py +84 -0
  110. wade_ai-0.1.0/app/skills/semantic_router.py +116 -0
  111. wade_ai-0.1.0/app/skills/system/__init__.py +0 -0
  112. wade_ai-0.1.0/app/skills/system/diagnostics.py +200 -0
  113. wade_ai-0.1.0/app/skills/system/escalate.py +68 -0
  114. wade_ai-0.1.0/app/skills/system/hot_reload.py +48 -0
  115. wade_ai-0.1.0/app/skills/system/time.py +42 -0
  116. wade_ai-0.1.0/app/skills/vision/__init__.py +0 -0
  117. wade_ai-0.1.0/app/skills/vision/vision.py +104 -0
  118. wade_ai-0.1.0/app/skills/weather/__init__.py +0 -0
  119. wade_ai-0.1.0/app/skills/weather/weather.py +117 -0
  120. wade_ai-0.1.0/app/skills/web/__init__.py +0 -0
  121. wade_ai-0.1.0/app/skills/web/browser.py +184 -0
  122. wade_ai-0.1.0/app/skills/web/deep_research.py +47 -0
  123. wade_ai-0.1.0/app/skills/web/web_search.py +44 -0
  124. wade_ai-0.1.0/app/skills/whatsapp/__init__.py +0 -0
  125. wade_ai-0.1.0/app/skills/whatsapp/create_group.py +84 -0
  126. wade_ai-0.1.0/app/skills/whatsapp/lookup_contact.py +23 -0
  127. wade_ai-0.1.0/app/skills/whatsapp/send_message.py +17 -0
  128. wade_ai-0.1.0/app/skills/workspace/__init__.py +0 -0
  129. wade_ai-0.1.0/app/skills/workspace/builder.py +49 -0
  130. wade_ai-0.1.0/app/skills/workspace/dependency_mapper.py +113 -0
  131. wade_ai-0.1.0/app/skills/workspace/files.py +315 -0
  132. wade_ai-0.1.0/app/skills/workspace/git.py +65 -0
  133. wade_ai-0.1.0/app/static/__init__.py +0 -0
  134. wade_ai-0.1.0/app/static/css/__init__.py +0 -0
  135. wade_ai-0.1.0/app/static/css/style.css +1808 -0
  136. wade_ai-0.1.0/app/static/html/__init__.py +0 -0
  137. wade_ai-0.1.0/app/static/html/index.html +1006 -0
  138. wade_ai-0.1.0/app/static/js/__init__.py +0 -0
  139. wade_ai-0.1.0/app/static/js/app.js +3119 -0
  140. wade_ai-0.1.0/app/static/js/credentials.js +825 -0
  141. wade_ai-0.1.0/app/static/js/onboarding.js +194 -0
  142. wade_ai-0.1.0/app/static/js/tauri-bridge.js +49 -0
  143. wade_ai-0.1.0/app/static/logo/__init__.py +0 -0
  144. wade_ai-0.1.0/app/static/logo/favicon.svg +26 -0
  145. wade_ai-0.1.0/app/templates/AGENTS.md +26 -0
  146. wade_ai-0.1.0/app/templates/BOOTSTRAP.md +51 -0
  147. wade_ai-0.1.0/app/templates/BUSINESS.md +41 -0
  148. wade_ai-0.1.0/app/templates/HEARTBEAT.md +30 -0
  149. wade_ai-0.1.0/app/templates/IDENTITY.md +25 -0
  150. wade_ai-0.1.0/app/templates/MEMORY.md +2 -0
  151. wade_ai-0.1.0/app/templates/PROJECTS.md +33 -0
  152. wade_ai-0.1.0/app/templates/SOUL.md +67 -0
  153. wade_ai-0.1.0/app/templates/TOOLS.md +37 -0
  154. wade_ai-0.1.0/app/templates/USER.md +26 -0
  155. wade_ai-0.1.0/app/templates/__init__.py +0 -0
  156. wade_ai-0.1.0/app/templates/tiers/__init__.py +0 -0
  157. wade_ai-0.1.0/app/templates/tiers/family/IDENTITY.md +28 -0
  158. wade_ai-0.1.0/app/templates/tiers/family/SOUL.md +11 -0
  159. wade_ai-0.1.0/app/templates/tiers/family/__init__.py +0 -0
  160. wade_ai-0.1.0/app/templates/tiers/friends/IDENTITY.md +25 -0
  161. wade_ai-0.1.0/app/templates/tiers/friends/SOUL.md +9 -0
  162. wade_ai-0.1.0/app/templates/tiers/friends/__init__.py +0 -0
  163. wade_ai-0.1.0/app/templates/tiers/guests/IDENTITY.md +24 -0
  164. wade_ai-0.1.0/app/templates/tiers/guests/SOUL.md +7 -0
  165. wade_ai-0.1.0/app/templates/tiers/guests/__init__.py +0 -0
  166. wade_ai-0.1.0/app/templates/tiers/strangers/IDENTITY.md +19 -0
  167. wade_ai-0.1.0/app/templates/tiers/strangers/SOUL.md +11 -0
  168. wade_ai-0.1.0/app/templates/tiers/strangers/STRANGER_PERSONA.md +39 -0
  169. wade_ai-0.1.0/app/templates/tiers/strangers/__init__.py +0 -0
  170. wade_ai-0.1.0/app/templates/tiers/strangers/projects/example_project/project.yaml +52 -0
  171. wade_ai-0.1.0/app/templates/users.yaml +49 -0
  172. wade_ai-0.1.0/app/workspace.py +138 -0
  173. wade_ai-0.1.0/pyproject.toml +146 -0
  174. wade_ai-0.1.0/setup.cfg +4 -0
  175. wade_ai-0.1.0/tests/test_blink_migration.py +49 -0
  176. wade_ai-0.1.0/tests/test_classifier.py +72 -0
  177. wade_ai-0.1.0/tests/test_credentials.py +84 -0
  178. wade_ai-0.1.0/tests/test_critic_parallel.py +117 -0
  179. wade_ai-0.1.0/tests/test_inference_keep_alive.py +81 -0
  180. wade_ai-0.1.0/tests/test_model_manager.py +27 -0
  181. wade_ai-0.1.0/tests/test_model_router.py +36 -0
  182. wade_ai-0.1.0/tests/test_new_tabs_endpoints.py +26 -0
  183. wade_ai-0.1.0/tests/test_notion_skill.py +349 -0
  184. wade_ai-0.1.0/tests/test_orchestrator_tiers.py +202 -0
  185. wade_ai-0.1.0/tests/test_planner_simple.py +53 -0
  186. wade_ai-0.1.0/wade_ai.egg-info/PKG-INFO +329 -0
  187. wade_ai-0.1.0/wade_ai.egg-info/SOURCES.txt +189 -0
  188. wade_ai-0.1.0/wade_ai.egg-info/dependency_links.txt +1 -0
  189. wade_ai-0.1.0/wade_ai.egg-info/entry_points.txt +2 -0
  190. wade_ai-0.1.0/wade_ai.egg-info/requires.txt +51 -0
  191. wade_ai-0.1.0/wade_ai.egg-info/top_level.txt +1 -0
wade_ai-0.1.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 W.A.D.E. Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,14 @@
1
+ # Include all bundled static assets and personality templates
2
+ recursive-include app/static *
3
+ recursive-include app/templates *.md
4
+ recursive-include app/templates *.yaml
5
+ recursive-include app/assets *
6
+
7
+ # Include top-level config/docs
8
+ include README.md
9
+ include LICENSE
10
+
11
+ # Exclude compiled/cache artifacts
12
+ global-exclude __pycache__
13
+ global-exclude *.py[cod]
14
+ global-exclude *.egg-info
wade_ai-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,329 @@
1
+ Metadata-Version: 2.4
2
+ Name: wade-ai
3
+ Version: 0.1.0
4
+ Summary: W.A.D.E. — A local, privacy-first AI assistant that runs entirely on your machine.
5
+ License: MIT
6
+ Project-URL: Homepage, https://github.com/turntducky/wade-ai
7
+ Project-URL: Changelog, https://github.com/turntducky/wade-ai/blob/main/CHANGELOG.md
8
+ Project-URL: Issues, https://github.com/turntducky/wade-ai/issues
9
+ Keywords: ai,assistant,llm,local-ai,voice,offline
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Intended Audience :: End Users/Desktop
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
19
+ Requires-Python: >=3.10
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+ Requires-Dist: fastapi>=0.115.0
23
+ Requires-Dist: uvicorn[standard]>=0.30.0
24
+ Requires-Dist: pydantic>=2.7.0
25
+ Requires-Dist: httpx>=0.27.0
26
+ Requires-Dist: aiohttp>=3.9.0
27
+ Requires-Dist: requests>=2.31.0
28
+ Requires-Dist: PyYAML>=6.0.0
29
+ Requires-Dist: psutil>=6.0.0
30
+ Requires-Dist: numpy>=1.26.0
31
+ Requires-Dist: scipy>=1.11.0
32
+ Requires-Dist: sympy>=1.12.0
33
+ Requires-Dist: pandas>=2.0.0
34
+ Requires-Dist: jsonschema>=4.0.0
35
+ Requires-Dist: dateparser>=1.1.0
36
+ Requires-Dist: pycountry>=23.12.11
37
+ Requires-Dist: APScheduler>=3.10.0
38
+ Requires-Dist: watchdog>=4.0.0
39
+ Requires-Dist: Pillow>=10.0.0
40
+ Requires-Dist: mss>=9.0.0
41
+ Requires-Dist: yfinance>=0.2.0
42
+ Requires-Dist: ddgs>=9.0.0
43
+ Requires-Dist: notion-client>=2.2.0
44
+ Requires-Dist: blinkpy>=0.22.0
45
+ Requires-Dist: spotipy>=2.23.0
46
+ Requires-Dist: openai>=1.0.0
47
+ Provides-Extra: llm
48
+ Requires-Dist: llama-cpp-python>=0.3.0; extra == "llm"
49
+ Requires-Dist: transformers>=4.40.0; extra == "llm"
50
+ Requires-Dist: sentence-transformers>=3.0.0; extra == "llm"
51
+ Requires-Dist: chromadb>=1.0.0; extra == "llm"
52
+ Requires-Dist: torch>=2.0.0; extra == "llm"
53
+ Provides-Extra: voice
54
+ Requires-Dist: sounddevice>=0.4.6; extra == "voice"
55
+ Requires-Dist: openai-whisper>=20230918; extra == "voice"
56
+ Requires-Dist: kokoro-onnx>=0.4.0; extra == "voice"
57
+ Requires-Dist: openwakeword>=0.6.0; extra == "voice"
58
+ Requires-Dist: onnxruntime>=1.17.0; extra == "voice"
59
+ Provides-Extra: web
60
+ Requires-Dist: playwright>=1.40.0; extra == "web"
61
+ Provides-Extra: all
62
+ Requires-Dist: wade-ai[llm,voice,web]; extra == "all"
63
+ Provides-Extra: dev
64
+ Requires-Dist: pytest>=8.0.0; extra == "dev"
65
+ Requires-Dist: pytest-asyncio>=0.23.0; extra == "dev"
66
+ Requires-Dist: pytest-timeout>=2.3.0; extra == "dev"
67
+ Requires-Dist: httpx>=0.27.0; extra == "dev"
68
+ Dynamic: license-file
69
+
70
+ # W.A.D.E. — Wireless Autonomous Digital Entity
71
+ ### The Local-First Autonomous Runtime. Own your intelligence.
72
+
73
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
74
+ [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
75
+ [![Version](https://img.shields.io/badge/version-0.1.0--beta-green.svg)](https://github.com/turntducky/wade-ai/releases)
76
+ [![GitHub Stars](https://img.shields.io/github/stars/turntducky/wade-ai?style=social)](https://github.com/turntducky/wade-ai/stargazers)
77
+ [![GitHub Forks](https://img.shields.io/github/forks/turntducky/wade-ai?style=social)](https://github.com/turntducky/wade-ai/network/members)
78
+
79
+ W.A.D.E. transforms your machine into an always-on, local autonomous runtime engineered to track context, monitor your environment, and process events proactively—aiming to keep your intelligence under your direct control.
80
+
81
+ It is not a passive interface or a chatbot framework. It is designed as a **personal AI infrastructure layer** that runs continuously as a background daemon within your operating system.
82
+
83
+ **W.A.D.E. is not prompt-bound. It is always running.**
84
+
85
+ ---
86
+
87
+ ## ⚡ W.A.D.E. in Motion: An Illustrative Execution Trace
88
+ To understand W.A.D.E., you have to look past the standard prompt box. Here is a representative scenario of how the architecture processes environmental changes asynchronously:
89
+
90
+ > You open your laptop. W.A.D.E. is running silently as a background service. Via its local event listener, it registers that you just pulled a broken upstream commit in your active repository. By ingesting the background error logs generated during compilation, it isolates the missing dependency, maps the structural break, and stages a local git patch. When you open the God Mode HUD, the system isn't waiting for a question—it is waiting for approval to apply the fix.
91
+
92
+ ### The Real-World Loop:
93
+ ```text
94
+ [OS Event: FS_WRITE] ──> You save a broken python file
95
+ [Event Bus] ──> Direct ingestion of system telemetry into structured cognitive signals
96
+ [Planner Loop] ──> Executor spins up sandboxed linting tool & catches exception
97
+ [Critic Verdict] ──> Validates a 3-line patch via local model reasoning
98
+ [Trinity Memory] ──> Logs the fix into Episodic Memory; updates your long-term Dev profile
99
+ ```
100
+
101
+ ---
102
+
103
+ ## 🚫 What W.A.D.E. is NOT
104
+ To understand what W.A.D.E. is building, it helps to understand what it explicitly avoids:
105
+
106
+ - **NOT a Chatbot Wrapper:** It is not an alternate UI for sending prompt strings to cloud APIs.
107
+ - **NOT a Simple Orchestration Framework:** It is an asynchronous execution runtime, not a linear chain of hardcoded prompt scripts.
108
+ - **NOT a Cloud-Dependent Agent System:** The core engine is architected to operate entirely without internet access, keeping data localized to your hardware.
109
+ - **NOT an OS Replacement:** It sits on top of your existing operating system as an observational substrate, managing background workflows via standard system APIs.
110
+
111
+ ---
112
+
113
+ ## 👨‍💻 Founder Note
114
+ > I’m a 24-year-old solo dev building W.A.D.E. because I believe intelligence should be owned, not rented.
115
+ > The architecture of modern AI forces an unacceptable compromise: trading privacy for utility. W.A.D.E. breaks that cycle by creating a system that lives entirely on local hardware, adapts to its user over time, and never requires surrendering personal data to external infrastructure. This is a commitment to absolute digital autonomy, privacy, and building a foundation for personal intelligence that outlives ephemeral corporate platforms.
116
+ > On a personal note, as a soon-to-be father, this project has a deeper timeline. I want my daughter to grow up in a world where her digital assistant belongs entirely to her—not a corporation harvesting her data. W.A.D.E. is my bet on a future where privacy and autonomy are human rights, not product features. Every line of code is written to ensure that the user, not the provider, is in control.
117
+ > — *turnt ducky*
118
+
119
+ ---
120
+
121
+ ## 🏗️ Why W.A.D.E.?
122
+ - **Local Sovereignty:** Engineered for zero data leakage. Every byte—chat logs, personal facts, and vector embeddings—is kept on your hardware. W.A.D.E. interfaces natively with Ollama, eliminating mandatory subscription dependencies.
123
+ - **System Observability:** Instead of waiting for manual user input, W.A.D.E. maps OS-level events (`FS_CHANGE`, `SYS_THRESHOLD`) directly into its context layer via the **OS-to-Cognition Event Bus**, translating raw system telemetry into live cognitive signals.
124
+ - **Escalated Cognitive Scaling:** Local-first execution with optional, configurable escalation to frontier models **(GPT-4o, Claude 3.5, or Gemini)** via namespace tags when reasoning depth exceeds local hardware capacity.
125
+ - **Extensible Tool Construction:** Implement capabilities using the `@wade_tool` SDK. Build type-safe, sandboxed Python skills that hot-reload without forcing a runtime restart.
126
+
127
+ ---
128
+
129
+ ## 🛡️ Deterministic Guardrails & Safety
130
+ Autonomy requires trust. W.A.D.E. operates under strict behavioral boundaries to ensure system stability:
131
+
132
+ - **Configurable Permissions Thresholds:** No destructive autonomous actions (e.g., git commits, shell executions, filesystem deletions) are performed without explicit, user-defined permission gates.
133
+ - ***Sandboxed Execution Environments:** Tools run inside isolated sub-processes, restricting access to designated directories and verified local APIs.
134
+ - **Manual Overrides:** The daemon can be restricted to low-impact "Observation Mode" at any time, silencing execution capabilities while maintaining memory continuity.
135
+
136
+ ---
137
+
138
+ ## ⚡ God Mode: Live Cognitive Visibility
139
+ *Observability is the bridge between a black box and a trusted system.*
140
+
141
+ W.A.D.E. exposes its internal reasoning process as a live graph via the God Mode HUD. Think of it as a low-overhead debugger for cognition itself—allowing you to inspect how plans form, mutate, and execute.
142
+
143
+ **The God Mode HUD displays:**
144
+ - Live task graph evolution (nodes forming, splitting, and converging as OS events fire)
145
+ - Planner -> Executor -> Critic decision flow
146
+ - Live memory transactions and vector repository injections as they occur
147
+ - Isolated tool execution logs and sandbox diagnostics
148
+ - Probability distribution and confidence shifts across active reasoning paths
149
+
150
+ ---
151
+
152
+ ## 🧠 Core Systems
153
+ ### 1. OS-to-Cognition Event Bus (Core Moat Layer)
154
+ W.A.D.E. utilizes a three-tier memory architecture to establish continuous context across long execution windows:
155
+
156
+ - **Short-Term Memory:** Sliding-window working logs featuring dynamic token trimming for active task execution threads.
157
+ - **Episodic Memory:** A temporal SQLite database archiving local system events, history, facts, and tool execution logs.
158
+ - **Semantic Memory:** A ChromaDB-backed long-term knowledge graph gated by strict relevance-score filtering for targeted vector retrieval.
159
+
160
+ ### 2. Multi-Agent Execution Pipeline (Reasoning & Safety)
161
+ Every inferred target is processed through a coordinated validation loop:
162
+
163
+ - **Planner:** Translates complex top-level requests into dependency-ordered task graphs, grounded via Context Fusion from live system signals.
164
+ - **Executor:** An isolated engine that runs platform commands and tool workflows safely, featuring built-in recursion tracking and loop detection.
165
+ - **Critic:** A stateful validator evaluating tool performance against safety constraints, capable of halting execution or escalating tasks to higher-parameter models when confidence thresholds break.
166
+
167
+ ### 3. OS-to-Cognition Event Bus (The Observational Layer)
168
+ The primary architectural moat. It handles the low-level interception and conversion of operating system and hardware vitals into structured, semantic signals for the memory and execution pipelines. It is the system's underlying sensory mechanism, tracking events like filesystem mutations and background logs without interrupting active user workflows.
169
+
170
+ ---
171
+
172
+ ## 🔁 Architecture Overview
173
+ ```text
174
+ OS + User + System Signals (FS_CHANGE, SYS_THRESHOLD)
175
+
176
+ OS-to-Cognition Event Bus
177
+ (System Signal Interpreter)
178
+
179
+ Cognitive Execution Loop
180
+ (Planner → Executor → Critic)
181
+
182
+ Trinity Memory Layer
183
+ (Short-Term | Episodic | Semantic)
184
+
185
+ Tool / System Actions
186
+
187
+ Continuous Feedback Loop
188
+ ```
189
+
190
+ Detailed system architecture:
191
+ ```text
192
+ ┌──────────────────────┐
193
+ │ Operating System │
194
+ └─────────┬────────────┘
195
+
196
+
197
+ ┌──────────────────────────────┐
198
+ │ OS-to-Cognition Event Bus │
199
+ │ (System Signal Interpreter) │
200
+ └──────────────┬───────────────┘
201
+
202
+
203
+ ┌──────────────────────────────┐
204
+ │ Cognitive Execution Loop │
205
+ │ Planner → Executor → Critic │
206
+ └──────────────┬───────────────┘
207
+
208
+
209
+ ┌──────────────────────────────┐
210
+ │ Trinity Memory │
211
+ └──────────────┬───────────────┘
212
+
213
+
214
+ ┌──────────────────────────────┐
215
+ │ Skills / Tool Layer │
216
+ └──────────────────────────────┘
217
+ ```
218
+
219
+ ---
220
+
221
+ ## 🚀 Quick Start
222
+ Within seconds, your machine becomes a reactive cognitive system.
223
+
224
+ ### Prerequisites
225
+ - Python 3.10+
226
+ - [Ollama](https://ollama.com/) (Recommended for Local-Only)
227
+ - FFmpeg (Required for localized voice processing)
228
+
229
+ ### Install & Launch
230
+ ```bash
231
+ # Install the cognitive runtime
232
+ pip install "wade-ai[all]"
233
+
234
+ # Interactive setup (Hardware Scan + Cognition Source selection)
235
+ wade setup
236
+
237
+ # Boot the entity
238
+ wade start
239
+
240
+ # Open the dashboard
241
+ wade ui
242
+ ```
243
+
244
+ ###📦 What Happens Post-Installation?
245
+ Once started, W.A.D.E. initializes as a background loop daemon (`waded`) and registers the following resources locally:
246
+
247
+ - **Local API Server:** Hosted at `localhost:8085` to interface with your system shell and IDE plugins.
248
+ - **Web UI Dashboard:** Accessible via `wade ui` to monitor metrics, modify configuration tables, and adjust agent constraints.
249
+ - **Active Event Listener:** Attaches low-level hooks to file changes and process changes in designated work paths.
250
+ - **Isolated Skill Runtime:** Mounts a secure runtime directory for loading custom code modules.
251
+
252
+ ---
253
+
254
+ ## 🛠️ The Skill Layer & Tool Ecosystem
255
+ W.A.D.E. is an extensible substrate. Skills are modular cognitive capabilities that plug directly into the core runtime. If you can define a capability, you can compile it into a Skill, allowing W.A.D.E. to adapt to any workflow instantly.
256
+
257
+ ### Writing a Custom Skill
258
+ Developers can extend W.A.D.E.'s execution layer instantly using the type-safe Python SDK. Tools hot-reload into the system daemon without requiring an environment restart:
259
+
260
+ ```python
261
+ from wade.sdk import wade_tool
262
+ from wade.core.context import WorkspaceContext
263
+
264
+ @wade_tool(
265
+ name="analyze_workspace_health",
266
+ description="Audits local repo status when a file system change breaks tests."
267
+ )
268
+ async def analyze_workspace_health(ctx: WorkspaceContext, repo_path: str) -> dict:
269
+ # Skills hook directly into the low-latency OS-to-Cognition Event Bus
270
+ vitals = await ctx.system.get_git_status(repo_path)
271
+ if vitals.has_untracked_failures:
272
+ return {"status": "degraded", "suggested_patch": vitals.last_diff}
273
+ return {"status": "nominal"}
274
+ ```
275
+
276
+ ### Out-of-the-Box Capabilities (60+ Built-in Tools)
277
+ W.A.D.E. ships pre-configured with a comprehensive suite of native tools to immediately manipulate and interface with your digital environment:
278
+
279
+ | Category | Modules & Capabilities |
280
+ | :--- | :--- |
281
+ | 💻 **Workspace** | Git (Commit/Diff tracking), Multi-File Patching, Dependency Tree Mapping |
282
+ | 🛠️ **Dev Utilities** | Automated Code Review, Sandboxed Python Execution, Log Analysis, Feature Dev Pipelines |
283
+ | 🌐 **Web Cognition** | Iterative Deep Research, Playwright Browser Control, Live News Intel |
284
+ | 🛰️ **Recon & Data** | Flight Telemetry Parsing, Real-Time Market Data, Vision-Based UI Analysis |
285
+ | 🏠 **Integrations** | Notion Workspace Sync, Spotify API, Blink Camera Feeds, WhatsApp (Group & Voice Management) |
286
+ | ⚙️ **System Control** | Hardware Vitals Auditing, Hot Reloading, Cognitive-Escalation Hooks |
287
+
288
+ ---
289
+
290
+ ## 🗺️ Roadmap
291
+ - [x] **Multi-Provider LLM Support** (OpenAI, Gemini, Claude)
292
+ - [x] **OS-to-Cognition Event Bus** (Context Fusion grounded planning)
293
+ - [x] **Trinity Memory System** (Short-Term, Episodic, and Semantic Tiers)
294
+ - [x] **God Mode** Observability HUD & System Graph
295
+ - [ ] **Near-term:** Proactive Cognition (Saliency-driven autonomous task creation)
296
+ - [ ] **Near-term:** Mobile Companion Runtime & App (iOS/Android)
297
+ - [ ] **Mid-term:** Local Workspace Sync (Native Email/Calendar for Thunderbird & Outlook)
298
+ - [ ] **Mid-term:** Expanded Skill Marketplace Ecosystem
299
+ - [ ] **Long-term:** Distributed Home Voice Nodes (Raspberry Pi hardware modules for local home audio)
300
+ - [ ] **Long-term:** Persistent Multi-Device Memory Fabric & Fully Autonomous Background Agents
301
+
302
+ ---
303
+
304
+ ## 🤝 Contributing
305
+ W.A.D.E. is a movement for local autonomy and open cognitive infrastructure. We welcome contributions ranging from core reasoning improvements to new modular features.
306
+
307
+ - **Build a Skill:** Tap into the type-safe `wade_tool` SDK to expand capabilities.
308
+ - **Refine the Core:** Optimize memory systems, safety guardrails, or event-bus latency. Check out our `tests/` suite.
309
+ - **Connect:** Join our community spaces to share ideas, updates, and custom configurations.
310
+
311
+ **Discussions**: [GitHub Issues + PRs](https://github.com/turntducky/wade-ai)
312
+ **Updates**: [Follow W.A.D.E on X/Twitter](https://x.com/turntducky)
313
+
314
+ ---
315
+
316
+ ## ⚖️ License & Ecosystem
317
+ W.A.D.E. Core is permanently **MIT Licensed**. The core runtime will always remain entirely open source, local-first, and free for individual developers.
318
+
319
+ Future modular layers may include optional secure cloud sync infrastructure, distributed multi-device orchestration tools, and enterprise cognitive management systems. These commercial features will extend utility for production teams without ever constraining or locking down the core open-source engine.
320
+
321
+ ---
322
+
323
+ ## ⭐ Support Local Intelligence
324
+ If this project resonates with the idea of local-first, user-owned computing architecture, **consider starring this repository**. It helps signal to the open-source community that personal AI infrastructure should remain decentralized, open, and fully within individual control.
325
+
326
+ ---
327
+
328
+ <p align="center"> Built as infrastructure for personal intelligence; not software, but a new computing layer. </p>
329
+ <p align="center"> Developed by <b> turnt ducky </b>.</p>
@@ -0,0 +1,260 @@
1
+ # W.A.D.E. — Wireless Autonomous Digital Entity
2
+ ### The Local-First Autonomous Runtime. Own your intelligence.
3
+
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+ [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
6
+ [![Version](https://img.shields.io/badge/version-0.1.0--beta-green.svg)](https://github.com/turntducky/wade-ai/releases)
7
+ [![GitHub Stars](https://img.shields.io/github/stars/turntducky/wade-ai?style=social)](https://github.com/turntducky/wade-ai/stargazers)
8
+ [![GitHub Forks](https://img.shields.io/github/forks/turntducky/wade-ai?style=social)](https://github.com/turntducky/wade-ai/network/members)
9
+
10
+ W.A.D.E. transforms your machine into an always-on, local autonomous runtime engineered to track context, monitor your environment, and process events proactively—aiming to keep your intelligence under your direct control.
11
+
12
+ It is not a passive interface or a chatbot framework. It is designed as a **personal AI infrastructure layer** that runs continuously as a background daemon within your operating system.
13
+
14
+ **W.A.D.E. is not prompt-bound. It is always running.**
15
+
16
+ ---
17
+
18
+ ## ⚡ W.A.D.E. in Motion: An Illustrative Execution Trace
19
+ To understand W.A.D.E., you have to look past the standard prompt box. Here is a representative scenario of how the architecture processes environmental changes asynchronously:
20
+
21
+ > You open your laptop. W.A.D.E. is running silently as a background service. Via its local event listener, it registers that you just pulled a broken upstream commit in your active repository. By ingesting the background error logs generated during compilation, it isolates the missing dependency, maps the structural break, and stages a local git patch. When you open the God Mode HUD, the system isn't waiting for a question—it is waiting for approval to apply the fix.
22
+
23
+ ### The Real-World Loop:
24
+ ```text
25
+ [OS Event: FS_WRITE] ──> You save a broken python file
26
+ [Event Bus] ──> Direct ingestion of system telemetry into structured cognitive signals
27
+ [Planner Loop] ──> Executor spins up sandboxed linting tool & catches exception
28
+ [Critic Verdict] ──> Validates a 3-line patch via local model reasoning
29
+ [Trinity Memory] ──> Logs the fix into Episodic Memory; updates your long-term Dev profile
30
+ ```
31
+
32
+ ---
33
+
34
+ ## 🚫 What W.A.D.E. is NOT
35
+ To understand what W.A.D.E. is building, it helps to understand what it explicitly avoids:
36
+
37
+ - **NOT a Chatbot Wrapper:** It is not an alternate UI for sending prompt strings to cloud APIs.
38
+ - **NOT a Simple Orchestration Framework:** It is an asynchronous execution runtime, not a linear chain of hardcoded prompt scripts.
39
+ - **NOT a Cloud-Dependent Agent System:** The core engine is architected to operate entirely without internet access, keeping data localized to your hardware.
40
+ - **NOT an OS Replacement:** It sits on top of your existing operating system as an observational substrate, managing background workflows via standard system APIs.
41
+
42
+ ---
43
+
44
+ ## 👨‍💻 Founder Note
45
+ > I’m a 24-year-old solo dev building W.A.D.E. because I believe intelligence should be owned, not rented.
46
+ > The architecture of modern AI forces an unacceptable compromise: trading privacy for utility. W.A.D.E. breaks that cycle by creating a system that lives entirely on local hardware, adapts to its user over time, and never requires surrendering personal data to external infrastructure. This is a commitment to absolute digital autonomy, privacy, and building a foundation for personal intelligence that outlives ephemeral corporate platforms.
47
+ > On a personal note, as a soon-to-be father, this project has a deeper timeline. I want my daughter to grow up in a world where her digital assistant belongs entirely to her—not a corporation harvesting her data. W.A.D.E. is my bet on a future where privacy and autonomy are human rights, not product features. Every line of code is written to ensure that the user, not the provider, is in control.
48
+ > — *turnt ducky*
49
+
50
+ ---
51
+
52
+ ## 🏗️ Why W.A.D.E.?
53
+ - **Local Sovereignty:** Engineered for zero data leakage. Every byte—chat logs, personal facts, and vector embeddings—is kept on your hardware. W.A.D.E. interfaces natively with Ollama, eliminating mandatory subscription dependencies.
54
+ - **System Observability:** Instead of waiting for manual user input, W.A.D.E. maps OS-level events (`FS_CHANGE`, `SYS_THRESHOLD`) directly into its context layer via the **OS-to-Cognition Event Bus**, translating raw system telemetry into live cognitive signals.
55
+ - **Escalated Cognitive Scaling:** Local-first execution with optional, configurable escalation to frontier models **(GPT-4o, Claude 3.5, or Gemini)** via namespace tags when reasoning depth exceeds local hardware capacity.
56
+ - **Extensible Tool Construction:** Implement capabilities using the `@wade_tool` SDK. Build type-safe, sandboxed Python skills that hot-reload without forcing a runtime restart.
57
+
58
+ ---
59
+
60
+ ## 🛡️ Deterministic Guardrails & Safety
61
+ Autonomy requires trust. W.A.D.E. operates under strict behavioral boundaries to ensure system stability:
62
+
63
+ - **Configurable Permissions Thresholds:** No destructive autonomous actions (e.g., git commits, shell executions, filesystem deletions) are performed without explicit, user-defined permission gates.
64
+ - ***Sandboxed Execution Environments:** Tools run inside isolated sub-processes, restricting access to designated directories and verified local APIs.
65
+ - **Manual Overrides:** The daemon can be restricted to low-impact "Observation Mode" at any time, silencing execution capabilities while maintaining memory continuity.
66
+
67
+ ---
68
+
69
+ ## ⚡ God Mode: Live Cognitive Visibility
70
+ *Observability is the bridge between a black box and a trusted system.*
71
+
72
+ W.A.D.E. exposes its internal reasoning process as a live graph via the God Mode HUD. Think of it as a low-overhead debugger for cognition itself—allowing you to inspect how plans form, mutate, and execute.
73
+
74
+ **The God Mode HUD displays:**
75
+ - Live task graph evolution (nodes forming, splitting, and converging as OS events fire)
76
+ - Planner -> Executor -> Critic decision flow
77
+ - Live memory transactions and vector repository injections as they occur
78
+ - Isolated tool execution logs and sandbox diagnostics
79
+ - Probability distribution and confidence shifts across active reasoning paths
80
+
81
+ ---
82
+
83
+ ## 🧠 Core Systems
84
+ ### 1. OS-to-Cognition Event Bus (Core Moat Layer)
85
+ W.A.D.E. utilizes a three-tier memory architecture to establish continuous context across long execution windows:
86
+
87
+ - **Short-Term Memory:** Sliding-window working logs featuring dynamic token trimming for active task execution threads.
88
+ - **Episodic Memory:** A temporal SQLite database archiving local system events, history, facts, and tool execution logs.
89
+ - **Semantic Memory:** A ChromaDB-backed long-term knowledge graph gated by strict relevance-score filtering for targeted vector retrieval.
90
+
91
+ ### 2. Multi-Agent Execution Pipeline (Reasoning & Safety)
92
+ Every inferred target is processed through a coordinated validation loop:
93
+
94
+ - **Planner:** Translates complex top-level requests into dependency-ordered task graphs, grounded via Context Fusion from live system signals.
95
+ - **Executor:** An isolated engine that runs platform commands and tool workflows safely, featuring built-in recursion tracking and loop detection.
96
+ - **Critic:** A stateful validator evaluating tool performance against safety constraints, capable of halting execution or escalating tasks to higher-parameter models when confidence thresholds break.
97
+
98
+ ### 3. OS-to-Cognition Event Bus (The Observational Layer)
99
+ The primary architectural moat. It handles the low-level interception and conversion of operating system and hardware vitals into structured, semantic signals for the memory and execution pipelines. It is the system's underlying sensory mechanism, tracking events like filesystem mutations and background logs without interrupting active user workflows.
100
+
101
+ ---
102
+
103
+ ## 🔁 Architecture Overview
104
+ ```text
105
+ OS + User + System Signals (FS_CHANGE, SYS_THRESHOLD)
106
+
107
+ OS-to-Cognition Event Bus
108
+ (System Signal Interpreter)
109
+
110
+ Cognitive Execution Loop
111
+ (Planner → Executor → Critic)
112
+
113
+ Trinity Memory Layer
114
+ (Short-Term | Episodic | Semantic)
115
+
116
+ Tool / System Actions
117
+
118
+ Continuous Feedback Loop
119
+ ```
120
+
121
+ Detailed system architecture:
122
+ ```text
123
+ ┌──────────────────────┐
124
+ │ Operating System │
125
+ └─────────┬────────────┘
126
+
127
+
128
+ ┌──────────────────────────────┐
129
+ │ OS-to-Cognition Event Bus │
130
+ │ (System Signal Interpreter) │
131
+ └──────────────┬───────────────┘
132
+
133
+
134
+ ┌──────────────────────────────┐
135
+ │ Cognitive Execution Loop │
136
+ │ Planner → Executor → Critic │
137
+ └──────────────┬───────────────┘
138
+
139
+
140
+ ┌──────────────────────────────┐
141
+ │ Trinity Memory │
142
+ └──────────────┬───────────────┘
143
+
144
+
145
+ ┌──────────────────────────────┐
146
+ │ Skills / Tool Layer │
147
+ └──────────────────────────────┘
148
+ ```
149
+
150
+ ---
151
+
152
+ ## 🚀 Quick Start
153
+ Within seconds, your machine becomes a reactive cognitive system.
154
+
155
+ ### Prerequisites
156
+ - Python 3.10+
157
+ - [Ollama](https://ollama.com/) (Recommended for Local-Only)
158
+ - FFmpeg (Required for localized voice processing)
159
+
160
+ ### Install & Launch
161
+ ```bash
162
+ # Install the cognitive runtime
163
+ pip install "wade-ai[all]"
164
+
165
+ # Interactive setup (Hardware Scan + Cognition Source selection)
166
+ wade setup
167
+
168
+ # Boot the entity
169
+ wade start
170
+
171
+ # Open the dashboard
172
+ wade ui
173
+ ```
174
+
175
+ ###📦 What Happens Post-Installation?
176
+ Once started, W.A.D.E. initializes as a background loop daemon (`waded`) and registers the following resources locally:
177
+
178
+ - **Local API Server:** Hosted at `localhost:8085` to interface with your system shell and IDE plugins.
179
+ - **Web UI Dashboard:** Accessible via `wade ui` to monitor metrics, modify configuration tables, and adjust agent constraints.
180
+ - **Active Event Listener:** Attaches low-level hooks to file changes and process changes in designated work paths.
181
+ - **Isolated Skill Runtime:** Mounts a secure runtime directory for loading custom code modules.
182
+
183
+ ---
184
+
185
+ ## 🛠️ The Skill Layer & Tool Ecosystem
186
+ W.A.D.E. is an extensible substrate. Skills are modular cognitive capabilities that plug directly into the core runtime. If you can define a capability, you can compile it into a Skill, allowing W.A.D.E. to adapt to any workflow instantly.
187
+
188
+ ### Writing a Custom Skill
189
+ Developers can extend W.A.D.E.'s execution layer instantly using the type-safe Python SDK. Tools hot-reload into the system daemon without requiring an environment restart:
190
+
191
+ ```python
192
+ from wade.sdk import wade_tool
193
+ from wade.core.context import WorkspaceContext
194
+
195
+ @wade_tool(
196
+ name="analyze_workspace_health",
197
+ description="Audits local repo status when a file system change breaks tests."
198
+ )
199
+ async def analyze_workspace_health(ctx: WorkspaceContext, repo_path: str) -> dict:
200
+ # Skills hook directly into the low-latency OS-to-Cognition Event Bus
201
+ vitals = await ctx.system.get_git_status(repo_path)
202
+ if vitals.has_untracked_failures:
203
+ return {"status": "degraded", "suggested_patch": vitals.last_diff}
204
+ return {"status": "nominal"}
205
+ ```
206
+
207
+ ### Out-of-the-Box Capabilities (60+ Built-in Tools)
208
+ W.A.D.E. ships pre-configured with a comprehensive suite of native tools to immediately manipulate and interface with your digital environment:
209
+
210
+ | Category | Modules & Capabilities |
211
+ | :--- | :--- |
212
+ | 💻 **Workspace** | Git (Commit/Diff tracking), Multi-File Patching, Dependency Tree Mapping |
213
+ | 🛠️ **Dev Utilities** | Automated Code Review, Sandboxed Python Execution, Log Analysis, Feature Dev Pipelines |
214
+ | 🌐 **Web Cognition** | Iterative Deep Research, Playwright Browser Control, Live News Intel |
215
+ | 🛰️ **Recon & Data** | Flight Telemetry Parsing, Real-Time Market Data, Vision-Based UI Analysis |
216
+ | 🏠 **Integrations** | Notion Workspace Sync, Spotify API, Blink Camera Feeds, WhatsApp (Group & Voice Management) |
217
+ | ⚙️ **System Control** | Hardware Vitals Auditing, Hot Reloading, Cognitive-Escalation Hooks |
218
+
219
+ ---
220
+
221
+ ## 🗺️ Roadmap
222
+ - [x] **Multi-Provider LLM Support** (OpenAI, Gemini, Claude)
223
+ - [x] **OS-to-Cognition Event Bus** (Context Fusion grounded planning)
224
+ - [x] **Trinity Memory System** (Short-Term, Episodic, and Semantic Tiers)
225
+ - [x] **God Mode** Observability HUD & System Graph
226
+ - [ ] **Near-term:** Proactive Cognition (Saliency-driven autonomous task creation)
227
+ - [ ] **Near-term:** Mobile Companion Runtime & App (iOS/Android)
228
+ - [ ] **Mid-term:** Local Workspace Sync (Native Email/Calendar for Thunderbird & Outlook)
229
+ - [ ] **Mid-term:** Expanded Skill Marketplace Ecosystem
230
+ - [ ] **Long-term:** Distributed Home Voice Nodes (Raspberry Pi hardware modules for local home audio)
231
+ - [ ] **Long-term:** Persistent Multi-Device Memory Fabric & Fully Autonomous Background Agents
232
+
233
+ ---
234
+
235
+ ## 🤝 Contributing
236
+ W.A.D.E. is a movement for local autonomy and open cognitive infrastructure. We welcome contributions ranging from core reasoning improvements to new modular features.
237
+
238
+ - **Build a Skill:** Tap into the type-safe `wade_tool` SDK to expand capabilities.
239
+ - **Refine the Core:** Optimize memory systems, safety guardrails, or event-bus latency. Check out our `tests/` suite.
240
+ - **Connect:** Join our community spaces to share ideas, updates, and custom configurations.
241
+
242
+ **Discussions**: [GitHub Issues + PRs](https://github.com/turntducky/wade-ai)
243
+ **Updates**: [Follow W.A.D.E on X/Twitter](https://x.com/turntducky)
244
+
245
+ ---
246
+
247
+ ## ⚖️ License & Ecosystem
248
+ W.A.D.E. Core is permanently **MIT Licensed**. The core runtime will always remain entirely open source, local-first, and free for individual developers.
249
+
250
+ Future modular layers may include optional secure cloud sync infrastructure, distributed multi-device orchestration tools, and enterprise cognitive management systems. These commercial features will extend utility for production teams without ever constraining or locking down the core open-source engine.
251
+
252
+ ---
253
+
254
+ ## ⭐ Support Local Intelligence
255
+ If this project resonates with the idea of local-first, user-owned computing architecture, **consider starring this repository**. It helps signal to the open-source community that personal AI infrastructure should remain decentralized, open, and fully within individual control.
256
+
257
+ ---
258
+
259
+ <p align="center"> Built as infrastructure for personal intelligence; not software, but a new computing layer. </p>
260
+ <p align="center"> Developed by <b> turnt ducky </b>.</p>
File without changes
File without changes