feat(demo): opt-in agent demo via agentdemo token + clean showcase ISO entry - #172
Merged
Conversation
…n showcase ISO entry Follow-up to #171. The demo was gated on !boot_is_quiet(), which coupled "run the demo" to "verbose console spam" and — critically — left the Desktop ISO's DEFAULT boot (the `quiet` entry) SKIPPING the demo. So the showcase ISO didn't actually show the showcase. Decouple the two: add an `agentdemo` cmdline token (boot_run_agent_demo()) that opts into the demo independently of `quiet`. The demo now runs iff the token is present: - default ci-smoke boot passes `-append agentdemo` (and still gates AGENTD), - the MCP/society/quiet CI gates DON'T pass it -> demo skipped -> their timing-sensitive proofs (e.g. the MCP delegation-reap) are unperturbed, - a new GRUB entry "QuantumOS (agent-native demo)" boots `quiet agentdemo` — a CLEAN console that still runs the demo, the real showcase for the Desktop ISO. Kept non-default so ci-smoke-iso still boots the plain quiet console. Verified: ci-smoke (token) prints AGENTD: DEMO OK + PASSES; ci-smoke-mcp (no token) PASSES with the delegation reap intact; ci-smoke-iso (default quiet entry, no token) PASSES. cppcheck, clang-format-18, check-api-consistency green. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Follow-up to #171. The demo was gated on
!boot_is_quiet(), which coupled "run the demo" to "verbose console spam" — and, critically, left the Desktop ISO's default boot (thequietentry) skipping the demo. So the showcase ISO didn't actually show the showcase.Change
Decouple the two with an
agentdemocmdline token (boot_run_agent_demo()). The demo runs iff the token is present:-append agentdemo(and still gatesAGENTD: DEMO OK),quiet agentdemo— a clean console that still runs the demo, the real showcase for the Desktop ISO. Kept non-default soci-smoke-isostill boots the plain quiet console.The token is deliberately decoupled from
quiet, so the showcase runs on a clean console (just the demo's one-shot lines, no steady-state spam).Verification (all green, local WSL CI-mirror)
ci-smoke(token) →AGENTD: DEMO OK+ PASSEDci-smoke-mcp(no token) → PASSED, delegation reap intactci-smoke-iso(default quiet entry, no token) → PASSEDcppcheck,clang-format-18 --dry-run --Werror,check-api-consistency.sh🤖 Generated with Claude Code