Add daily-loop prepare and readiness checks
Make the local chat-host loop explicit and cheap so users can warm the machine once instead of rediscovering environment and guest setup on every session. Add cache-backed daily-loop manifests plus the new `pyro prepare` flow, extend `pyro doctor --environment` with warm/cold/stale readiness reporting, and add `make smoke-daily-loop` to prove the warmed repro-fix reset path end to end. Also fix `python -m pyro_mcp.cli` to invoke `main()` so the new smoke and `dist-check` actually exercise the CLI module, and update the docs/roadmap to present `doctor -> prepare -> connect host -> reset` as the recommended daily path. Validation: `uv lock`, `UV_OFFLINE=1 UV_CACHE_DIR=.uv-cache make check`, `UV_OFFLINE=1 UV_CACHE_DIR=.uv-cache make dist-check`, and `UV_OFFLINE=1 UV_CACHE_DIR=.uv-cache make smoke-daily-loop`.
This commit is contained in:
parent
d0cf6d8f21
commit
663241d5d2
26 changed files with 1592 additions and 199 deletions
|
|
@ -6,7 +6,7 @@ goal:
|
|||
make the core agent-workspace use cases feel trivial from a chat-driven LLM
|
||||
interface.
|
||||
|
||||
Current baseline is `4.4.0`:
|
||||
Current baseline is `4.5.0`:
|
||||
|
||||
- `pyro mcp serve` is now the default product entrypoint
|
||||
- `workspace-core` is now the default MCP profile
|
||||
|
|
@ -83,7 +83,7 @@ capability gaps:
|
|||
13. [`4.2.0` Host Bootstrap And Repair](llm-chat-ergonomics/4.2.0-host-bootstrap-and-repair.md) - Done
|
||||
14. [`4.3.0` Reviewable Agent Output](llm-chat-ergonomics/4.3.0-reviewable-agent-output.md) - Done
|
||||
15. [`4.4.0` Opinionated Use-Case Modes](llm-chat-ergonomics/4.4.0-opinionated-use-case-modes.md) - Done
|
||||
16. [`4.5.0` Faster Daily Loops](llm-chat-ergonomics/4.5.0-faster-daily-loops.md) - Planned
|
||||
16. [`4.5.0` Faster Daily Loops](llm-chat-ergonomics/4.5.0-faster-daily-loops.md) - Done
|
||||
|
||||
Completed so far:
|
||||
|
||||
|
|
@ -126,10 +126,9 @@ Completed so far:
|
|||
- `4.4.0` adds named use-case modes so chat hosts can start from `repro-fix`,
|
||||
`inspect`, `cold-start`, or `review-eval` instead of choosing from the full
|
||||
generic workspace surface first.
|
||||
|
||||
Planned next:
|
||||
|
||||
- [`4.5.0` Faster Daily Loops](llm-chat-ergonomics/4.5.0-faster-daily-loops.md)
|
||||
- `4.5.0` adds `pyro prepare`, daily-loop readiness in `pyro doctor`, and a
|
||||
real `make smoke-daily-loop` verification path so the local machine warmup
|
||||
story is explicit before the chat host connects.
|
||||
|
||||
## Expected Outcome
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# `4.5.0` Faster Daily Loops
|
||||
|
||||
Status: Planned
|
||||
Status: Done
|
||||
|
||||
## Goal
|
||||
|
||||
|
|
@ -9,11 +9,11 @@ for normal work, not only for special high-isolation tasks.
|
|||
|
||||
## Public API Changes
|
||||
|
||||
The product should add an explicit fast-path for repeated local use, such as:
|
||||
The product now adds an explicit fast-path for repeated local use:
|
||||
|
||||
- a prewarm or prepare path for the recommended environment and runtime
|
||||
- a clearer fast reset or retry path for repeated repro-fix loops
|
||||
- visible diagnostics for cache, prewarm, or ready-state health
|
||||
- `pyro prepare [ENVIRONMENT] [--network] [--force] [--json]`
|
||||
- `pyro doctor --environment ENVIRONMENT` daily-loop readiness output
|
||||
- `make smoke-daily-loop` to prove the warmed machine plus reset/retry story
|
||||
|
||||
The exact command names can still move, but the user-visible story needs to be:
|
||||
|
||||
|
|
@ -50,8 +50,8 @@ The exact command names can still move, but the user-visible story needs to be:
|
|||
|
||||
## Required Repo Updates
|
||||
|
||||
- docs updated to show the recommended daily-use fast path
|
||||
- diagnostics and help text updated so the user can tell whether the machine is
|
||||
already warm and ready
|
||||
- at least one repeat-loop smoke or benchmark-style verification scenario
|
||||
added to prevent regressions in the daily workflow
|
||||
- docs now show the recommended daily-use fast path
|
||||
- diagnostics and help text now show whether the machine is already warm and
|
||||
ready
|
||||
- the repo now includes `make smoke-daily-loop` as a repeat-loop verification
|
||||
scenario for the daily workflow
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue