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.
- ownr-0.2.0b1/PKG-INFO +35 -0
- ownr-0.2.0b1/README.md +1274 -0
- ownr-0.2.0b1/claim_engine/__init__.py +33 -0
- ownr-0.2.0b1/claim_engine/claim_inferrer.py +2268 -0
- ownr-0.2.0b1/claim_engine/claims_writer.py +534 -0
- ownr-0.2.0b1/claim_engine/concept_seeds.py +242 -0
- ownr-0.2.0b1/claim_engine/contradiction_map.py +14 -0
- ownr-0.2.0b1/claim_engine/digest.py +387 -0
- ownr-0.2.0b1/claim_engine/domain_clusterer.py +134 -0
- ownr-0.2.0b1/claim_engine/enrich.py +234 -0
- ownr-0.2.0b1/claim_engine/entity_resolver.py +336 -0
- ownr-0.2.0b1/claim_engine/eval_harness.py +124 -0
- ownr-0.2.0b1/claim_engine/features.py +330 -0
- ownr-0.2.0b1/claim_engine/feedback.py +367 -0
- ownr-0.2.0b1/claim_engine/freshness_tagger.py +33 -0
- ownr-0.2.0b1/claim_engine/graph_builder.py +231 -0
- ownr-0.2.0b1/claim_engine/insights.py +210 -0
- ownr-0.2.0b1/claim_engine/profile.py +200 -0
- ownr-0.2.0b1/claim_engine/profile_bootstrap.py +151 -0
- ownr-0.2.0b1/claim_engine/run.py +624 -0
- ownr-0.2.0b1/claim_engine/schema.py +85 -0
- ownr-0.2.0b1/claim_engine/semantic_analyzer.py +816 -0
- ownr-0.2.0b1/claim_engine/seq_engine.py +319 -0
- ownr-0.2.0b1/claim_engine/sessionizer.py +233 -0
- ownr-0.2.0b1/claim_engine/signal_harvester.py +814 -0
- ownr-0.2.0b1/claim_engine/taxonomy.py +136 -0
- ownr-0.2.0b1/claim_engine/user_context.py +88 -0
- ownr-0.2.0b1/ownr/__init__.py +0 -0
- ownr-0.2.0b1/ownr/autoboot.py +148 -0
- ownr-0.2.0b1/ownr/backup.py +979 -0
- ownr-0.2.0b1/ownr/cli.py +1315 -0
- ownr-0.2.0b1/ownr/collectors/__init__.py +73 -0
- ownr-0.2.0b1/ownr/collectors/base.py +61 -0
- ownr-0.2.0b1/ownr/collectors/browser.py +320 -0
- ownr-0.2.0b1/ownr/collectors/calendar.py +238 -0
- ownr-0.2.0b1/ownr/collectors/cli_activity.py +260 -0
- ownr-0.2.0b1/ownr/collectors/git_collector.py +206 -0
- ownr-0.2.0b1/ownr/collectors/location.py +160 -0
- ownr-0.2.0b1/ownr/collectors/system.py +237 -0
- ownr-0.2.0b1/ownr/collectors/window.py +156 -0
- ownr-0.2.0b1/ownr/config.py +183 -0
- ownr-0.2.0b1/ownr/daemon.py +182 -0
- ownr-0.2.0b1/ownr/db.py +1030 -0
- ownr-0.2.0b1/ownr/device_auth.py +344 -0
- ownr-0.2.0b1/ownr/enrich.py +285 -0
- ownr-0.2.0b1/ownr/events.py +340 -0
- ownr-0.2.0b1/ownr/heartbeat.py +315 -0
- ownr-0.2.0b1/ownr/ingest.py +306 -0
- ownr-0.2.0b1/ownr/maintenance.py +298 -0
- ownr-0.2.0b1/ownr/mcp_http.py +136 -0
- ownr-0.2.0b1/ownr/mcp_server.py +727 -0
- ownr-0.2.0b1/ownr/migrate.py +237 -0
- ownr-0.2.0b1/ownr/persona_refresh.py +409 -0
- ownr-0.2.0b1/ownr/pidfile.py +65 -0
- ownr-0.2.0b1/ownr/push.py +136 -0
- ownr-0.2.0b1/ownr/runlock.py +116 -0
- ownr-0.2.0b1/ownr/secretbox.py +110 -0
- ownr-0.2.0b1/ownr/shell.py +164 -0
- ownr-0.2.0b1/ownr/storage.py +363 -0
- ownr-0.2.0b1/ownr/tray_mac.py +57 -0
- ownr-0.2.0b1/ownr/tray_windows.py +52 -0
- ownr-0.2.0b1/ownr/url_signal.py +550 -0
- ownr-0.2.0b1/ownr.egg-info/PKG-INFO +35 -0
- ownr-0.2.0b1/ownr.egg-info/SOURCES.txt +127 -0
- ownr-0.2.0b1/ownr.egg-info/dependency_links.txt +1 -0
- ownr-0.2.0b1/ownr.egg-info/entry_points.txt +2 -0
- ownr-0.2.0b1/ownr.egg-info/requires.txt +34 -0
- ownr-0.2.0b1/ownr.egg-info/top_level.txt +2 -0
- ownr-0.2.0b1/pyproject.toml +145 -0
- ownr-0.2.0b1/setup.cfg +4 -0
- ownr-0.2.0b1/tests/test_associations.py +129 -0
- ownr-0.2.0b1/tests/test_backup.py +590 -0
- ownr-0.2.0b1/tests/test_claim_engine_server.py +355 -0
- ownr-0.2.0b1/tests/test_claims_writer.py +233 -0
- ownr-0.2.0b1/tests/test_cli_commands.py +444 -0
- ownr-0.2.0b1/tests/test_cli_honest.py +616 -0
- ownr-0.2.0b1/tests/test_client_grants.py +79 -0
- ownr-0.2.0b1/tests/test_collectors.py +710 -0
- ownr-0.2.0b1/tests/test_dags.py +259 -0
- ownr-0.2.0b1/tests/test_dashboard_revoke.py +563 -0
- ownr-0.2.0b1/tests/test_deploy_plan.py +293 -0
- ownr-0.2.0b1/tests/test_device_auth.py +362 -0
- ownr-0.2.0b1/tests/test_digest_metrics.py +106 -0
- ownr-0.2.0b1/tests/test_event_ingest.py +257 -0
- ownr-0.2.0b1/tests/test_events_writer.py +430 -0
- ownr-0.2.0b1/tests/test_features.py +288 -0
- ownr-0.2.0b1/tests/test_heartbeat.py +519 -0
- ownr-0.2.0b1/tests/test_ingest.py +288 -0
- ownr-0.2.0b1/tests/test_insights_digest.py +160 -0
- ownr-0.2.0b1/tests/test_lineage.py +78 -0
- ownr-0.2.0b1/tests/test_login_ui.py +1683 -0
- ownr-0.2.0b1/tests/test_maintenance.py +170 -0
- ownr-0.2.0b1/tests/test_management_schema.py +440 -0
- ownr-0.2.0b1/tests/test_mcp_corrections.py +275 -0
- ownr-0.2.0b1/tests/test_mcp_parity.py +293 -0
- ownr-0.2.0b1/tests/test_mcp_tools_live.py +1083 -0
- ownr-0.2.0b1/tests/test_memory.py +207 -0
- ownr-0.2.0b1/tests/test_memory_postgres.py +203 -0
- ownr-0.2.0b1/tests/test_oauth_shim.py +340 -0
- ownr-0.2.0b1/tests/test_packaging.py +158 -0
- ownr-0.2.0b1/tests/test_passkeys_totp.py +1147 -0
- ownr-0.2.0b1/tests/test_persona_refresh_dag.py +385 -0
- ownr-0.2.0b1/tests/test_projects.py +399 -0
- ownr-0.2.0b1/tests/test_public_ingest_route.py +383 -0
- ownr-0.2.0b1/tests/test_public_pages.py +158 -0
- ownr-0.2.0b1/tests/test_public_scopes.py +193 -0
- ownr-0.2.0b1/tests/test_push.py +393 -0
- ownr-0.2.0b1/tests/test_qrsvg.py +131 -0
- ownr-0.2.0b1/tests/test_semantic_openrouter.py +277 -0
- ownr-0.2.0b1/tests/test_semantic_spend_pg.py +55 -0
- ownr-0.2.0b1/tests/test_seq_engine.py +185 -0
- ownr-0.2.0b1/tests/test_shopping.py +221 -0
- ownr-0.2.0b1/tests/test_signal_harvester_sources.py +178 -0
- ownr-0.2.0b1/tests/test_signals.py +115 -0
- ownr-0.2.0b1/tests/test_static_and_shell.py +163 -0
- ownr-0.2.0b1/tests/test_storage.py +368 -0
- ownr-0.2.0b1/tests/test_suite_account.py +603 -0
- ownr-0.2.0b1/tests/test_suite_devices.py +529 -0
- ownr-0.2.0b1/tests/test_suite_log.py +363 -0
- ownr-0.2.0b1/tests/test_suite_memory.py +1024 -0
- ownr-0.2.0b1/tests/test_suite_pages.py +554 -0
- ownr-0.2.0b1/tests/test_suite_persona.py +882 -0
- ownr-0.2.0b1/tests/test_suite_profile.py +618 -0
- ownr-0.2.0b1/tests/test_tenancy.py +282 -0
- ownr-0.2.0b1/tests/test_token_verifier.py +263 -0
- ownr-0.2.0b1/tests/test_url_signal.py +160 -0
- ownr-0.2.0b1/tests/test_usage_history.py +304 -0
- ownr-0.2.0b1/tests/test_user_scopes.py +49 -0
- 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"
|