bijux-cli 0.1.0__py3-none-any.whl

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 (108) hide show
  1. bijux_cli/__init__.py +39 -0
  2. bijux_cli/__main__.py +417 -0
  3. bijux_cli/__version__.py +42 -0
  4. bijux_cli/api.py +326 -0
  5. bijux_cli/cli.py +68 -0
  6. bijux_cli/commands/__init__.py +170 -0
  7. bijux_cli/commands/audit.py +293 -0
  8. bijux_cli/commands/config/__init__.py +85 -0
  9. bijux_cli/commands/config/clear.py +124 -0
  10. bijux_cli/commands/config/export.py +148 -0
  11. bijux_cli/commands/config/get.py +141 -0
  12. bijux_cli/commands/config/list_cmd.py +127 -0
  13. bijux_cli/commands/config/load.py +128 -0
  14. bijux_cli/commands/config/py.typed +0 -0
  15. bijux_cli/commands/config/reload.py +125 -0
  16. bijux_cli/commands/config/service.py +107 -0
  17. bijux_cli/commands/config/set.py +260 -0
  18. bijux_cli/commands/config/unset.py +140 -0
  19. bijux_cli/commands/dev/__init__.py +46 -0
  20. bijux_cli/commands/dev/di.py +285 -0
  21. bijux_cli/commands/dev/list_plugins.py +66 -0
  22. bijux_cli/commands/dev/py.typed +0 -0
  23. bijux_cli/commands/dev/service.py +120 -0
  24. bijux_cli/commands/docs.py +329 -0
  25. bijux_cli/commands/doctor.py +181 -0
  26. bijux_cli/commands/help.py +436 -0
  27. bijux_cli/commands/history/__init__.py +43 -0
  28. bijux_cli/commands/history/clear.py +160 -0
  29. bijux_cli/commands/history/py.typed +0 -0
  30. bijux_cli/commands/history/service.py +362 -0
  31. bijux_cli/commands/memory/__init__.py +59 -0
  32. bijux_cli/commands/memory/clear.py +114 -0
  33. bijux_cli/commands/memory/delete.py +144 -0
  34. bijux_cli/commands/memory/get.py +146 -0
  35. bijux_cli/commands/memory/list.py +115 -0
  36. bijux_cli/commands/memory/py.typed +0 -0
  37. bijux_cli/commands/memory/service.py +242 -0
  38. bijux_cli/commands/memory/set.py +136 -0
  39. bijux_cli/commands/memory/utils.py +54 -0
  40. bijux_cli/commands/plugins/__init__.py +59 -0
  41. bijux_cli/commands/plugins/check.py +240 -0
  42. bijux_cli/commands/plugins/info.py +143 -0
  43. bijux_cli/commands/plugins/install.py +327 -0
  44. bijux_cli/commands/plugins/list.py +73 -0
  45. bijux_cli/commands/plugins/py.typed +0 -0
  46. bijux_cli/commands/plugins/scaffold.py +287 -0
  47. bijux_cli/commands/plugins/uninstall.py +206 -0
  48. bijux_cli/commands/plugins/utils.py +158 -0
  49. bijux_cli/commands/py.typed +0 -0
  50. bijux_cli/commands/repl.py +709 -0
  51. bijux_cli/commands/sleep.py +169 -0
  52. bijux_cli/commands/status.py +289 -0
  53. bijux_cli/commands/utilities.py +637 -0
  54. bijux_cli/commands/version.py +152 -0
  55. bijux_cli/contracts/__init__.py +48 -0
  56. bijux_cli/contracts/audit.py +66 -0
  57. bijux_cli/contracts/config.py +127 -0
  58. bijux_cli/contracts/context.py +93 -0
  59. bijux_cli/contracts/docs.py +65 -0
  60. bijux_cli/contracts/doctor.py +32 -0
  61. bijux_cli/contracts/emitter.py +58 -0
  62. bijux_cli/contracts/history.py +101 -0
  63. bijux_cli/contracts/memory.py +76 -0
  64. bijux_cli/contracts/observability.py +94 -0
  65. bijux_cli/contracts/process.py +48 -0
  66. bijux_cli/contracts/py.typed +0 -0
  67. bijux_cli/contracts/registry.py +115 -0
  68. bijux_cli/contracts/retry.py +53 -0
  69. bijux_cli/contracts/serializer.py +100 -0
  70. bijux_cli/contracts/telemetry.py +46 -0
  71. bijux_cli/core/__init__.py +44 -0
  72. bijux_cli/core/constants.py +21 -0
  73. bijux_cli/core/context.py +218 -0
  74. bijux_cli/core/di.py +695 -0
  75. bijux_cli/core/engine.py +199 -0
  76. bijux_cli/core/enums.py +52 -0
  77. bijux_cli/core/exceptions.py +184 -0
  78. bijux_cli/core/paths.py +21 -0
  79. bijux_cli/core/py.typed +0 -0
  80. bijux_cli/httpapi.py +552 -0
  81. bijux_cli/infra/__init__.py +43 -0
  82. bijux_cli/infra/emitter.py +140 -0
  83. bijux_cli/infra/observability.py +148 -0
  84. bijux_cli/infra/process.py +177 -0
  85. bijux_cli/infra/py.typed +0 -0
  86. bijux_cli/infra/retry.py +300 -0
  87. bijux_cli/infra/serializer.py +573 -0
  88. bijux_cli/infra/telemetry.py +159 -0
  89. bijux_cli/py.typed +0 -0
  90. bijux_cli/services/__init__.py +233 -0
  91. bijux_cli/services/audit.py +268 -0
  92. bijux_cli/services/config.py +677 -0
  93. bijux_cli/services/docs.py +170 -0
  94. bijux_cli/services/doctor.py +34 -0
  95. bijux_cli/services/history.py +527 -0
  96. bijux_cli/services/memory.py +129 -0
  97. bijux_cli/services/plugins/__init__.py +346 -0
  98. bijux_cli/services/plugins/entrypoints.py +151 -0
  99. bijux_cli/services/plugins/groups.py +177 -0
  100. bijux_cli/services/plugins/hooks.py +113 -0
  101. bijux_cli/services/plugins/py.typed +0 -0
  102. bijux_cli/services/plugins/registry.py +284 -0
  103. bijux_cli/services/py.typed +0 -0
  104. bijux_cli/services/utils.py +68 -0
  105. bijux_cli-0.1.0.dist-info/METADATA +297 -0
  106. bijux_cli-0.1.0.dist-info/RECORD +108 -0
  107. bijux_cli-0.1.0.dist-info/WHEEL +4 -0
  108. bijux_cli-0.1.0.dist-info/entry_points.txt +2 -0
@@ -0,0 +1,297 @@
1
+ Metadata-Version: 2.4
2
+ Name: bijux-cli
3
+ Version: 0.1.0
4
+ Summary: Lean, plug-in-driven CLI kernel
5
+ Project-URL: Homepage, https://github.com/bijux/bijux-cli
6
+ Project-URL: Repository, https://github.com/bijux/bijux-cli.git
7
+ Project-URL: Bug Tracker, https://github.com/bijux/bijux-cli/issues
8
+ Project-URL: Documentation, https://bijux.github.io/bijux-cli/
9
+ Project-URL: Changelog, https://github.com/bijux/bijux-cli/releases
10
+ Author-email: Bijan Mousavi <mousavi.bijan@gmail.com>
11
+ License: MIT License
12
+
13
+ Copyright (c) 2025 Bijan Mousavi
14
+
15
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
16
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
17
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
18
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
19
+ following conditions:
20
+
21
+ The above copyright notice and this permission notice shall be included in all copies or substantial
22
+ portions of the Software.
23
+
24
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
25
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
26
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
27
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
28
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
29
+ Keywords: cli,developer-tools,plugins
30
+ Classifier: Development Status :: 3 - Alpha
31
+ Classifier: Environment :: Console
32
+ Classifier: Framework :: FastAPI
33
+ Classifier: Intended Audience :: Developers
34
+ Classifier: Intended Audience :: Science/Research
35
+ Classifier: License :: OSI Approved :: MIT License
36
+ Classifier: Operating System :: OS Independent
37
+ Classifier: Programming Language :: Python :: 3
38
+ Classifier: Programming Language :: Python :: 3 :: Only
39
+ Classifier: Programming Language :: Python :: 3.11
40
+ Classifier: Programming Language :: Python :: 3.12
41
+ Classifier: Programming Language :: Python :: 3.13
42
+ Classifier: Topic :: Software Development :: Libraries
43
+ Classifier: Topic :: Utilities
44
+ Classifier: Typing :: Typed
45
+ Requires-Python: >=3.11
46
+ Requires-Dist: click>=8.1.7
47
+ Requires-Dist: colorama>=0.4.6
48
+ Requires-Dist: cookiecutter>=2.3.0
49
+ Requires-Dist: cryptography>=44.0.1
50
+ Requires-Dist: fastapi<1.0,>=0.110
51
+ Requires-Dist: injector>=0.20.1
52
+ Requires-Dist: orjson>=3.9.0
53
+ Requires-Dist: packaging>=23.0
54
+ Requires-Dist: pluggy>=1.0.0
55
+ Requires-Dist: prompt-toolkit>=3.0.0
56
+ Requires-Dist: psutil>=6.0.0
57
+ Requires-Dist: pydantic-settings~=2.0
58
+ Requires-Dist: pydantic<3.0,>=2.9.2
59
+ Requires-Dist: pyyaml>=6.0.2
60
+ Requires-Dist: rapidfuzz>=3.0.0
61
+ Requires-Dist: structlog>=24.4.0
62
+ Requires-Dist: typer>=0.12.5
63
+ Provides-Extra: dev
64
+ Requires-Dist: anyio<5.0,>=4.4.0; extra == 'dev'
65
+ Requires-Dist: bandit<2.0,>=1.7.10; extra == 'dev'
66
+ Requires-Dist: black<26.0,>=25.1.0; extra == 'dev'
67
+ Requires-Dist: build<2.0,>=1.0.3; extra == 'dev'
68
+ Requires-Dist: codespell<3.0,>=2.3.0; extra == 'dev'
69
+ Requires-Dist: commitizen<4.0,>=3.21.0; extra == 'dev'
70
+ Requires-Dist: cosmic-ray>=4.0.0; extra == 'dev'
71
+ Requires-Dist: deptry<1.0,>=0.10.0; extra == 'dev'
72
+ Requires-Dist: hypothesis-jsonschema<1.0,>=0.23.0; extra == 'dev'
73
+ Requires-Dist: hypothesis<7.0,>=6.103.0; extra == 'dev'
74
+ Requires-Dist: interrogate<2.0,>=1.7.0; extra == 'dev'
75
+ Requires-Dist: isort<6.0,>=5.11.0; extra == 'dev'
76
+ Requires-Dist: mkdocs-gen-files; extra == 'dev'
77
+ Requires-Dist: mkdocs-git-revision-date-localized-plugin<2.0,>=1.2.0; extra == 'dev'
78
+ Requires-Dist: mkdocs-include-markdown-plugin; extra == 'dev'
79
+ Requires-Dist: mkdocs-literate-nav; extra == 'dev'
80
+ Requires-Dist: mkdocs-material<10.0,>=9.5.39; extra == 'dev'
81
+ Requires-Dist: mkdocs-redirects<2.0,>=1.2; extra == 'dev'
82
+ Requires-Dist: mkdocs<2.0,>=1.6.1; extra == 'dev'
83
+ Requires-Dist: mkdocstrings[python]<1.0,>=0.26.1; extra == 'dev'
84
+ Requires-Dist: mutmut<3.0,>=2.1.0; extra == 'dev'
85
+ Requires-Dist: mypy<2.0,>=1.11.2; extra == 'dev'
86
+ Requires-Dist: openapi-spec-validator<1.0,>=0.7.1; extra == 'dev'
87
+ Requires-Dist: pexpect<5.0,>=4.8.0; extra == 'dev'
88
+ Requires-Dist: pip-audit<3.0,>=2.7.3; extra == 'dev'
89
+ Requires-Dist: prance<1.0,>=0.22.0; extra == 'dev'
90
+ Requires-Dist: pre-commit<4.0,>=3.8.0; extra == 'dev'
91
+ Requires-Dist: pydocstyle<7.0,>=6.2.1; extra == 'dev'
92
+ Requires-Dist: pyright<2.0,>=1.1.320; extra == 'dev'
93
+ Requires-Dist: pytest-asyncio<2.0,>=1.0.0; extra == 'dev'
94
+ Requires-Dist: pytest-benchmark<5.0,>=4.0.0; extra == 'dev'
95
+ Requires-Dist: pytest-cov<7.0,>=6.2.1; extra == 'dev'
96
+ Requires-Dist: pytest-rerunfailures<14.0,>=13.0; extra == 'dev'
97
+ Requires-Dist: pytest-timeout<3.0,>=2.4.0; extra == 'dev'
98
+ Requires-Dist: pytest<9.0,>=8.4.1; extra == 'dev'
99
+ Requires-Dist: pytype>=2024.10.11; extra == 'dev'
100
+ Requires-Dist: radon<6.0,>=5.1.0; extra == 'dev'
101
+ Requires-Dist: reuse<6.0.0,>=4.0.0; extra == 'dev'
102
+ Requires-Dist: ruff<1.0,>=0.6.8; extra == 'dev'
103
+ Requires-Dist: schemathesis<4.0,>=3.16.0; extra == 'dev'
104
+ Requires-Dist: towncrier<25.0,>=23.0; extra == 'dev'
105
+ Requires-Dist: twine<7.0,>=6.1.0; extra == 'dev'
106
+ Requires-Dist: types-colorama<1.0,>=0.0.14; extra == 'dev'
107
+ Requires-Dist: types-orjson<4.0,>=3.6.0; extra == 'dev'
108
+ Requires-Dist: types-psutil<7.0,>=6.0.0; extra == 'dev'
109
+ Requires-Dist: types-pyyaml<7.0,>=6.0.12; extra == 'dev'
110
+ Requires-Dist: typing-extensions<5.0,>=4.5.0; extra == 'dev'
111
+ Requires-Dist: uvicorn<1.0,>=0.30.1; extra == 'dev'
112
+ Requires-Dist: vulture<3.0,>=2.7; extra == 'dev'
113
+ Description-Content-Type: text/markdown
114
+
115
+ # Bijux CLI
116
+
117
+ **A modern, predictable, and extensible CLI framework** — with strict runtime contracts, a first-class plugin system, structured output, and built-in diagnostics.
118
+
119
+ ---
120
+
121
+ ## Features at a Glance
122
+
123
+ * **Plugin-driven architecture** – add/override behavior without touching core.
124
+ * **Deterministic global flags** – strict precedence for consistent behavior
125
+ *(see ADR: Global Flags Precedence)*.
126
+ * **Dependency-Injection kernel** – decoupled services, easy to test.
127
+ * **Interactive REPL** – persistent shell for exploration and debugging.
128
+ * **Structured output** – JSON/YAML with pretty/compact controls.
129
+ * **Diagnostics** – environment checks, DI graph inspection, plugin validation.
130
+
131
+ ---
132
+
133
+ ## Installation
134
+
135
+ **Requires Python 3.11+**
136
+
137
+ ```bash
138
+ # Recommended: isolated CLI install
139
+ pipx install bijux-cli
140
+
141
+ # Or via pip
142
+ pip install bijux-cli
143
+ ```
144
+
145
+ ---
146
+
147
+ ## Quick Start
148
+
149
+ ```bash
150
+ # See commands and global flags
151
+ bijux --help
152
+
153
+ # Run environment diagnostics
154
+ bijux doctor
155
+
156
+ # Start the interactive shell
157
+ bijux
158
+ bijux> help
159
+ bijux> exit
160
+ ```
161
+
162
+ ---
163
+
164
+ ## Usage Examples
165
+
166
+ ### Structured Output (JSON/YAML)
167
+
168
+ ```bash
169
+ # Compact JSON for scripting
170
+ bijux status -f json --no-pretty
171
+
172
+ # Pretty JSON for humans
173
+ bijux status -f json --pretty
174
+
175
+ # YAML
176
+ bijux status -f yaml
177
+ ```
178
+
179
+ ### DI & Developer Introspection
180
+
181
+ ```bash
182
+ # Inspect DI registrations
183
+ bijux dev di -f json | jq
184
+
185
+ # List loaded plugins
186
+ bijux dev list-plugins
187
+ ```
188
+
189
+ ### Plugins
190
+
191
+ ```bash
192
+ # Scaffold, install, and validate a plugin
193
+ mkdir -p ./tmp_plugin && cd ./tmp_plugin
194
+ bijux plugins scaffold my_plugin --template=../plugin_template --force
195
+ cd ..
196
+ bijux plugins install ./tmp_plugin/my_plugin --force
197
+ bijux plugins check my_plugin
198
+ bijux plugins list
199
+ ```
200
+
201
+ ---
202
+
203
+ ## Global Flags (Precedence)
204
+
205
+ Higher priority wins and may short-circuit lower ones.
206
+
207
+ | Priority | Flag(s) | Effect |
208
+ |--------: |-----------------------------|-----------------------------------------------------------------------|
209
+ | 1 | `-h`, `--help` | Exit 0 immediately; ignore all other flags. |
210
+ | 2 | `-q`, `--quiet` | Suppress both stdout and stderr; exit code still reflects the result. |
211
+ | 3 | `-d`, `--debug` | Full diagnostics; implies `--verbose`, forces `--pretty`. |
212
+ | 4 | `-f, --format <json\|yaml>` | Choose structured output; invalid value → exit code `2`. |
213
+ | 5 | `--pretty`/`--no-pretty` | Control indentation (default: `--pretty`). |
214
+ | 6 | `-v`, `--verbose` | Add runtime metadata; implied by `--debug`. |
215
+
216
+ *Reference:* ADR-0002 Global Flags Precedence
217
+ [https://bijux.github.io/bijux-cli/ADR/0002-global-flags-precedence/](https://bijux.github.io/bijux-cli/ADR/0002-global-flags-precedence/)
218
+
219
+ ---
220
+
221
+ ## Built-in Commands
222
+
223
+ | Command | Purpose | Example |
224
+ |-----------|--------------------------------|-----------------------------------|
225
+ | `doctor` | Environment health check | `bijux doctor` |
226
+ | `status` | Show CLI status | `bijux status -f json` |
227
+ | `repl` | Interactive shell | `bijux repl` |
228
+ | `plugins` | Manage plugins | `bijux plugins list` |
229
+ | `config` | Manage key-value settings | `bijux config set core_timeout=5` |
230
+ | `history` | REPL history operations | `bijux history --limit 10` |
231
+ | `audit` | Security/compliance audit | `bijux audit --dry-run` |
232
+ | `docs` | Docs/spec generation utilities | `bijux docs --out spec.json` |
233
+ | `dev` | Developer tools (DI, plugins) | `bijux dev di` |
234
+ | `sleep` | Pause execution | `bijux sleep -s 5` |
235
+ | `version` | Display version info | `bijux version` |
236
+
237
+ Plugins are surfaced as top-level commands once installed.
238
+
239
+ ---
240
+
241
+ ## Shell Completion
242
+
243
+ Enable tab completion (no sudo required):
244
+
245
+ ```bash
246
+ # Install completion (zsh saves to ~/.zfunc)
247
+ bijux --install-completion
248
+
249
+ # Or print the script if you manage completions manually
250
+ bijux --show-completion
251
+ ```
252
+
253
+ Restart your shell afterward. For zsh, ensure `compinit` runs and your `fpath` includes the completions' directory.
254
+
255
+ ---
256
+
257
+ ## Configuration & Paths
258
+
259
+ **Defaults** (overridable via env vars):
260
+
261
+ * Config: `~/.bijux/.env` → `BIJUXCLI_CONFIG`
262
+ * History: `~/.bijux/.history` → `BIJUXCLI_HISTORY_FILE`
263
+ * Plugins: `~/.bijux/.plugins` → `BIJUXCLI_PLUGINS_DIR`
264
+
265
+ **Resolution order:** CLI flags → Environment → Config file → Defaults
266
+
267
+ Example override:
268
+
269
+ ```bash
270
+ export BIJUXCLI_PLUGINS_DIR=./.plugins
271
+ export BIJUXCLI_CONFIG=./.env
272
+ export BIJUXCLI_HISTORY_FILE=./.history
273
+ ```
274
+
275
+ ---
276
+
277
+ ## Documentation
278
+
279
+ * **User Guide:** [https://bijux.github.io/bijux-cli/usage/](https://bijux.github.io/bijux-cli/usage/)
280
+ * **Contributing:** [https://bijux.github.io/bijux-cli/contributing/](https://bijux.github.io/bijux-cli/contributing/)
281
+ * **Security Policy:** [https://bijux.github.io/bijux-cli/security/](https://bijux.github.io/bijux-cli/security/)
282
+ * **Code of Conduct:** [https://bijux.github.io/bijux-cli/code\_of\_conduct/](https://bijux.github.io/bijux-cli/code_of_conduct/)
283
+
284
+ ---
285
+
286
+ ## Support & Security
287
+
288
+ * **Issues:** please include `--debug` output where feasible.
289
+ * **Vulnerabilities:** report privately via GitHub Security Advisory.
290
+ [https://github.com/bijux/bijux-cli/security/advisories/new](https://github.com/bijux/bijux-cli/security/advisories/new)
291
+
292
+ ---
293
+
294
+ ## License
295
+
296
+ Released under the **MIT License**.
297
+ [https://bijux.github.io/bijux-cli/license/](https://bijux.github.io/bijux-cli/license/)
@@ -0,0 +1,108 @@
1
+ bijux_cli/__init__.py,sha256=Oc4YS6W2MQcEGXQqMq5eiJ4EpDdq8DiRWPf9hB2GVSw,1280
2
+ bijux_cli/__main__.py,sha256=kQHMOZKB14nddaSrGg4vRESVyZbqPAZfFhdKec_xsDc,13120
3
+ bijux_cli/__version__.py,sha256=Nz5WKNVFrJiqh5BydVIgsZm09L4WgZm9r7eoNMVwY6Q,1321
4
+ bijux_cli/api.py,sha256=etjygVP54n-6xIRmhDfss1KtL8wau9QGnF1xW-CQLaM,11779
5
+ bijux_cli/cli.py,sha256=TOWnGD_zbvQ25Xm9XsPUzk6LQ6585v-F3KfM1JkQknE,2060
6
+ bijux_cli/httpapi.py,sha256=t1E9qvpaFYC_spHF9gZhCRZbNkrv4S9LpNEvB4x8Df4,17952
7
+ bijux_cli/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ bijux_cli/commands/__init__.py,sha256=2CjefQcofM1p6d9mIZij_3QZ-WMUn2wAPgwb4jJ93a8,6102
9
+ bijux_cli/commands/audit.py,sha256=CSr_7gDoisgaNn3QLJozDvH5PeA50waLcEGOjqVx-p8,10035
10
+ bijux_cli/commands/docs.py,sha256=qj9OuQ7sVt4HuXnGdKmLXWnseMaz1mCwid-JPQb2kP4,10452
11
+ bijux_cli/commands/doctor.py,sha256=EdaDCdp-vkmCw7Yop4xIhT7WChFABNxoFWII_3d46js,5742
12
+ bijux_cli/commands/help.py,sha256=Ep5k7DjSQlG37OjL-WXhcGHPHMOKjGM-g_YQKW8nbVA,14144
13
+ bijux_cli/commands/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ bijux_cli/commands/repl.py,sha256=4ysff-XFCZArThwpuKcYznvG1fqabRn_jQmxmz6au4U,21841
15
+ bijux_cli/commands/sleep.py,sha256=eSVjmfUzSQvvDKbSwdwF-GGLCaFo4AaOUd-jBWzjggc,5443
16
+ bijux_cli/commands/status.py,sha256=xS3cAGypqoVWF0puGY-9ZjZ_hmUG7cIeJPItTnN9W60,9799
17
+ bijux_cli/commands/utilities.py,sha256=daB1MRzGiOtCFl-Fx0uwIYN_JycTu9yWT5F3MTidzLY,20437
18
+ bijux_cli/commands/version.py,sha256=oYujIDJYTi_j98gHlCoBIIQ445hNOnwXcvDZFUuXTYw,5056
19
+ bijux_cli/commands/config/__init__.py,sha256=UnhpUPZQY47I5jdvMb0Xe7YZ6xTr3D4VMbqaAsvtI_Y,2983
20
+ bijux_cli/commands/config/clear.py,sha256=hGRAFyc1-PXEMWGZumHbQoo3EYEDO5a3zhk1h9TOOZM,3810
21
+ bijux_cli/commands/config/export.py,sha256=bLn0UJKG1iVb9v6XjDunHHg2BfbdmVsMhIhTJ5dIetk,5125
22
+ bijux_cli/commands/config/get.py,sha256=m-oKa_qjh1Z-BDm7EJXeSc97VETSiSb5KGjUrd-HyxU,4587
23
+ bijux_cli/commands/config/list_cmd.py,sha256=YUDzW-pbPaxntgUKwL8CTEIv60oEdToVrR0r7iDvdgw,3967
24
+ bijux_cli/commands/config/load.py,sha256=_XPmS9qnNKhXwuVEpspSZYjfi-rfkMchyrKO3h0v7jw,4010
25
+ bijux_cli/commands/config/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
+ bijux_cli/commands/config/reload.py,sha256=4Xp1L2HOCAZ7SqM7Y2WeaAYpmudST7lGfZoCV1CH_pU,3908
27
+ bijux_cli/commands/config/service.py,sha256=Fi3MKKeTk7AhYXnq75DF438eNKYjIwuW0FVDqnn67nM,3531
28
+ bijux_cli/commands/config/set.py,sha256=pKffLQWnCiBaJTsn7F5D4R6G7OpFrkkkO1lu6L_XhHY,8712
29
+ bijux_cli/commands/config/unset.py,sha256=ByDNtMTet3jtCDL1SFZp4KNJ0n1Bn3UJ4A_kUpLJ2Fc,4433
30
+ bijux_cli/commands/dev/__init__.py,sha256=dOj40VwVDoNuPJ6PIPY3YZwqNMpdBcJyoX7hRPrUruU,1498
31
+ bijux_cli/commands/dev/di.py,sha256=KMK9c0QWGlXCS0qki_TavVA9JiC1e8I66vs3OybwrS4,9279
32
+ bijux_cli/commands/dev/list_plugins.py,sha256=kaIvp02EG1jdPVakYpR_qP9W2Lvob995IobhCVTczt8,2292
33
+ bijux_cli/commands/dev/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
+ bijux_cli/commands/dev/service.py,sha256=zufkb2G8CS9mAZtRN2Fm8AHDsxCLlZ8HJh4NBdHEpPo,3898
35
+ bijux_cli/commands/history/__init__.py,sha256=0_5rtKCfazTEj-NdZXPPtrvfQIYHFMBL6s-7sqUSU5I,1414
36
+ bijux_cli/commands/history/clear.py,sha256=lVaCyPATxPLh5fZNRNPeiElnMqxIrVGSH-235_fJti4,4931
37
+ bijux_cli/commands/history/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
+ bijux_cli/commands/history/service.py,sha256=YRZOWJSzrUj1bv5zWoKHvSxrgJkChvYwd-pyiH9r6EA,12434
39
+ bijux_cli/commands/memory/__init__.py,sha256=dKX_090GniTDjVoznTWOXBbjsfcP31YPLohYrr__6dY,2065
40
+ bijux_cli/commands/memory/clear.py,sha256=vToSc-jLqnajOnl4SvqPgo4i4rq-RpQj1qgIB6xipj0,3613
41
+ bijux_cli/commands/memory/delete.py,sha256=ieo_HW2_mhQsqTXBT4iUe5HQUCyOyRRCXGyWqOV1lSg,4589
42
+ bijux_cli/commands/memory/get.py,sha256=nrTHAaOSzIcFa-LUlPSXMhkB4COvFaW31CDsWByKa-g,4694
43
+ bijux_cli/commands/memory/list.py,sha256=0nLf7LTCVdyFZU46J4snSoqcSqgOquDGimIR8NV06Uc,3745
44
+ bijux_cli/commands/memory/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
+ bijux_cli/commands/memory/service.py,sha256=QyNd9OUNgdXyPVDf0GvmX1QPqP_Ue7Ex89Ke7rVm04U,7835
46
+ bijux_cli/commands/memory/set.py,sha256=uK8rEc72aKdfhGja9zYA2johf9oC22ugww0-4k9GrxM,4509
47
+ bijux_cli/commands/memory/utils.py,sha256=CTYtsR0AD0VHnmwWwTtvH76Z87S8bqM_2FtYk5otAmg,1776
48
+ bijux_cli/commands/plugins/__init__.py,sha256=36gDO9RJCFLrpsc3dVfHL3fCHu9vrcb-DaK49yPkFY0,2080
49
+ bijux_cli/commands/plugins/check.py,sha256=--WMqVaAfr-n2AQcWKEobnBYDwhqEqEHf0uw05dj1xI,8164
50
+ bijux_cli/commands/plugins/info.py,sha256=Xy3T6_HH5QaOj1EC_ldgeBrrP8W8fY3uRNfV-yT9FSs,4669
51
+ bijux_cli/commands/plugins/install.py,sha256=JyBNIQUjnq7ynLSK9sIZFdYGEPLWIcx1aKlk_-AJmPs,11745
52
+ bijux_cli/commands/plugins/list.py,sha256=5z9pWrSKaKRakA5dcBGYqyJ9jkld8aDa3gGwjIw43-g,2741
53
+ bijux_cli/commands/plugins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
+ bijux_cli/commands/plugins/scaffold.py,sha256=6QtPlv7hhlUQa5DOi7xyjplmOY10Xyunyptp4ugfWVY,9406
55
+ bijux_cli/commands/plugins/uninstall.py,sha256=V424ps7HbPJWfQ52XMV-r31XnBG7H1o1KMxeHiXVQ9c,6708
56
+ bijux_cli/commands/plugins/utils.py,sha256=PIZgTafeVMWh2L_pW6k5M-gsK6w1HsxNzIk0DWyMvh4,5308
57
+ bijux_cli/contracts/__init__.py,sha256=YZIv6hBb6zgmNVDe_Le_MVbPQ3tL4T4rHooyJ--IKqE,1792
58
+ bijux_cli/contracts/audit.py,sha256=MCUU8wAkOgoSZbTDm2U4WKlG7kgU7D_bgRLvM2UbZTs,2062
59
+ bijux_cli/contracts/config.py,sha256=cvjPEBKNPTJ2LIpjwIsnhrftRDmp8h41cVkhHBTmtzw,3598
60
+ bijux_cli/contracts/context.py,sha256=xbzkG89zYtPs4pGSv-i1bXHqKlR3He_C5hLiAMvTBGs,2539
61
+ bijux_cli/contracts/docs.py,sha256=BQGw79YkHkqdYrDYGD5XFNmzdGisNhwPR7qO7dCbLc0,1958
62
+ bijux_cli/contracts/doctor.py,sha256=C4qiW31yFCDAljsA35C5AE6P4N1GzdIIeXdErmZ1Bs0,914
63
+ bijux_cli/contracts/emitter.py,sha256=4tPl9cAcGSFqQYFcaXXEWpS9SeX4nAT2leedX_jO6Lo,1861
64
+ bijux_cli/contracts/history.py,sha256=w4JeRafObzsgVw-IkwxB_ArYSAWcwEeAYLZ-5xHscPs,2920
65
+ bijux_cli/contracts/memory.py,sha256=eLCYw0SwkvfcQ3WOWbP2ULRS3Kooelc4R4DBqgMwNqM,2014
66
+ bijux_cli/contracts/observability.py,sha256=79sss7gFOdChgLjXDhgsgCU_XIVvBL5SjDv-yLBaDkw,2894
67
+ bijux_cli/contracts/process.py,sha256=ZQkCsRPXIfCOHx_vPVax5tYgktdT1RM-pBSHlyE760U,1604
68
+ bijux_cli/contracts/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
+ bijux_cli/contracts/registry.py,sha256=GabwxuC-_J99LWE2yiJ5ZX8pRydy2Oejj4ZQOD8CAQw,3240
70
+ bijux_cli/contracts/retry.py,sha256=K5drhVAZ0rpasGBakUtvZdS3AosVqlyx1Yl8J5q-_bw,1687
71
+ bijux_cli/contracts/serializer.py,sha256=6LIPmayFIl4hWNlxltqB10xJw5s3AGMWJP36BZeAA4M,2894
72
+ bijux_cli/contracts/telemetry.py,sha256=FtRLkaSV5T0p4pw-CvfJaqKhEF6ttF6Gi3v7nERS3yI,1392
73
+ bijux_cli/core/__init__.py,sha256=kuaJT_SF8TTOdmagUVjWouxtT_AEwliLwihwtUy0PBM,1264
74
+ bijux_cli/core/constants.py,sha256=GtCm0u6qFpT0aEW7goI_kjaxUSCqtnEL8IAlLJlxXSU,872
75
+ bijux_cli/core/context.py,sha256=5LnhKv1CsRCzSvOmCT9KuMy1GInmJGV3SHLcnAYaaTk,7460
76
+ bijux_cli/core/di.py,sha256=0ry0mKLcDYS1wLvZUpA1r3uN8VahvT_FikFrUE2_JiM,26510
77
+ bijux_cli/core/engine.py,sha256=Gc0ptIjMhVlOAA2vaaqIUPDWKuRevb7sgIX3Ht8qvug,7480
78
+ bijux_cli/core/enums.py,sha256=03SWkMol2DMIQiM7RoR2HcVJANPpN3R68FwXcSBDN6Y,1584
79
+ bijux_cli/core/exceptions.py,sha256=WtVC2-4vEb1okFmH4f8hOOniIeInfgWEXoUvmnKHzzk,5301
80
+ bijux_cli/core/paths.py,sha256=kg-6c08c9xVYGDDsgyI_PlrqqsCxCnkNd5PiVKgUq0o,700
81
+ bijux_cli/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
+ bijux_cli/infra/__init__.py,sha256=ZNr-HK0-k64o9iF81M5KvYwO_T0P03y2_w8j3NbgA-M,1658
83
+ bijux_cli/infra/emitter.py,sha256=d3JW1TksJ1F4xo_uk-3pxf0M0G373Wn5N7QfXZv8hfA,5173
84
+ bijux_cli/infra/observability.py,sha256=WjMM0sp-QgUHCCa6oTw-8DSx9d6RvTLopGEkF1dHKk4,5025
85
+ bijux_cli/infra/process.py,sha256=_6xgGHh4dFxagXkXyqMmRvCb7JY9LoWbtKZwGHbamQ4,6530
86
+ bijux_cli/infra/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
+ bijux_cli/infra/retry.py,sha256=SPFQTy0fAkDiqzXa1uYZbMvK75Rv4A_wzdx50LFj4qk,10012
88
+ bijux_cli/infra/serializer.py,sha256=x2-9vVIGWRh7L5F4MpuCx3Y4xTOxDrjqAH_L1WvuIfY,17939
89
+ bijux_cli/infra/telemetry.py,sha256=UeJvxYT8awBFFbEiHFqDEKasosYiE-DyLh2bGfkFPfE,5954
90
+ bijux_cli/services/__init__.py,sha256=t9xq_3R1VL6GSZk2OOUAmnadfyddGGipQXKzZUyTG38,7980
91
+ bijux_cli/services/audit.py,sha256=jPde6CZNQYA7MvdyZ4bCL3sF3JSTI-pC1COqMeLHUQU,9155
92
+ bijux_cli/services/config.py,sha256=-MY0LnG3RLAp_hwjcwwxnljGzOJ4_SpyqliU4zNvqm4,26025
93
+ bijux_cli/services/docs.py,sha256=wVpUmejYkyy3v9DcfnMBoCnD02bkjVxgKAutKeP2cTk,6324
94
+ bijux_cli/services/doctor.py,sha256=9FPRFtqJaxhYhGg8AS3fP-EUMniFw1IxCVkIotBgf0k,962
95
+ bijux_cli/services/history.py,sha256=qvMaQXI21Zj0Pji3ltPS_ro7AHJ2gs6pRoz8N7Qf2sg,20223
96
+ bijux_cli/services/memory.py,sha256=WSSVIDdxqJvFqjCOoz1d0qJXu4zSn5l0XUtevZzA-GE,3943
97
+ bijux_cli/services/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
+ bijux_cli/services/utils.py,sha256=j73ALEALLqnTuL6bcvFqNP48ag8KoiNbjrZ0-vVkV2U,2480
99
+ bijux_cli/services/plugins/__init__.py,sha256=y12OwV1uOs-Z5iPV08GjtWK0mqvRtWarNCb1FR4ri9Q,10544
100
+ bijux_cli/services/plugins/entrypoints.py,sha256=uqO05ToC3K4g_SYC4D98DlFaZ5iBYhi4YG6uNCnt_Og,4851
101
+ bijux_cli/services/plugins/groups.py,sha256=T6DiysWOyba5tM5WhnZCA5kzlBlWuck7fWW2NOpa-7k,5474
102
+ bijux_cli/services/plugins/hooks.py,sha256=QNzjutKpBX76A_ngFLQ4sNTwnHmEKwvF8ZPZ6oNM7RQ,3703
103
+ bijux_cli/services/plugins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
104
+ bijux_cli/services/plugins/registry.py,sha256=uTojHn693sOBpSkSyueQPLVVdnKlReibFdXc0W4Dv98,10309
105
+ bijux_cli-0.1.0.dist-info/METADATA,sha256=uiDp7jChIUm5eTBWCVZh-zPuFAhHEeDCTyi7QZjA20U,11515
106
+ bijux_cli-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
107
+ bijux_cli-0.1.0.dist-info/entry_points.txt,sha256=WfHZMpaEsyrNHE-DdA2p57r5nlndK0HfWMPvVFstNBE,50
108
+ bijux_cli-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ bijux = bijux_cli.__main__:main