firekeep-client 0.1.43__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 (120) hide show
  1. firekeep_client-0.1.43/LICENSE +112 -0
  2. firekeep_client-0.1.43/NOTICE +16338 -0
  3. firekeep_client-0.1.43/PKG-INFO +100 -0
  4. firekeep_client-0.1.43/README.md +75 -0
  5. firekeep_client-0.1.43/firekeep_client/__init__.py +12 -0
  6. firekeep_client-0.1.43/firekeep_client/adapters/__init__.py +22 -0
  7. firekeep_client-0.1.43/firekeep_client/adapters/base.py +717 -0
  8. firekeep_client-0.1.43/firekeep_client/adapters/claude.py +290 -0
  9. firekeep_client-0.1.43/firekeep_client/adapters/codex.py +117 -0
  10. firekeep_client-0.1.43/firekeep_client/adapters/kiro.py +294 -0
  11. firekeep_client-0.1.43/firekeep_client/adapters/opencode.py +258 -0
  12. firekeep_client-0.1.43/firekeep_client/autoupdate.py +123 -0
  13. firekeep_client-0.1.43/firekeep_client/cli.py +1692 -0
  14. firekeep_client-0.1.43/firekeep_client/config_write.py +108 -0
  15. firekeep_client-0.1.43/firekeep_client/connect.py +223 -0
  16. firekeep_client-0.1.43/firekeep_client/contract/__init__.py +1 -0
  17. firekeep_client-0.1.43/firekeep_client/contract/matrix.py +123 -0
  18. firekeep_client-0.1.43/firekeep_client/decision/__init__.py +7 -0
  19. firekeep_client-0.1.43/firekeep_client/decision/board.py +703 -0
  20. firekeep_client-0.1.43/firekeep_client/decision/server.py +768 -0
  21. firekeep_client-0.1.43/firekeep_client/gateway.py +321 -0
  22. firekeep_client-0.1.43/firekeep_client/hooklog.py +29 -0
  23. firekeep_client-0.1.43/firekeep_client/hooks/__init__.py +55 -0
  24. firekeep_client-0.1.43/firekeep_client/hooks/__main__.py +253 -0
  25. firekeep_client-0.1.43/firekeep_client/hooks/_git.py +35 -0
  26. firekeep_client-0.1.43/firekeep_client/hooks/_mcp.py +62 -0
  27. firekeep_client-0.1.43/firekeep_client/hooks/destructive.py +90 -0
  28. firekeep_client-0.1.43/firekeep_client/hooks/post_tool.py +76 -0
  29. firekeep_client-0.1.43/firekeep_client/hooks/pre_tool.py +171 -0
  30. firekeep_client-0.1.43/firekeep_client/hooks/precompact.py +80 -0
  31. firekeep_client-0.1.43/firekeep_client/hooks/prompt.py +176 -0
  32. firekeep_client-0.1.43/firekeep_client/hooks/session_end.py +92 -0
  33. firekeep_client-0.1.43/firekeep_client/hooks/session_start.py +153 -0
  34. firekeep_client-0.1.43/firekeep_client/hooks/stop.py +150 -0
  35. firekeep_client-0.1.43/firekeep_client/join.py +395 -0
  36. firekeep_client-0.1.43/firekeep_client/joincode.py +142 -0
  37. firekeep_client-0.1.43/firekeep_client/migrate.py +392 -0
  38. firekeep_client-0.1.43/firekeep_client/nightshift.py +455 -0
  39. firekeep_client-0.1.43/firekeep_client/pathenv.py +301 -0
  40. firekeep_client-0.1.43/firekeep_client/resolver.py +359 -0
  41. firekeep_client-0.1.43/firekeep_client/serverinit.py +228 -0
  42. firekeep_client-0.1.43/firekeep_client/shim.py +883 -0
  43. firekeep_client-0.1.43/firekeep_client/sidecar.py +329 -0
  44. firekeep_client-0.1.43/firekeep_client/signing.py +417 -0
  45. firekeep_client-0.1.43/firekeep_client/state.py +453 -0
  46. firekeep_client-0.1.43/firekeep_client/stdio.py +95 -0
  47. firekeep_client-0.1.43/firekeep_client/symdexindex.py +274 -0
  48. firekeep_client-0.1.43/firekeep_client/transport.py +144 -0
  49. firekeep_client-0.1.43/firekeep_client/updater.py +281 -0
  50. firekeep_client-0.1.43/firekeep_client/wizard.py +236 -0
  51. firekeep_client-0.1.43/firekeep_client/worktree_snapshot.py +276 -0
  52. firekeep_client-0.1.43/firekeep_client.egg-info/PKG-INFO +100 -0
  53. firekeep_client-0.1.43/firekeep_client.egg-info/SOURCES.txt +118 -0
  54. firekeep_client-0.1.43/firekeep_client.egg-info/dependency_links.txt +1 -0
  55. firekeep_client-0.1.43/firekeep_client.egg-info/entry_points.txt +5 -0
  56. firekeep_client-0.1.43/firekeep_client.egg-info/requires.txt +6 -0
  57. firekeep_client-0.1.43/firekeep_client.egg-info/top_level.txt +1 -0
  58. firekeep_client-0.1.43/pyproject.toml +53 -0
  59. firekeep_client-0.1.43/setup.cfg +4 -0
  60. firekeep_client-0.1.43/tests/test_attribution_headers.py +280 -0
  61. firekeep_client-0.1.43/tests/test_autoupdate.py +140 -0
  62. firekeep_client-0.1.43/tests/test_bash_layer_retired.py +72 -0
  63. firekeep_client-0.1.43/tests/test_bootstrap_ps1.py +605 -0
  64. firekeep_client-0.1.43/tests/test_bootstrap_reinstall.py +125 -0
  65. firekeep_client-0.1.43/tests/test_bootstrap_sh.py +575 -0
  66. firekeep_client-0.1.43/tests/test_bootstrap_symdex.py +15 -0
  67. firekeep_client-0.1.43/tests/test_bootstrap_venv_provisioning.py +386 -0
  68. firekeep_client-0.1.43/tests/test_ci_publishes_symdex.py +30 -0
  69. firekeep_client-0.1.43/tests/test_cli.py +149 -0
  70. firekeep_client-0.1.43/tests/test_cli_doctor.py +725 -0
  71. firekeep_client-0.1.43/tests/test_cli_entry.py +59 -0
  72. firekeep_client-0.1.43/tests/test_cli_install.py +559 -0
  73. firekeep_client-0.1.43/tests/test_cli_onboarding.py +107 -0
  74. firekeep_client-0.1.43/tests/test_cli_personal.py +91 -0
  75. firekeep_client-0.1.43/tests/test_cli_update.py +632 -0
  76. firekeep_client-0.1.43/tests/test_config_migration.py +308 -0
  77. firekeep_client-0.1.43/tests/test_connect.py +83 -0
  78. firekeep_client-0.1.43/tests/test_decision_board_html.py +233 -0
  79. firekeep_client-0.1.43/tests/test_decision_bypass.py +58 -0
  80. firekeep_client-0.1.43/tests/test_decision_registration.py +94 -0
  81. firekeep_client-0.1.43/tests/test_decision_server.py +524 -0
  82. firekeep_client-0.1.43/tests/test_docs_reference_client_kit.py +77 -0
  83. firekeep_client-0.1.43/tests/test_doctor_credential_expiry.py +33 -0
  84. firekeep_client-0.1.43/tests/test_e2e_bootstrap.py +342 -0
  85. firekeep_client-0.1.43/tests/test_gateway.py +203 -0
  86. firekeep_client-0.1.43/tests/test_hooklog.py +116 -0
  87. firekeep_client-0.1.43/tests/test_import_boundary.py +241 -0
  88. firekeep_client-0.1.43/tests/test_join.py +204 -0
  89. firekeep_client-0.1.43/tests/test_join_config_write.py +55 -0
  90. firekeep_client-0.1.43/tests/test_joincode.py +101 -0
  91. firekeep_client-0.1.43/tests/test_kit_smoke.py +204 -0
  92. firekeep_client-0.1.43/tests/test_make_release.py +402 -0
  93. firekeep_client-0.1.43/tests/test_memory_instructions.py +211 -0
  94. firekeep_client-0.1.43/tests/test_migration_entrypoints.py +153 -0
  95. firekeep_client-0.1.43/tests/test_nightshift.py +462 -0
  96. firekeep_client-0.1.43/tests/test_package.py +57 -0
  97. firekeep_client-0.1.43/tests/test_pathenv.py +362 -0
  98. firekeep_client-0.1.43/tests/test_resolver.py +182 -0
  99. firekeep_client-0.1.43/tests/test_resolver_bypass.py +144 -0
  100. firekeep_client-0.1.43/tests/test_resolver_single_connection.py +91 -0
  101. firekeep_client-0.1.43/tests/test_scratch_ttl.py +108 -0
  102. firekeep_client-0.1.43/tests/test_serverinit.py +125 -0
  103. firekeep_client-0.1.43/tests/test_shim_bridge.py +176 -0
  104. firekeep_client-0.1.43/tests/test_shim_bypass.py +77 -0
  105. firekeep_client-0.1.43/tests/test_shim_fail_loud.py +325 -0
  106. firekeep_client-0.1.43/tests/test_shim_identity.py +517 -0
  107. firekeep_client-0.1.43/tests/test_shim_recovery.py +462 -0
  108. firekeep_client-0.1.43/tests/test_shim_skeleton.py +227 -0
  109. firekeep_client-0.1.43/tests/test_sidecar.py +124 -0
  110. firekeep_client-0.1.43/tests/test_sidecar_robustness.py +168 -0
  111. firekeep_client-0.1.43/tests/test_signing.py +281 -0
  112. firekeep_client-0.1.43/tests/test_state.py +542 -0
  113. firekeep_client-0.1.43/tests/test_stdio_encoding.py +338 -0
  114. firekeep_client-0.1.43/tests/test_symdexindex.py +310 -0
  115. firekeep_client-0.1.43/tests/test_transport.py +322 -0
  116. firekeep_client-0.1.43/tests/test_transport_sse.py +123 -0
  117. firekeep_client-0.1.43/tests/test_twin_removed.py +42 -0
  118. firekeep_client-0.1.43/tests/test_updater.py +353 -0
  119. firekeep_client-0.1.43/tests/test_wizard.py +227 -0
  120. firekeep_client-0.1.43/tests/test_worktree_snapshot.py +162 -0
@@ -0,0 +1,112 @@
1
+ # Business Source License 1.1
2
+
3
+ Copyright (c) 2026 Omnicron, LLC
4
+
5
+ Licensed Work: Firekeep, including its server components, client kit, dashboard,
6
+ and documentation distributed in this repository. FirekeepSymdex is part of the
7
+ Licensed Work until its standalone Core has been extracted into a separately
8
+ licensed repository.
9
+
10
+ Additional Use Grant: You may make production use of the Licensed Work without
11
+ a commercial license only for one natural person in one Firekeep workspace on
12
+ one deployment. That person may use any number of their own devices, client
13
+ runtimes, agent identities, terminals, and background workers. Production use
14
+ for more than one member requires a commercial license from Omnicron, LLC.
15
+
16
+ Change Date: The fourth anniversary of the first public distribution of each
17
+ version of the Licensed Work.
18
+
19
+ Change License: Apache License, Version 2.0
20
+
21
+ ---
22
+
23
+ Business Source License 1.1
24
+
25
+ License text copyright (c) 2017 MariaDB Corporation Ab, All Rights Reserved.
26
+ "Business Source License" is a trademark of MariaDB Corporation Ab.
27
+
28
+ Parameters
29
+
30
+ Licensor: Omnicron, LLC
31
+
32
+ Licensed Work: Firekeep, including its server components, client kit, dashboard,
33
+ and documentation distributed in this repository. FirekeepSymdex is part of the
34
+ Licensed Work until its standalone Core has been extracted into a separately
35
+ licensed repository.
36
+
37
+ Additional Use Grant: You may make production use of the Licensed Work without
38
+ a commercial license only for one natural person in one Firekeep workspace on
39
+ one deployment. That person may use any number of their own devices, client
40
+ runtimes, agent identities, terminals, and background workers. Production use
41
+ for more than one member requires a commercial license from Omnicron, LLC.
42
+
43
+ Change Date: The fourth anniversary of the first public distribution of each
44
+ version of the Licensed Work.
45
+
46
+ Change License: Apache License, Version 2.0
47
+
48
+ Terms
49
+
50
+ The Licensor hereby grants you the right to copy, modify, create derivative
51
+ works, redistribute, and make non-production use of the Licensed Work. The
52
+ Licensor may make an Additional Use Grant, above, permitting limited production
53
+ use.
54
+
55
+ Effective on the Change Date, or the fourth anniversary of the first publicly
56
+ available distribution of a specific version of the Licensed Work under this
57
+ License, whichever comes first, the Licensor hereby grants you rights under the
58
+ terms of the Change License, and the rights granted in the paragraph above
59
+ terminate.
60
+
61
+ If your use of the Licensed Work does not comply with the requirements currently
62
+ in effect as described in this License, you must purchase a commercial license
63
+ from the Licensor, its affiliated entities, or authorized resellers, or you must
64
+ refrain from using the Licensed Work.
65
+
66
+ All copies of the original and modified Licensed Work, and derivative works of
67
+ the Licensed Work, are subject to this License. This License applies separately
68
+ for each version of the Licensed Work and the Change Date may vary for each
69
+ version of the Licensed Work released by Licensor.
70
+
71
+ You must conspicuously display this License on each original or modified copy of
72
+ the Licensed Work. If you receive the Licensed Work in original or modified form
73
+ from a third party, the terms and conditions set forth in this License apply to
74
+ your use of that work.
75
+
76
+ Any use of the Licensed Work in violation of this License will automatically
77
+ terminate your rights under this License for the current and all other versions
78
+ of the Licensed Work.
79
+
80
+ This License does not grant you any right in any trademark or logo of Licensor
81
+ or its affiliates (provided that you may use a trademark or logo of Licensor as
82
+ expressly required by this License).
83
+
84
+ TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON AN
85
+ "AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS,
86
+ EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF
87
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND TITLE.
88
+
89
+ The Business Source License (this document, or the "License") is not an Open
90
+ Source license. However, the Licensed Work will eventually be made available
91
+ under an Open Source License, as stated in this License.
92
+
93
+ For more information on the use of the Business Source License for MariaDB
94
+ products, please visit mariadb.com/bsl-faq-mariadb. For more information on the
95
+ use of the Business Source License generally, please visit mariadb.com/bsl11.
96
+
97
+ Covenants of Licensor
98
+
99
+ In consideration of the right to use this License's text and the "Business
100
+ Source License" name and trademark, Licensor covenants to MariaDB, and to all
101
+ other recipients of the Licensed Work to be provided by Licensor:
102
+
103
+ To specify as the Change License the GPL Version 2.0 or any later version, or a
104
+ license that is compatible with GPL Version 2.0 or a later version, where
105
+ "compatible" means that software provided under the Change License can be
106
+ included in a program with software provided under GPL Version 2.0 or a later
107
+ version. Licensor may specify additional Change Licenses without limitation.
108
+
109
+ To either: (a) specify an additional grant of rights to use that does not impose
110
+ any additional restriction on the right granted in this License, as the
111
+ Additional Use Grant; or (b) insert the text "None" to specify a Change Date.
112
+ Not to modify this License in any other way.