buildai-cli 0.3.83__tar.gz → 0.3.85__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.
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/PKG-INFO +1 -1
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/ingest.py +7 -1
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/ingest_docs.py +2 -2
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/pyproject.toml +1 -1
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/.gitignore +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/AGENTS.md +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/CLAUDE.md +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/buildai_bootstrap.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/__init__.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/_has_core.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/auth_local.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/__init__.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/api_proxy.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/auth.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/db/__init__.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/db/broker.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/db/common.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/db/migrate.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/db/query.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/db/schema.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/db/status.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/db/tunnel.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/dev.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/doctor.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/egoexo.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/gigcamera.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/grid.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/processing.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/config.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/console.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/context.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/db_broker.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/guard.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/internal_api.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/main.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/nl_query/__init__.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/nl_query/dataset_tools.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/ops_init.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/output.py +0 -0
- {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/pagination.py +0 -0
|
@@ -162,6 +162,11 @@ def deploy_run(
|
|
|
162
162
|
"--allow-dirty",
|
|
163
163
|
help="Allow deploy with a dirty git working tree (emergency only).",
|
|
164
164
|
),
|
|
165
|
+
include_reconcile: bool = typer.Option(
|
|
166
|
+
False,
|
|
167
|
+
"--include-reconcile",
|
|
168
|
+
help="Also reconcile mini host surfaces such as 10G NIC, native tools, kiosk app, and DND.",
|
|
169
|
+
),
|
|
165
170
|
json_output: bool = typer.Option(False, "--json", help="Emit JSON result."),
|
|
166
171
|
) -> None:
|
|
167
172
|
"""Build an immutable release artifact and execute a canaried staged fleet rollout."""
|
|
@@ -172,6 +177,7 @@ def deploy_run(
|
|
|
172
177
|
reason=reason,
|
|
173
178
|
transport=transport,
|
|
174
179
|
allow_dirty=allow_dirty,
|
|
180
|
+
include_reconcile=include_reconcile,
|
|
175
181
|
)
|
|
176
182
|
_emit_deploy_run_result(record, json_output=json_output, engine=engine, run_id=record.run_id)
|
|
177
183
|
raise typer.Exit(exit_code)
|
|
@@ -330,7 +336,7 @@ def host_bootstrap(
|
|
|
330
336
|
transport: str = typer.Option("tailscale", "--transport", help=TRANSPORT_HELP),
|
|
331
337
|
json_output: bool = typer.Option(False, "--json", help="Emit JSON result."),
|
|
332
338
|
) -> None:
|
|
333
|
-
"""
|
|
339
|
+
"""Reconcile drifted minis to the managed Homebrew, rsync, and uv contract."""
|
|
334
340
|
|
|
335
341
|
engine = _ingest_engine()
|
|
336
342
|
try:
|
|
@@ -36,7 +36,7 @@ Read-only fleet gates and drift checks before mutating hosts.
|
|
|
36
36
|
HOST_GROUP_HELP = """
|
|
37
37
|
Host-level repair outside the app deploy path.
|
|
38
38
|
|
|
39
|
-
[b]bootstrap[/b] —
|
|
39
|
+
[b]bootstrap[/b] — reconcile Homebrew/rsync/uv to the deploy contract (new or drifted minis).
|
|
40
40
|
[b]repair[/b] — reconcile one mini host surface when readiness reports drift.
|
|
41
41
|
"""
|
|
42
42
|
|
|
@@ -233,7 +233,7 @@ fleet preflight Read-only: inventory, reachability, tailscale check
|
|
|
233
233
|
fleet auth Validate runtime API credentials for scope
|
|
234
234
|
fleet readiness Host drift / maintenance deployability report
|
|
235
235
|
|
|
236
|
-
host bootstrap
|
|
236
|
+
host bootstrap Reconcile minis to the managed Homebrew/rsync/uv contract
|
|
237
237
|
host repair Repair one mini host outside app deploy
|
|
238
238
|
|
|
239
239
|
docs Print this guide (--topic <name> for one section)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|