ownr 0.2.0b1__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 (129) hide show
  1. ownr-0.2.0b1/PKG-INFO +35 -0
  2. ownr-0.2.0b1/README.md +1274 -0
  3. ownr-0.2.0b1/claim_engine/__init__.py +33 -0
  4. ownr-0.2.0b1/claim_engine/claim_inferrer.py +2268 -0
  5. ownr-0.2.0b1/claim_engine/claims_writer.py +534 -0
  6. ownr-0.2.0b1/claim_engine/concept_seeds.py +242 -0
  7. ownr-0.2.0b1/claim_engine/contradiction_map.py +14 -0
  8. ownr-0.2.0b1/claim_engine/digest.py +387 -0
  9. ownr-0.2.0b1/claim_engine/domain_clusterer.py +134 -0
  10. ownr-0.2.0b1/claim_engine/enrich.py +234 -0
  11. ownr-0.2.0b1/claim_engine/entity_resolver.py +336 -0
  12. ownr-0.2.0b1/claim_engine/eval_harness.py +124 -0
  13. ownr-0.2.0b1/claim_engine/features.py +330 -0
  14. ownr-0.2.0b1/claim_engine/feedback.py +367 -0
  15. ownr-0.2.0b1/claim_engine/freshness_tagger.py +33 -0
  16. ownr-0.2.0b1/claim_engine/graph_builder.py +231 -0
  17. ownr-0.2.0b1/claim_engine/insights.py +210 -0
  18. ownr-0.2.0b1/claim_engine/profile.py +200 -0
  19. ownr-0.2.0b1/claim_engine/profile_bootstrap.py +151 -0
  20. ownr-0.2.0b1/claim_engine/run.py +624 -0
  21. ownr-0.2.0b1/claim_engine/schema.py +85 -0
  22. ownr-0.2.0b1/claim_engine/semantic_analyzer.py +816 -0
  23. ownr-0.2.0b1/claim_engine/seq_engine.py +319 -0
  24. ownr-0.2.0b1/claim_engine/sessionizer.py +233 -0
  25. ownr-0.2.0b1/claim_engine/signal_harvester.py +814 -0
  26. ownr-0.2.0b1/claim_engine/taxonomy.py +136 -0
  27. ownr-0.2.0b1/claim_engine/user_context.py +88 -0
  28. ownr-0.2.0b1/ownr/__init__.py +0 -0
  29. ownr-0.2.0b1/ownr/autoboot.py +148 -0
  30. ownr-0.2.0b1/ownr/backup.py +979 -0
  31. ownr-0.2.0b1/ownr/cli.py +1315 -0
  32. ownr-0.2.0b1/ownr/collectors/__init__.py +73 -0
  33. ownr-0.2.0b1/ownr/collectors/base.py +61 -0
  34. ownr-0.2.0b1/ownr/collectors/browser.py +320 -0
  35. ownr-0.2.0b1/ownr/collectors/calendar.py +238 -0
  36. ownr-0.2.0b1/ownr/collectors/cli_activity.py +260 -0
  37. ownr-0.2.0b1/ownr/collectors/git_collector.py +206 -0
  38. ownr-0.2.0b1/ownr/collectors/location.py +160 -0
  39. ownr-0.2.0b1/ownr/collectors/system.py +237 -0
  40. ownr-0.2.0b1/ownr/collectors/window.py +156 -0
  41. ownr-0.2.0b1/ownr/config.py +183 -0
  42. ownr-0.2.0b1/ownr/daemon.py +182 -0
  43. ownr-0.2.0b1/ownr/db.py +1030 -0
  44. ownr-0.2.0b1/ownr/device_auth.py +344 -0
  45. ownr-0.2.0b1/ownr/enrich.py +285 -0
  46. ownr-0.2.0b1/ownr/events.py +340 -0
  47. ownr-0.2.0b1/ownr/heartbeat.py +315 -0
  48. ownr-0.2.0b1/ownr/ingest.py +306 -0
  49. ownr-0.2.0b1/ownr/maintenance.py +298 -0
  50. ownr-0.2.0b1/ownr/mcp_http.py +136 -0
  51. ownr-0.2.0b1/ownr/mcp_server.py +727 -0
  52. ownr-0.2.0b1/ownr/migrate.py +237 -0
  53. ownr-0.2.0b1/ownr/persona_refresh.py +409 -0
  54. ownr-0.2.0b1/ownr/pidfile.py +65 -0
  55. ownr-0.2.0b1/ownr/push.py +136 -0
  56. ownr-0.2.0b1/ownr/runlock.py +116 -0
  57. ownr-0.2.0b1/ownr/secretbox.py +110 -0
  58. ownr-0.2.0b1/ownr/shell.py +164 -0
  59. ownr-0.2.0b1/ownr/storage.py +363 -0
  60. ownr-0.2.0b1/ownr/tray_mac.py +57 -0
  61. ownr-0.2.0b1/ownr/tray_windows.py +52 -0
  62. ownr-0.2.0b1/ownr/url_signal.py +550 -0
  63. ownr-0.2.0b1/ownr.egg-info/PKG-INFO +35 -0
  64. ownr-0.2.0b1/ownr.egg-info/SOURCES.txt +127 -0
  65. ownr-0.2.0b1/ownr.egg-info/dependency_links.txt +1 -0
  66. ownr-0.2.0b1/ownr.egg-info/entry_points.txt +2 -0
  67. ownr-0.2.0b1/ownr.egg-info/requires.txt +34 -0
  68. ownr-0.2.0b1/ownr.egg-info/top_level.txt +2 -0
  69. ownr-0.2.0b1/pyproject.toml +145 -0
  70. ownr-0.2.0b1/setup.cfg +4 -0
  71. ownr-0.2.0b1/tests/test_associations.py +129 -0
  72. ownr-0.2.0b1/tests/test_backup.py +590 -0
  73. ownr-0.2.0b1/tests/test_claim_engine_server.py +355 -0
  74. ownr-0.2.0b1/tests/test_claims_writer.py +233 -0
  75. ownr-0.2.0b1/tests/test_cli_commands.py +444 -0
  76. ownr-0.2.0b1/tests/test_cli_honest.py +616 -0
  77. ownr-0.2.0b1/tests/test_client_grants.py +79 -0
  78. ownr-0.2.0b1/tests/test_collectors.py +710 -0
  79. ownr-0.2.0b1/tests/test_dags.py +259 -0
  80. ownr-0.2.0b1/tests/test_dashboard_revoke.py +563 -0
  81. ownr-0.2.0b1/tests/test_deploy_plan.py +293 -0
  82. ownr-0.2.0b1/tests/test_device_auth.py +362 -0
  83. ownr-0.2.0b1/tests/test_digest_metrics.py +106 -0
  84. ownr-0.2.0b1/tests/test_event_ingest.py +257 -0
  85. ownr-0.2.0b1/tests/test_events_writer.py +430 -0
  86. ownr-0.2.0b1/tests/test_features.py +288 -0
  87. ownr-0.2.0b1/tests/test_heartbeat.py +519 -0
  88. ownr-0.2.0b1/tests/test_ingest.py +288 -0
  89. ownr-0.2.0b1/tests/test_insights_digest.py +160 -0
  90. ownr-0.2.0b1/tests/test_lineage.py +78 -0
  91. ownr-0.2.0b1/tests/test_login_ui.py +1683 -0
  92. ownr-0.2.0b1/tests/test_maintenance.py +170 -0
  93. ownr-0.2.0b1/tests/test_management_schema.py +440 -0
  94. ownr-0.2.0b1/tests/test_mcp_corrections.py +275 -0
  95. ownr-0.2.0b1/tests/test_mcp_parity.py +293 -0
  96. ownr-0.2.0b1/tests/test_mcp_tools_live.py +1083 -0
  97. ownr-0.2.0b1/tests/test_memory.py +207 -0
  98. ownr-0.2.0b1/tests/test_memory_postgres.py +203 -0
  99. ownr-0.2.0b1/tests/test_oauth_shim.py +340 -0
  100. ownr-0.2.0b1/tests/test_packaging.py +158 -0
  101. ownr-0.2.0b1/tests/test_passkeys_totp.py +1147 -0
  102. ownr-0.2.0b1/tests/test_persona_refresh_dag.py +385 -0
  103. ownr-0.2.0b1/tests/test_projects.py +399 -0
  104. ownr-0.2.0b1/tests/test_public_ingest_route.py +383 -0
  105. ownr-0.2.0b1/tests/test_public_pages.py +158 -0
  106. ownr-0.2.0b1/tests/test_public_scopes.py +193 -0
  107. ownr-0.2.0b1/tests/test_push.py +393 -0
  108. ownr-0.2.0b1/tests/test_qrsvg.py +131 -0
  109. ownr-0.2.0b1/tests/test_semantic_openrouter.py +277 -0
  110. ownr-0.2.0b1/tests/test_semantic_spend_pg.py +55 -0
  111. ownr-0.2.0b1/tests/test_seq_engine.py +185 -0
  112. ownr-0.2.0b1/tests/test_shopping.py +221 -0
  113. ownr-0.2.0b1/tests/test_signal_harvester_sources.py +178 -0
  114. ownr-0.2.0b1/tests/test_signals.py +115 -0
  115. ownr-0.2.0b1/tests/test_static_and_shell.py +163 -0
  116. ownr-0.2.0b1/tests/test_storage.py +368 -0
  117. ownr-0.2.0b1/tests/test_suite_account.py +603 -0
  118. ownr-0.2.0b1/tests/test_suite_devices.py +529 -0
  119. ownr-0.2.0b1/tests/test_suite_log.py +363 -0
  120. ownr-0.2.0b1/tests/test_suite_memory.py +1024 -0
  121. ownr-0.2.0b1/tests/test_suite_pages.py +554 -0
  122. ownr-0.2.0b1/tests/test_suite_persona.py +882 -0
  123. ownr-0.2.0b1/tests/test_suite_profile.py +618 -0
  124. ownr-0.2.0b1/tests/test_tenancy.py +282 -0
  125. ownr-0.2.0b1/tests/test_token_verifier.py +263 -0
  126. ownr-0.2.0b1/tests/test_url_signal.py +160 -0
  127. ownr-0.2.0b1/tests/test_usage_history.py +304 -0
  128. ownr-0.2.0b1/tests/test_user_scopes.py +49 -0
  129. ownr-0.2.0b1/tests/test_zitadel_admin.py +286 -0
ownr-0.2.0b1/PKG-INFO ADDED
@@ -0,0 +1,35 @@
1
+ Metadata-Version: 2.4
2
+ Name: ownr
3
+ Version: 0.2.0b1
4
+ Summary: Know yourself through your computer
5
+ Author: ownr.digital
6
+ Requires-Python: >=3.10
7
+ Requires-Dist: typer<0.13,>=0.12
8
+ Requires-Dist: click<8.2
9
+ Requires-Dist: rich<14,>=13.7
10
+ Requires-Dist: psutil<7,>=5.9
11
+ Requires-Dist: requests<3,>=2.31
12
+ Requires-Dist: schedule<2,>=1.2
13
+ Requires-Dist: prompt_toolkit<4,>=3.0
14
+ Requires-Dist: mcp<2,>=1.27
15
+ Requires-Dist: pydantic<3,>=2.0
16
+ Requires-Dist: starlette<1.0,>=0.40
17
+ Requires-Dist: httpx<1.0,>=0.27
18
+ Requires-Dist: pyjwt<3,>=2.8
19
+ Provides-Extra: collectors
20
+ Requires-Dist: pywinctl<0.4,>=0.3; extra == "collectors"
21
+ Provides-Extra: mac
22
+ Requires-Dist: rumps<0.5,>=0.4; extra == "mac"
23
+ Requires-Dist: pywinctl<0.4,>=0.3; extra == "mac"
24
+ Requires-Dist: pyobjc-framework-EventKit>=10.0; extra == "mac"
25
+ Requires-Dist: pyobjc-framework-CoreLocation>=10.0; extra == "mac"
26
+ Provides-Extra: windows
27
+ Requires-Dist: pystray<0.20,>=0.19; extra == "windows"
28
+ Requires-Dist: Pillow<12,>=10.3; extra == "windows"
29
+ Requires-Dist: pywinctl<0.4,>=0.3; extra == "windows"
30
+ Provides-Extra: server
31
+ Requires-Dist: uvicorn<1.0,>=0.30; extra == "server"
32
+ Requires-Dist: psycopg[binary,pool]<4,>=3.2; extra == "server"
33
+ Requires-Dist: cryptography>=42; extra == "server"
34
+ Provides-Extra: semantic
35
+ Requires-Dist: anthropic>=0.40; extra == "semantic"