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.
Files changed (40) hide show
  1. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/PKG-INFO +1 -1
  2. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/ingest.py +7 -1
  3. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/ingest_docs.py +2 -2
  4. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/pyproject.toml +1 -1
  5. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/.gitignore +0 -0
  6. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/AGENTS.md +0 -0
  7. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/CLAUDE.md +0 -0
  8. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/buildai_bootstrap.py +0 -0
  9. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/__init__.py +0 -0
  10. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/_has_core.py +0 -0
  11. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/auth_local.py +0 -0
  12. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/__init__.py +0 -0
  13. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/api_proxy.py +0 -0
  14. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/auth.py +0 -0
  15. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/db/__init__.py +0 -0
  16. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/db/broker.py +0 -0
  17. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/db/common.py +0 -0
  18. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/db/migrate.py +0 -0
  19. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/db/query.py +0 -0
  20. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/db/schema.py +0 -0
  21. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/db/status.py +0 -0
  22. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/db/tunnel.py +0 -0
  23. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/dev.py +0 -0
  24. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/doctor.py +0 -0
  25. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/egoexo.py +0 -0
  26. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/gigcamera.py +0 -0
  27. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/grid.py +0 -0
  28. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/commands/processing.py +0 -0
  29. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/config.py +0 -0
  30. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/console.py +0 -0
  31. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/context.py +0 -0
  32. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/db_broker.py +0 -0
  33. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/guard.py +0 -0
  34. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/internal_api.py +0 -0
  35. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/main.py +0 -0
  36. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/nl_query/__init__.py +0 -0
  37. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/nl_query/dataset_tools.py +0 -0
  38. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/ops_init.py +0 -0
  39. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/output.py +0 -0
  40. {buildai_cli-0.3.83 → buildai_cli-0.3.85}/cli/pagination.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: buildai-cli
3
- Version: 0.3.83
3
+ Version: 0.3.85
4
4
  Summary: Build AI CLI (Typer)
5
5
  Requires-Python: >=3.11
6
6
  Requires-Dist: httpx>=0.27.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
- """Pin drifted minis to the ingest-mini-1 Homebrew, rsync, and uv baseline."""
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] — pin Homebrew/rsync/uv to the ingest-mini-1 baseline (new or drifted minis).
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 Pin minis to ingest-mini-1 Homebrew/rsync/uv baseline
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)
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "buildai-cli"
7
- version = "0.3.83"
7
+ version = "0.3.85"
8
8
  description = "Build AI CLI (Typer)"
9
9
  requires-python = ">=3.11"
10
10
  dependencies = [
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes