gflow-cli 0.77.0__tar.gz → 0.77.1__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.
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.codex-plugin/plugin.json +1 -1
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/CHANGELOG.md +75 -11
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/PKG-INFO +2 -1
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docker/Dockerfile +1 -1
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/AUTHENTICATION.md +18 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/DISTRIBUTION.md +8 -4
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/INDEX.md +1 -1
- gflow_cli-0.77.1/docs/LIVE_VERIFICATION_v0.77.1.md +223 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/PROJECT_STATUS.md +46 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/USAGE.md +16 -1
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/plugins/gflow/.claude-plugin/plugin.json +1 -1
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/pyproject.toml +13 -1
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/server.json +2 -2
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/__init__.py +1 -1
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/auth/internal_chromium.py +61 -12
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/auth/real_chrome.py +32 -5
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/auth/verification.py +70 -9
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/update_check.py +66 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/auth/strategies/test_strategies.py +107 -4
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/auth/test_real_chrome.py +50 -4
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/auth/test_verification.py +72 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_observability.py +35 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_update_check.py +81 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/uv.lock +3 -1
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/AUTHENTICATION.md +18 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/USAGE.md +16 -1
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.agents/plugins/marketplace.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/README.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/commands/gflow/active.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/commands/gflow/branch-review.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/commands/gflow/changelog.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/commands/gflow/check.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/commands/gflow/doc-review.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/commands/gflow/issue-assessment.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/commands/gflow/issue-resolve.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/commands/gflow/known-issues.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/commands/gflow/live-verify.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/commands/gflow/llm-council.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/commands/gflow/next.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/commands/gflow/plan.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/commands/gflow/pr-council-review.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/commands/gflow/predict.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/commands/gflow/release.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/commands/gflow/scenario.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/commands/gflow/sonar.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/commands/gflow/spike.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude/commands/gflow/status.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.claude-plugin/marketplace.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.env.template +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.gitattributes +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.github/CODEOWNERS +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.github/FUNDING.yml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.github/copilot-instructions.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.github/dependabot.yml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.github/workflows/ci.yml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.github/workflows/deps-watch.yml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.github/workflows/external-pr-triage.yml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.github/workflows/governance-advisory.yml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.github/workflows/governance-benchmark.yml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.github/workflows/labels.yml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.github/workflows/main-base-guard.yml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.github/workflows/mcp-registry.yml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.github/workflows/pages.yml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.github/workflows/release.yml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.github/workflows/scorecard.yml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.github/workflows/selector-probe.yml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.github/workflows/sponsors.yml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.github/workflows/star-history-watch.yml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.gitignore +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.gitleaks.toml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.pre-commit-config.yaml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/.secrets.baseline +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/AGENTS.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/CLAUDE.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/CONFIGURATION.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/CONTRIBUTING.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/DISCLAIMER.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/KNOWN_ISSUES.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/LICENSE +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/README.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/RELEASE.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/ROADMAP.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/conftest.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/deploy/logrotate-pr-triage +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docker/Dockerfile.test +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docker/README.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docker/docker-compose.yml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docker/dockerignore.example +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docker-compose.yml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/ACCOUNT_SAFETY.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/AGENT_GUIDE.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/AGENT_UI_E2E.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/AGENT_UI_RECON.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/ARCHITECTURE.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/ASSET_TAGGING_RECON.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/CHARACTER.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/CHARACTER_RECON.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/CONFIGURATION.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/CONTAINER.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/DATA_LAYER.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/DEBUGGING.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/DEMOS.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/DEVELOPMENT.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/E2E_TESTING.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/EXTERNAL_STORAGE.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/GITHUB.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/GOVERNANCE_BENCHMARK.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/IMAGE_UPSCALE_RECON.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/INSTRUCTIONS.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_data_layer.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_image_batch.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_playwright_1.61.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_reference_entity_guard.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.10.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.11.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.12.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.13.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.16.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.17.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.18.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.19.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.20.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.20.1.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.21.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.22.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.23.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.24.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.25.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.26.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.27.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.27.1.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.28.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.29.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.30.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.31.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.32.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.32.1.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.33.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.34.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.35.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.36.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.37.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.38.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.38.1.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.39.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.40.0-production-readiness.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.40.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.41.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.42.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.43.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.44.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.45.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.46.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.46.1.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.47.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.48.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.49.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.50.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.51.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.52.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.54.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.55.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.56.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.57.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.57.1.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.58.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.59.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.60.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.61.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.62.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.62.1.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.63.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.64.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.65.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.66.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.66.1.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.66.2.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.66.3.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.67.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.68.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.69.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.7.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.70.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.71.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.71.1.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.72.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.73.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.73.1.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.73.2.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.74.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.75.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.76.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.77.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.8.1.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.9.0.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_v0.9.1.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/LIVE_VERIFICATION_video_download.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/MARKETPLACES.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/MCP.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/MEDIA_LIBRARY.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/MOVIE.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/PROMPT_EXPANSION.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/REFERENCE_STRATEGIES.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/SECURITY.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/SPONSORS.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/TOOLS.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/USER_GUIDE.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/assets/demo-split-pf.gif +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/assets/example-run.gif +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/assets/examples.webp +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/medium_tutorial.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/schemas/movie-handoff.schema.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/sonar-cleanup-tracker.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/README.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/agents-md-vs-llms-txt.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/background-e2e-pytest-pattern.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/bdd-stubs-mirror-runtime-signatures.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/credit-free-route-abort-verification.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/data-layer-overview.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/data-layer-test-pollution-trap.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/doc-examples-are-untested-fixtures.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/draft-pr-merge-trap.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/e2e-evidence-is-a-contributor-deliverable.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/exit-code-16-data-store.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/flow-capabilities-are-cohort-dependent.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/flow-credits-videos-only.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/flow-locale-leak-icon-ligatures.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/flow-recon-must-run-on-denon82-ffroliva-migrated.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/force-color-breaks-cli-tests.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/full-test-suite-ooms.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/git-add-all-sweeps-scratch-files.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/image-video-mode-switch-symmetry.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/ligature-carrier-differs-by-host.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/mcp-is-first-class-across-skill-chain.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/memory-is-working-dir-keyed.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/migrated-host-driver-wire-lessons.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/on-started-callback-recorder-safety.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/playwright-click-no-downstream-event-signature.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/pr-council-review-stale-tree-reads.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/pr-hygiene-revert-and-multi-commit.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/pr-must-verify-on-affected-surface.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/prose-conflicts-hide-in-disjoint-files.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/pypi-readme-staleness-fix.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/pypi-rejected-filename-reusable.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/readme-hybrid-router-pattern.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/real-browser-auth-mandatory.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/release-back-merge-gap-recovery.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/release-signing.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/release-spec-plan-memory-consolidation.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/rest-transports-drop-ui-fields.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/ruff-format-scope-is-src-tests.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/sonarcloud-hotspot-review-workflow.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/sonarcloud-new-code-gotchas.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/sonarcloud-pr-issues-scope-s7497.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/sonarcloud-setup.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/stale-test-discovery.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/structlog-cache-logger-off-for-tests.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/ui-selector-drift-error-exit-23.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/verification-ledger-5-layer.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/video-model-capability-matrix.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/wheel-build-sanity-gate.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/windows-dev-quirks.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/memory/windows-running-launcher-blocks-uv-upgrade.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-06-12-issue-174-library-ui-attach/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-06-22-mcp-server/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-06-22-mcp-server/PREDICT.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-06-22-mcp-server/SCENARIO.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-06-22-prompt-expansion/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-06-22-prompt-expansion/PREDICT.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-06-22-prompt-expansion/SCENARIO.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-06-24-gflow-studio-scaffold/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-06-24-rest-api-layer/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-06-26-mcp-e2e-test/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-07-08-pr-triage-autopilot/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-07-09-camoufox-adoption/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-07-14-storyboarding-and-visual-curation/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-07-18-asset-tagging/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-07-19-live-verify/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-07-19-production-readiness-browser-lifecycle.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-07-19-production-readiness-driver-cdp-verification.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-07-19-production-readiness-public-truth.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-07-19-production-readiness-queue-safety.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-07-26-character-prompt-polishing/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-07-26-project-name-management/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-07-26-self-documenting-errors/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-07-27-overlay-banner-dismissal/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-07-27-tier-aware-credit-confirmations/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-07-27-tier-aware-credit-confirmations/SCENARIO.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-08-04-mcp-tasks/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-08-04-output-hardening/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-08-05-issue-317-intra-batch-references/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-08-05-issue-317-intra-batch-references/SCENARIO.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-08-05-issue-402-entity-provenance/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-08-05-issue-402-entity-provenance/SCENARIO.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-08-05-issue-451-duration-tab-drift/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-08-05-issue-451-duration-tab-drift/SCENARIO.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-08-06-driver-delay-jittering/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-08-06-driver-delay-jittering/SCENARIO.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-08-06-overlay-changelog-watermark/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-08-06-overlay-changelog-watermark/SCENARIO.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-08-06-ui-mode-policy/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-08-06-ui-mode-policy/SCENARIO.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-08-14-video-ui-mode-policy/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-08-14-video-ui-mode-policy/SCENARIO.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-08-21-selector-registry.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-08-25-workflow-hardening-gaps.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-09-01-video-extend/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-09-06-spike-tooling-reorg/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/plans/2026-09-14-community-feedback-uplift/PLAN.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/research/2026-06-27-tool-abstraction-evaluation.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/specs/2026-06-29-issue-assessment-workflow-design.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/specs/2026-07-04-pr-triage-autopilot-design.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/specs/2026-07-18-asset-tagging-design.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/specs/2026-07-19-live-verify-design.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/specs/2026-07-19-production-readiness-hardening-design.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/specs/2026-08-21-selector-registry-design.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/specs/2026-08-26-model-attribution-provenance.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/specs/2026-08-26-model-cost-quota-catalog.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/specs/2026-08-27-changelog-modal-precondition-design.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-07-09-camoufox-waf-403.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-07-12-ui-cohort-backend-config.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-07-17-production-readiness-assessment.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-08-01-mcp-2026-07-28-spec-impact.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-08-14-video-model-capability-matrix.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-08-15-picker-tile-alt-text.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-08-31-veo-extend-route-recon.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-04-migrated-host-handoff-mechanism.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-05-migrated-frames-attach.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-05-migrated-host-wire-protocol.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-05-migrated-model-menu-lower-priority.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-05-migrated-r2v-attach-surface.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-06-labs-vs-migrated-session-credential.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-06-migrated-character-surface-and-recaptcha.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-07-character-format-button-anchor.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-07-credit-shortfall-looks-like-selector-drift.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-07-format-click-is-not-a-format.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-07-ligature-carrier-and-name-drift.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-07-migrated-composer-has-an-image-mode.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-08-g12-blocks-webdriver-not-playwright.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-08-migrated-composer-agent-mode-hides-settings.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-08-migrated-image-submit-wire.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-08-migrated-queue-is-readable-on-zzl0ze.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-08-migrated-upload-fails-two-ways.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-10-about-redirect-stability.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-10-migrated-click-blocked.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-11-about-redirect-is-decided-client-side.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-11-about-redirect-is-stable-for-an-account.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-11-migrated-cookie-bar-blocks-the-composer.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-11-nano2-lite-capability.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-13-frames-picker-confirm.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-14-credits-on-migrated-host.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-14-generation-wire-no-push-channel.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-14-two-domain-protocol-survey.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-14-video-poll-is-a-fixed-client-timer.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-15-container-transport-viability.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-15-unentitled-account-signal.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/docs/superpowers/spikes/2026-09-16-networkidle-costs-3x-it-does-not-hang.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/examples/README.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/examples/batch_from_config.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/examples/multi_prompt_t2i.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/examples/sample_config.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/examples/sample_prompts.txt +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/examples/single_image_t2i.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/examples/workflow_chain.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/glama.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/index.html +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/llms.txt +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/mempalace.yaml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/plugins/README.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/plugins/gflow/.mcp.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/plugins/gflow/skills/gflow-cli/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/plugins/gflow/skills/video-production/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/plugins/gflow/skills/video-production/clip_qa.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/plugins/gflow/skills/video-production/composition.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/plugins/gflow/skills/video-production/consistency.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/plugins/gflow/skills/video-production/failure-modes.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/plugins/gflow/skills/video-production/tasks.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/samples/README.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/samples/captured/01_upload_image.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/samples/captured/02_batchAsyncGenerateVideoText.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/samples/captured/03_batchCheckAsyncVideoGenerationStatus.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/samples/captured/04_archive_workflow.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/samples/captured/05_createProject.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/samples/captured/06_batchGenerateImages.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/samples/captured/07_batchGenerateImages_seeded.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/samples/captured/08_batchAsyncGenerateVideoStartAndEndImage.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/samples/captured/09_batchAsyncGenerateVideoReferenceImages.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/samples/captured/10_batchCheckAsyncVideoGenerationStatus_successful.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/samples/captured/11_batchCheckAsyncVideoGenerationStatus_failed.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/samples/captured/12_create_scene.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/samples/captured/13_sceneWorkflows_update.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/samples/captured/14_get_scene_workflows.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/samples/captured/15_commit_flowWorkflow.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/canary/register_task.ps1 +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/canary/run_canary.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/ci/check_council_memory.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/ci/check_doc_links.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/ci/check_fork_pr_ci.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/ci/check_materiality.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/ci/check_release_artifacts.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/ci/check_repo_hygiene.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/ci/check_test_count.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/ci/check_website_docs_pii.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/ci/generate_plugin_skills.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/ci/generate_website_docs.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/ci/update_sponsors.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/debug_editor.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/debug_gen_settings.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/debug_settings.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/_recording_client.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/_spike_common.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/acceptance/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/acceptance/bench.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/acceptance/domain.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/acceptance/judge.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/acceptance/settings.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/active_plan.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/analyze_agent_ui_capture.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/capture_frames_mode_trigger_ligature.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/capture_i2v_frame_slots_dom.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/capture_i2v_intercept_submit.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/capture_i2v_model_select_repro.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/capture_i2v_post_bind_state.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/capture_image_add_media_dom.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/capture_locale_invariants.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/capture_lower_priority_model_cost.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/capture_migrated_attach_rpcs.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/capture_migrated_mention_gestures.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/capture_migrated_model_menu.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/capture_migrated_r2v_production_submit.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/capture_migrated_r2v_submit_payload.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/capture_migrated_r2v_surface.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/capture_migrated_upload_flow.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/capture_project_listing.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/capture_r2v_ingredient_lifecycle.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/capture_sidebar_state_dom.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/capture_video_model_capability_matrix.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/cdp_drive_and_probe.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/character_create_spike.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/character_create_spike_v2.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/dump_character_selectors.js +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/har-spike/README.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/har-spike/capture-agent-ui.ps1 +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/har-spike/capture-media-scrape.ps1 +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/har-spike/extract_har_summary.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/har-spike/launch-flow-chrome.ps1 +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/har-spike/probe-agent-mode.ps1 +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/har-spike/probe_agent_mode.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/har-spike/run-cdp-smoke.ps1 +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/har-spike/start-background-capture.ps1 +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/har-spike/start-har-capture.ps1 +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/har-spike/stop-background-capture.ps1 +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/har-spike/stop-har-capture.ps1 +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/incident_bundle_quality.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/live_verify_mcp_tasks.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/live_verify_policy_400_v060.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/live_verify_video_model_select.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/make_project.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/materiality_backtest.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/measure_html_lang_settle.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/measure_locale_probe.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/measure_migrated_host_flip.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/patch_character.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/skillopt/README.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/skillopt/harness.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/skillopt/tasks.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/sonar-local-scan.sh +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/sonar-pre-push-gate.sh +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_about_redirect_cause.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_about_redirect_stability.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_cdp_har_without_node.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_changelog_capture.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_char_editor_dom.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_char_gen_capture.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_character_editor_ready_gate.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_character_prompt_format.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_credits_migrated_surface.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_entity_submit_rpcs.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_extend_model_recon.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_extend_ourstack_verify.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_extend_route_capture.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_extend_submit_capture.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_extend_ui_recon.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_flow_unavailable_signal.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_format_prompt_effect.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_frames_picker_confirm.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_generation_wire_survey.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_host_lane.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_image_model_attribution.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_image_upscale_capture.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_image_upscale_drive.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_image_upscale_recaptcha_action.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_image_upscale_rest_probe.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_incident_live.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_issue170_picker_locale_recon.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_issue174_library_ui_recon.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_issue313_agent_mode_controls.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_issue314_picker_filename_search.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_issue404_count_tabs_recon.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_ligature_carrier_sweep.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_locale_poison.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_body_reference_chip.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_character_body_controls.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_character_editor_anchor.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_character_ogiz0b_schema.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_character_submit_wire.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_character_surface.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_click_blocked.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_composer_arms.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_composer_mode_axis.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_cookie_bar.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_duration_by_model.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_editor_dom_inventory.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_entity_submit.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_frames_attach.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_host_trigger.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_image_capability.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_image_submit.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_picker_option_kind.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_queue_read.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_recaptcha_mint.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_submit_anchor.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_submit_capture.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_upload_wire.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migrated_vs_labs_provenance.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_migration_flag_bootstrap.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_mode_roundtrip.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_mode_switch_agentic_to_classic.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_model_inventory.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_movie_attach_payload.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_movie_entity_recon.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_movie_gen_capture.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_movie_picker_select.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_movie_voice_list.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_nano2_lite_capability.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_networkidle_bootstrap_cost.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_omni_flash_i2v_ui_recon.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_patch_entity.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_patchright.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_playwright_chrome_login.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_project_media_status.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_trpc_origin_referer_401.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_two_domain_protocol_survey.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/spike_video_tab_dom.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/verify_lang_settle_fix.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/verify_language_agnostic.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/verify_locale_navigation_race.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/dev/verify_model_attribution.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/diag/README.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/diag/capture_flow_traffic.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/diag/diag_aisandbox_bearer.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/diag/memory_profile.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/diag/recaptcha_mint.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/diag/spike_387_openai_compat.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/e2e/agentic_image_e2e.ps1 +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/e2e/capture_agent_toggle.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/probe/run_probe.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/probe/spike_auth_matrix.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/record_demo.ps1 +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/smoke_image.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/smoke_video_editor.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/smoke_worker_style.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/spike_waf_camoufox.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/scripts/verify_chrome_auth_viability.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/README.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/changelog/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/check/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/doc-review/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/gflow-cli/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/issue-assessment/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/issue-resolve/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/known-issues/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/live-verify/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/llm-council/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/plan/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/pr-council-review/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/predict/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/release/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/scenario/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/sonar/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/spike/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/status/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/video-production/SKILL.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/video-production/clip_qa.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/video-production/composition.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/video-production/consistency.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/video-production/failure-modes.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/skills/video-production/tasks.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/sonar-project.properties +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/__main__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/_cli_helpers.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/_engine.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/_retry.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/_sapisidhash.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/character.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/client.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/credits.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/dto.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/extend_chain.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/image.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/image_upscale.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/recaptcha.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/routes.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/scene.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/transports/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/transports/_common.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/transports/_fingerprint.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/transports/base.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/transports/batchexecute.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/transports/drivers/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/transports/drivers/agentic.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/transports/drivers/base.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/transports/drivers/classic.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/transports/drivers/factory.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/transports/experimental/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/transports/experimental/bearer.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/transports/experimental/evaluate_fetch.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/transports/experimental/sapisidhash.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/transports/migrated_composer.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/transports/mode_control.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/transports/ui_automation.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/transports/ui_automation_video.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/video.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/api/video_extend.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/auth/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/auth/base.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/auth/cookies.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/auth/factory.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/auth/strategies.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/browser_manager.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/chain.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/chain_manifest.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/cli.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/cli_character.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/cli_credits.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/cli_data.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/cli_doctor.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/cli_image.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/cli_instructions.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/cli_models.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/cli_movie.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/cli_project.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/cli_run.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/cli_scene.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/cli_tools.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/cli_update.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/cli_video.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/composition.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/config.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/data/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/data/chain_repo.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/data/migrations/0001_initial.sql +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/data/migrations/0002_add_cloud_storage.sql +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/data/migrations/0003_add_scene_tables.sql +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/data/migrations/0004_add_scene_output_path.sql +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/data/migrations/0005_add_chain_links.sql +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/data/migrations/0006_add_operations_metadata.sql +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/data/migrations/0007_queue.sql +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/data/migrations/0008_add_operation_expanded_prompt.sql +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/data/migrations/0009_queue_claims.sql +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/data/migrations/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/data/models.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/data/queries.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/data/recorder.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/data/redaction.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/data/repository.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/data/store.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/diagnostics.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/errors.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/exceptions.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/file_integrity.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/flow_selectors/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/flow_selectors/grading.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/flow_selectors/model.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/flow_selectors/registry.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/image_batch.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/json_output.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/mcp/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/mcp/prompts.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/mcp/resources.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/mcp/server.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/mcp/setup.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/mcp/tasks_extension.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/mcp/tools.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/media.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/movie_manifest.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/observability.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/paths.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/profile_lease.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/profile_store.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/redaction.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/services/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/services/catalog_sync.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/services/character_create.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/services/credits.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/services/doctor.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/services/mentions.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/storage.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/tools/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/tools/banned.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/tools/builtin/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/tools/builtin/creative-director.toml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/tools/builtin/reverse-engineer.toml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/tools/builtin/storyboard.toml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/tools/expander.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/tools/invocation.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/tools/loader.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/tools/registry.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/tools/runtime.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/tools/spec.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/ui/app.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/ui/server.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/winsec.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/worker/codec.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/worker/daemon.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/src/gflow_cli/worker/queue.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tasks/lessons.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/test_assets/sample_batch.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/test_assets/sample_batch.tsv +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/test_assets/sample_batch_invalid.tsv +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/fixtures/character_gen_response.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/fixtures/patch_entity_response.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/fixtures/project_initial_data_extend_models.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_aisandbox_auth_error.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_aisandbox_auth_headers.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_bearer_redaction.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_bootstrap_chooser.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_character.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_character_readback_fallback.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_client.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_client_character.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_client_delete_characters.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_client_errors.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_client_extend.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_client_generate_character.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_client_image.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_client_incidents.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_client_launch_kwargs.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_client_locale_cache.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_client_migrated_mint.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_client_patch_entity.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_client_scene.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_client_upscale.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_concurrency.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_credits.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_credits_http.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_dto.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_engine.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_extend_chain.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_image.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_image_dto.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_image_upscale.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_post_json_aisandbox_auth.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_recaptcha.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_retry.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_routes.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_routes_character.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_routes_locale.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_routes_scene.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_sapisidhash_helper.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_scene_models.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_video.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_video_extend.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_video_request.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/test_video_status_poll.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/conftest.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/drivers/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/drivers/test_agentic.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/drivers/test_classic.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/drivers/test_factory.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/drivers/test_ui_mode.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_agent_only_composer.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_agentic_cohort_detection.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_base.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_batchexecute.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_bearer.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_character_model_picker.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_click_attribution.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_common.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_evaluate_fetch.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_factory.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_fingerprint.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_flow_access_unavailable.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_ligature_carrier.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_locale_navigation.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_migrated_composer.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_migrated_dispatch.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_migrated_host_gate.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_migrated_images.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_migrated_r2v.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_migrated_route.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_mode_control.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_model_selection_loud.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_navigation_settled.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_new_project_cta_migrated.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_overlay_precondition.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_policy_400.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_sapisidhash.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_selector_symmetry.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_transport_timeout.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_ui_automation.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_ui_automation_batch.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_ui_automation_image_mode.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_ui_automation_video.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_ui_character_editor.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/api/transports/test_video_model_selection_loud.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/auth/strategies/test_factory.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/auth/test_account_autoselect.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/auth/test_cookies.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/auth/test_windows_acl.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_auth_status.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_auth_error_paths.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_auth_list.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_character.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_character_create.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_credits.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_data.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_data_errors.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_data_errors_retention.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_data_sync.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_doctor.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_image.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_image_seed_removed.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_image_selector_drift.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_image_upscale.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_image_uuid_ref_enrichment.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_instructions.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_models.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_movie.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_run.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_scene.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_tools.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_video.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_video_chain.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_cli_video_extend.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_error_handling.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_failure_funnel.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_helpers.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_incident_output.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_movie_manifest.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_movie_manifest_style_variants.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_predictable_output.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_run_with_handlers_context_leak.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_run_with_handlers_interrupt.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_settings_validation.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/cli/test_t2i_multi_prompt.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/composition/test_character.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/composition/test_compose_prompt.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/composition/test_handoff.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/composition/test_style_variants.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/composition/test_style_variants_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/conftest.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/data/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/data/test_chain_repo.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/data/test_failure_recording.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/data/test_find_incomplete_character.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/data/test_models.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/data/test_null_columns_stay_null.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/data/test_packaging.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/data/test_recorder.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/data/test_recorder_character.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/data/test_redaction.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/data/test_repository.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/data/test_scene_persistence.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/data/test_settings_and_errors.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/data/test_store.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/data/test_store_migrations.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/dev/test_recording_client.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/conftest.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_account_chooser_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_agentic_count_enforcement_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_aisandbox_auth_live.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_asset_tagging_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_auth_verification_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_cancellation_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_chain_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_character_create_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_character_mcp_parity_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_classic_count_setter_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_click_attribution_bdd.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_crash_recovery_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_credits_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_credits_mcp_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_daemon_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_data_layer_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_data_sync_names_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_e2e_env_isolation.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_entity_provenance_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_entity_smuggling_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_i2v_flags_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_image_batch_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_image_i2i_ref_cap_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_image_uuid_ref_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_incident_quality_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_insufficient_credits_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_json_output_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_landing_state_diagnosis_bdd.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_live_agentic_instructions.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_locale_selectors_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_migrated_host_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_migrated_i2v_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_project_naming_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_refresh_on_miss_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_scene_compose_live.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_sidebar_recovery_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_tools_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_transports_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_video_r2v_ref_cap_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_video_r2v_uuid_name_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/e2e/test_video_t2v_e2e.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/asset_tagging.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/auth.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/auth_login.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/character_create.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/character_read.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/click_attribution.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/conftest.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/credits.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/duration_tab_drift.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/entity_provenance.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/image.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/image_batch_references.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/image_upscale.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/incident_diagnostics.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/instructions.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/landing_state_diagnosis.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/latched_locale_recovery.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/locale_picker_include.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/mcp_tasks.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/media_picker_tiers.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/migrated_driver.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/migrated_host_gate.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/migrated_host_images.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/migrated_i2v.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/output_hardening.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_asset_tagging_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_auth_login_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_auth_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_character_create_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_character_read_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_credits_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_e2e_binding_guard.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_image_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_image_upscale_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_incident_diagnostics_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_instructions_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_locale_picker_include_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_mcp_tasks_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_media_picker_tiers_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_migrated_driver_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_migrated_host_gate_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_migrated_host_images_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_migrated_i2v_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_output_hardening_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_step_collision_guard.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_video_agent_ui_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/test_video_chain_steps.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/video_agent_ui.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/features/video_chain.feature +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/fixtures/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/fixtures/changelog_modal_page.html +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/fixtures/doctor_env.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/fixtures/flow_model_inventory.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/fixtures/flow_project_listing_media.json +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/fixtures/listing_payload.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/fixtures/seeded_catalog.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/flow_selectors/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/flow_selectors/test_grading.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/flow_selectors/test_model.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/flow_selectors/test_model_governance.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/flow_selectors/test_registry.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/flow_selectors/test_report.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/image_batch/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/image_batch/test_image_manifest.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/image_batch/test_jitter_config.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/image_batch/test_observability_events.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/integration/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/integration/conftest.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/integration/constants.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/integration/test_expander_gateway.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/integration/test_storage_gcs.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/integration/test_storage_s3.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/conftest.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_auth_status_tool.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_character_tools.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_cli_parity.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_credits_tool.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_error_funnel.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_http_transport.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_known_issues_resource.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_migrated_i2v_parity.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_no_spend.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_payload_key_round_trip.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_rate_limit_envelope.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_reference_entity_round_trip.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_resources.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_serve_auth.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_server.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_setup.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_stdio_transport.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_tasks_extension.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_tools_helpers.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_tools_instructions.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/mcp/test_tools_wired.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_analyze_agent_ui_capture.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_canary_classify.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_canary_reexec.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_capture_locale_invariants.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_capture_video_model_capability_matrix.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_check_council_memory.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_check_fork_pr_ci.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_check_materiality.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_check_release_artifacts.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_check_repo_hygiene.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_check_test_count.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_check_website_docs_pii.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_codex_plugin.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_extract_har_summary.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_frame_acceptance.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_generate_website_docs.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_incident_bundle_quality.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_materiality_backtest.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_skillopt_scoring.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_spike_page_pool.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_spike_profile_lease.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_update_sponsors.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/scripts/test_workflow_hardening.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/services/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/services/test_catalog_sync.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/services/test_character_create_redaction.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/services/test_character_create_saga.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/services/test_character_gen_no_direct_post.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/services/test_credits.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/services/test_doctor.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/services/test_media_attribution.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/services/test_mentions_observability.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/services/test_mentions_parse.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/services/test_mentions_resolve.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/services/test_resolve_and_apply.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/smoke/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/smoke/test_profile_account_smoke.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/smoke/test_real_flow.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_auth.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_browser_manager.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_chain.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_chain_manifest.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_cli_data.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_cli_project.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_cli_update.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_config.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_conftest_isolation.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_data_queries.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_diagnostics_bundle.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_diagnostics_events.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_diagnostics_journal.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_diagnostics_recorder.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_diagnostics_retention.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_diagnostics_sanitize.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_dockerfile_version_pin.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_documentation_gate.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_duration_tab_drift.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_entity_provenance.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_errors.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_errors_classification.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_glama_build_spec.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_image_batch_references.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_incident_generation_requests.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_json_output.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_marker_registry.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_media.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_overlay_banner_dismissal.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_paths.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_playwright_pin.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_plugin_manifests.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_profile_lease.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_profile_lease_subprocess.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_profile_store.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_profile_store_locale.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_project_list_urls.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_release_version_sites.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_rich_markup_safety.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_self_documenting_errors.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_server_json.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/test_smoke.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/tools/__init__.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/tools/test_banned.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/tools/test_expander.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/tools/test_invocation.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/tools/test_loader.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/tools/test_registry.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/tools/test_runtime.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/tools/test_spec.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/ui/test_app.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/worker/test_codec.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/worker/test_daemon.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/worker/test_mcp_daemon_race.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/worker/test_queue.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/worker/test_queue_multiprocess.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/tests/worker/test_queue_reconciliation.py +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/ACCOUNT_SAFETY.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/ARCHITECTURE.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/CHARACTER.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/CONFIGURATION.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/DATA_LAYER.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/DEBUGGING.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/DEVELOPMENT.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/E2E_TESTING.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/EXTERNAL_STORAGE.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/INSTRUCTIONS.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/KNOWN_ISSUES.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/MCP.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/MEDIA_LIBRARY.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/MOVIE.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/PROMPT_EXPANSION.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/SECURITY.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/SPONSORS.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/TOOLS.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/USER_GUIDE.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/agents.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/index.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/installation.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/onboarding-mockup.html +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/onboarding.md +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/docs/stylesheets/extra.css +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/mkdocs.yml +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/requirements.in +0 -0
- {gflow_cli-0.77.0 → gflow_cli-0.77.1}/website/requirements.txt +0 -0
|
@@ -7,6 +7,79 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.77.1] — 2026-09-17
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **A clean Windows install could not run a single command.** `configure_logging`
|
|
15
|
+
renders TEXT logs with `structlog.dev.ConsoleRenderer(colors=True)`, and structlog's
|
|
16
|
+
Windows `_init_terminal` raises `SystemError` outright when `colorama` is missing —
|
|
17
|
+
but `colorama` was never declared, and nothing in the runtime closure supplies it
|
|
18
|
+
(structlog keeps it an optional extra; rich ships its own Windows console handling).
|
|
19
|
+
Because the call sits in the Click *group* callback it runs before any subcommand
|
|
20
|
+
body, so every interactive command on a fresh Windows install aborted with a
|
|
21
|
+
traceback that named structlog and never gflow — the failure read as a broken
|
|
22
|
+
install rather than an incomplete one, and it made the README's Windows quick-start
|
|
23
|
+
fail as written. Piping stderr happened to escape it, since `AUTO` then resolves to
|
|
24
|
+
the JSON renderer, which is why non-interactive use and CI never saw it.
|
|
25
|
+
|
|
26
|
+
The only `colorama` edge in `uv.lock` came from **pytest**, a dev dependency — so
|
|
27
|
+
every developer machine had it transitively and no gate could see the gap.
|
|
28
|
+
`colorama` is now a declared `sys_platform == "win32"` runtime dependency, and
|
|
29
|
+
`tests/test_observability.py` fails if it is dropped again. Reproduced and verified
|
|
30
|
+
on a clean Python 3.13 venv: the same `gflow doctor` invocation that raised
|
|
31
|
+
`SystemError` before now runs to completion, on both the CLI and the MCP stdio
|
|
32
|
+
server. ([#846](https://github.com/ffroliva/gflow-cli/issues/846))
|
|
33
|
+
- **The address scan in the migrated-host session probe was quadratic.** It reads a
|
|
34
|
+
1.28 MB `myaccount.google.com` response, and `[\w.+-]+@…` retries from every start
|
|
35
|
+
position and rescans its run before failing to find an `@` — so an unbroken run of
|
|
36
|
+
characters that class accepts cost O(n²). Measured: 5 000 chars 0.12 s, 10 000 0.48 s,
|
|
37
|
+
20 000 2.00 s, **40 000 12.07 s**. The class covers the entire URL-safe base64 alphabet,
|
|
38
|
+
which a Google page is full of, and the scan runs synchronously inside an `async def`,
|
|
39
|
+
so a stall blocks the event loop and cancellation cannot land until it returns.
|
|
40
|
+
|
|
41
|
+
Anchoring on the literal `@` (which lets CPython's `re` use its literal-prefix fast
|
|
42
|
+
search) and reading the local part backwards over a bounded 64-character window — the
|
|
43
|
+
RFC 5321 cap — makes the work proportional to the number of `@` in the document. Same
|
|
44
|
+
output for every address shape, including the Workspace and custom domains that #791
|
|
45
|
+
turned on: 40 000 chars now scan in under a millisecond, and 440 000 base64-shaped ones
|
|
46
|
+
in 0.2 ms. ([#852](https://github.com/ffroliva/gflow-cli/issues/852))
|
|
47
|
+
- **The sign-in window never closed for an account Google serves from `flow.google.com`.**
|
|
48
|
+
`gflow auth login --browser chrome` watches the `labs.google` session endpoint to know
|
|
49
|
+
when to close Chrome — and for a migrated account labs hands off without ever minting a
|
|
50
|
+
session, so the one oracle the detector had could not answer. The window stayed open for
|
|
51
|
+
the full 600 s while the banner promised gflow would close it, and the timeout then
|
|
52
|
+
propagated *past* verification, so a sign-in that had completed perfectly was discarded
|
|
53
|
+
unread and the user got exit 12 for a login that worked. It is the first thing a new user
|
|
54
|
+
on a migrated account meets. v0.77.0 fixed the *verification* for these accounts, which
|
|
55
|
+
made the outcome correct only for users who closed the window themselves.
|
|
56
|
+
|
|
57
|
+
Two changes, and neither of them moves the authentication decision into a cookie. gflow
|
|
58
|
+
now also stops waiting when the jar carries both halves of a migrated session (the
|
|
59
|
+
`.google.com` SSO cookie **and** the `flow.google.com` app-session cookie) — that ends a
|
|
60
|
+
wait which had no other way to end; `verify_flow_profile` still asks a server about what
|
|
61
|
+
landed on disk, and is still the only thing that can call a login successful. And a
|
|
62
|
+
timeout no longer discards the profile unread: gflow reads it before failing, reports a
|
|
63
|
+
sign-in the detector missed as the success it is, and otherwise keeps the timeout's own
|
|
64
|
+
wording. A caller with no on-disk oracle to fall back on (`--browser internal`) keeps
|
|
65
|
+
waiting exactly as before. ([#849](https://github.com/ffroliva/gflow-cli/issues/849))
|
|
66
|
+
- **`gflow update` could report a version for an install that no longer starts.** A package
|
|
67
|
+
manager replaces files in place, so an interrupted upgrade leaves a venv whose *metadata*
|
|
68
|
+
reads perfectly and whose *imports* are dead. `gflow update` only ever re-read the version,
|
|
69
|
+
so it called that state *"still 0.69.0"* and sent the user to a plain `uv tool upgrade` —
|
|
70
|
+
which cannot repair it, because it reads the same intact metadata, finds it current and
|
|
71
|
+
changes nothing. Measured on Windows: an aborted native-dependency swap left every command
|
|
72
|
+
dying on `AttributeError: module 'greenlet' has no attribute 'greenlet'`, and only
|
|
73
|
+
`uv tool install "gflow-cli==<version>" --force --reinstall` completed.
|
|
74
|
+
|
|
75
|
+
After the manager runs, `gflow update` now imports gflow-cli in a fresh isolated
|
|
76
|
+
interpreter *before* it looks at any version, and a failed import is reported as an
|
|
77
|
+
unusable install (exit 11) quoting that interpreter's own last line, with the forced
|
|
78
|
+
reinstall as the remediation. The probe is isolated (`-I`) so a `gflow_cli` directory in
|
|
79
|
+
the caller's working directory cannot answer on the venv's behalf, and a probe that could
|
|
80
|
+
not run at all is never reported as breakage.
|
|
81
|
+
([#848](https://github.com/ffroliva/gflow-cli/issues/848))
|
|
82
|
+
|
|
10
83
|
## [0.77.0] — 2026-09-16
|
|
11
84
|
|
|
12
85
|
### Fixed
|
|
@@ -1512,7 +1585,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1512
1585
|
|
|
1513
1586
|
### Fixed
|
|
1514
1587
|
|
|
1515
|
-
|
|
1516
1588
|
- **v0.66.1's migrated-origin fast-fail never fired on a real run
|
|
1517
1589
|
([#639](https://github.com/ffroliva/gflow-cli/issues/639)).** The guard read `page.url` once,
|
|
1518
1590
|
at `get_ui_driver` entry — but `routes.project_editor_url` only ever builds a `labs.google`
|
|
@@ -1827,7 +1899,6 @@ completed exit 0, proving no regression. See
|
|
|
1827
1899
|
credential, but account-correlatable, and it would otherwise reach any logged
|
|
1828
1900
|
request body or diagnostics bundle verbatim.
|
|
1829
1901
|
|
|
1830
|
-
|
|
1831
1902
|
- **The offline test suite could `git checkout develop` in the developer's own
|
|
1832
1903
|
clone ([#605](https://github.com/ffroliva/gflow-cli/issues/605)).** git's
|
|
1833
1904
|
repository discovery walks *up* from `cwd`, and `--basetemp=tmp/pytest` puts
|
|
@@ -2467,7 +2538,6 @@ completed exit 0, proving no regression. See
|
|
|
2467
2538
|
- **Remaining in-workflow package installs pinned (Scorecard Pinned-Dependencies).** The Pages build now installs MkDocs Material with `pip install --require-hashes` from a compiled `website/requirements.txt`; the PR-triage sandbox image (`Dockerfile.triage`) pins its Node base by digest and installs the Claude Code CLI via `npm ci` from a committed lockfile instead of a floating `npm install -g`; the CI dependency audit pins its `pip-audit` tool version (the non-gating weekly `deps-watch` job deliberately keeps a floating pip-audit — fresh advisory tooling is its purpose). New dependabot entries (uv / npm / docker) keep all three sets of pins fresh. The remaining deliberate won't-fix Scorecard alerts (SAST, Fuzzing, CII Best Practices) are dismissed on the repo with recorded reasons.
|
|
2468
2539
|
- **OpenSSF Scorecard self-run.** A new SHA-pinned `scorecard.yml` workflow (weekly + on push to `develop`) runs the OpenSSF Scorecard supply-chain checks with `publish_results: true`, feeding the public API/badge and the repo Security tab — enabled deliberately after the permissions/pinning hardening so the first published score reflects the hardened state. The score surfaces as a badge in the README and on the website index page, with a docs/SECURITY.md section explaining what it measures; `release.yml`/`pages.yml` write scopes moved from workflow level to the jobs that need them.
|
|
2469
2540
|
|
|
2470
|
-
|
|
2471
2541
|
## [0.56.0] — 2026-08-13
|
|
2472
2542
|
|
|
2473
2543
|
### Added
|
|
@@ -2561,10 +2631,6 @@ completed exit 0, proving no regression. See
|
|
|
2561
2631
|
|
|
2562
2632
|
- **Fix video duration selector drift (#451).** Expanded duration control selector cascade to match modern Flow editor UI elements (`button`, `role='button'`, `role='option'`, `role='menuitem'`, `role='tab'`) while preserving fail-closed behavior on missing duration controls.
|
|
2563
2633
|
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
2634
|
## [0.51.0] — 2026-08-05
|
|
2569
2635
|
|
|
2570
2636
|
### Security
|
|
@@ -3597,7 +3663,6 @@ completed exit 0, proving no regression. See
|
|
|
3597
3663
|
mid-run edit to the home `.env` can no longer produce a task whose client config
|
|
3598
3664
|
disagrees with the parameters the task derived from `get_settings()`.
|
|
3599
3665
|
|
|
3600
|
-
|
|
3601
3666
|
## [0.24.0] — 2026-07-01
|
|
3602
3667
|
|
|
3603
3668
|
### Added
|
|
@@ -4856,8 +4921,6 @@ completed exit 0, proving no regression. See
|
|
|
4856
4921
|
- `gflow auth login` now prints the launch strategy announcement before opening
|
|
4857
4922
|
any browser window.
|
|
4858
4923
|
|
|
4859
|
-
|
|
4860
|
-
|
|
4861
4924
|
> **Shell-friendly multi-prompt `t2i` + performance hardening.** This release
|
|
4862
4925
|
> promotes `gflow image t2i` to a variadic command that can consume multiple
|
|
4863
4926
|
> prompts from positional arguments, a line-delimited text file, or standard
|
|
@@ -5286,7 +5349,8 @@ shell-script template that branches on these codes.
|
|
|
5286
5349
|
|
|
5287
5350
|
First skeleton. Not functional end-to-end yet.
|
|
5288
5351
|
|
|
5289
|
-
[Unreleased]: https://github.com/ffroliva/gflow-cli/compare/v0.77.
|
|
5352
|
+
[Unreleased]: https://github.com/ffroliva/gflow-cli/compare/v0.77.1...HEAD
|
|
5353
|
+
[0.77.1]: https://github.com/ffroliva/gflow-cli/compare/v0.77.0...v0.77.1
|
|
5290
5354
|
[0.77.0]: https://github.com/ffroliva/gflow-cli/compare/v0.76.0...v0.77.0
|
|
5291
5355
|
[0.76.0]: https://github.com/ffroliva/gflow-cli/compare/v0.75.0...v0.76.0
|
|
5292
5356
|
[0.75.0]: https://github.com/ffroliva/gflow-cli/compare/v0.74.0...v0.75.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: gflow-cli
|
|
3
|
-
Version: 0.77.
|
|
3
|
+
Version: 0.77.1
|
|
4
4
|
Summary: CLI and MCP server for Google Flow — drive Veo text-to-video, image-to-video and Imagen image generation from the terminal.
|
|
5
5
|
Project-URL: Homepage, https://github.com/ffroliva/gflow-cli
|
|
6
6
|
Project-URL: Documentation, https://ffroliva.github.io/gflow-cli/
|
|
@@ -53,6 +53,7 @@ Classifier: Typing :: Typed
|
|
|
53
53
|
Requires-Python: >=3.11
|
|
54
54
|
Requires-Dist: browser-cookie3>=0.20.1
|
|
55
55
|
Requires-Dist: click>=8.1.0
|
|
56
|
+
Requires-Dist: colorama>=0.4.6; sys_platform == 'win32'
|
|
56
57
|
Requires-Dist: fastapi>=0.115.0
|
|
57
58
|
Requires-Dist: httpx>=0.27.0
|
|
58
59
|
Requires-Dist: mcp<3,>=2.0.0
|
|
@@ -45,7 +45,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
45
45
|
# Deliberately NOT pinned: google-chrome-stable. Chrome's apt repo keeps only the current
|
|
46
46
|
# build, so a pinned version stops resolving within weeks. The trade-off is that this
|
|
47
47
|
# layer caches indefinitely and a rebuild is what picks up a newer Chrome.
|
|
48
|
-
ARG GFLOW_VERSION=0.77.
|
|
48
|
+
ARG GFLOW_VERSION=0.77.1
|
|
49
49
|
RUN pip install --no-cache-dir "gflow-cli==${GFLOW_VERSION}"
|
|
50
50
|
|
|
51
51
|
VOLUME ["/data"]
|
|
@@ -216,6 +216,24 @@ watches for the completed Flow sign-in and closes the window itself, then prints
|
|
|
216
216
|
verified account. If you close the window yourself it still works: gflow verifies the
|
|
217
217
|
profile exactly the same way and does not treat a manual close as an error.
|
|
218
218
|
|
|
219
|
+
**What "watches for the sign-in" means, and why it has two signals.** The primary one is the
|
|
220
|
+
Flow session endpoint on `labs.google` — the cookie jar is never the authentication
|
|
221
|
+
decision, because a cookie can be present while the endpoint still rejects. But for an
|
|
222
|
+
account Google serves from `flow.google.com`, labs hands off without ever minting a session,
|
|
223
|
+
so that endpoint is an oracle that cannot answer: through v0.77.0 those logins held the
|
|
224
|
+
window open for the full timeout while this page promised the opposite
|
|
225
|
+
([#849](https://github.com/ffroliva/gflow-cli/issues/849)). gflow now also stops waiting when
|
|
226
|
+
the jar carries both halves of a migrated session — the `.google.com` SSO cookie *and* the
|
|
227
|
+
`flow.google.com` app-session cookie. That second signal ends a wait; it does not decide
|
|
228
|
+
anything. Verification still runs afterwards, against a server, on what actually landed on
|
|
229
|
+
disk, and it is still the only thing that can call a login successful.
|
|
230
|
+
|
|
231
|
+
**A timeout is not a verdict either.** If neither signal fires, gflow closes the window and
|
|
232
|
+
*still* reads the profile before failing — "gflow verifies what's on disk either way" is the
|
|
233
|
+
promise the sign-in banner makes, and it now holds on every path. A sign-in that completed
|
|
234
|
+
while the detector was blind is reported as the success it is; one that really did not
|
|
235
|
+
happen keeps the timeout's own wording, which is the message that explains the wait.
|
|
236
|
+
|
|
219
237
|
**Automatic fallback, with nothing to choose.** If Playwright can't resolve a Chrome channel
|
|
220
238
|
on this machine (a Chromium-only Linux box, for instance), or Google rejects the browser
|
|
221
239
|
anyway, `gflow auth login` falls back to the earlier **Passive Capture** flow: Chrome
|
|
@@ -24,7 +24,7 @@ channel no longer accepts anything).
|
|
|
24
24
|
| Channel | Audience | Submit via | Status | Last verified |
|
|
25
25
|
|---|---|---|---|---|
|
|
26
26
|
| [PyPI](https://pypi.org/project/gflow-cli/) | Python users, every downstream scraper | `uv publish` (release) | listed | 2026-09-14 |
|
|
27
|
-
| [Official MCP Registry](https://registry.modelcontextprotocol.io) | Agent devs; feeds other registries | `mcp-publisher`, called by `release.yml` (#829; wiring repaired in #841) | **listed** · `0.
|
|
27
|
+
| [Official MCP Registry](https://registry.modelcontextprotocol.io) | Agent devs; feeds other registries | `mcp-publisher`, called by `release.yml` (#829; wiring repaired in #841) | **listed** · `0.77.0` active · automation **exercised and working** — v0.77.0 published itself unaided | 2026-09-17 |
|
|
28
28
|
| [Glama](https://glama.ai/mcp/servers/ffroliva/gflow-cli) | Broad MCP audience (87k servers) | Web form | **listed** · claimed · rated **A** · release **0.75.0** published · Auto-Release on | 2026-09-15 |
|
|
29
29
|
| [MCP Market](https://mcpmarket.com/server/gflow-cli) | Consumer discovery | — (crawled us) | **listed** | 2026-09-14 |
|
|
30
30
|
| [skills.sh](https://skills.sh/ffroliva/gflow-cli) | Cross-agent skill users | — (telemetry) | **listed** | 2026-09-14 |
|
|
@@ -55,12 +55,16 @@ channel no longer accepts anything).
|
|
|
55
55
|
Ranked by reach per hour of work. The eight submissions are out; what is left is gated on one
|
|
56
56
|
thing, and it is not a distribution task.
|
|
57
57
|
|
|
58
|
-
>
|
|
59
|
-
>
|
|
58
|
+
> ✅ **Repaired in #841, and v0.77.0 proved it.** The registry now serves
|
|
59
|
+
> `io.github.ffroliva/gflow-cli` at **0.77.0, status `active`, published
|
|
60
|
+
> 2026-09-16T18:53:54Z** — from the release run itself, with no hand-publish.
|
|
61
|
+
>
|
|
62
|
+
> For every release through v0.76.0 the publish never fired. It hung off
|
|
60
63
|
> `release: published`, but `release.yml` creates the Release with the default
|
|
61
64
|
> `GITHUB_TOKEN`, and GitHub starts no workflow runs from `GITHUB_TOKEN`-created events.
|
|
62
65
|
> Measured on v0.76.0 — a real Release published, and the workflow had **zero runs, ever**
|
|
63
|
-
> ([#841](https://github.com/ffroliva/gflow-cli/issues/841)). v0.76.0 was published by hand
|
|
66
|
+
> ([#841](https://github.com/ffroliva/gflow-cli/issues/841)). v0.76.0 was published by hand;
|
|
67
|
+
> v0.77.0 was not. Verified against the live registry API on 2026-09-17.
|
|
64
68
|
>
|
|
65
69
|
> **It is now called, not triggered.** `release.yml` invokes `mcp-registry.yml` directly
|
|
66
70
|
> (`uses:` + `needs: build-and-publish`). No event, so nothing for the token rule to block —
|
|
@@ -169,7 +169,7 @@ Slash commands for Claude Code, stored in `.claude/commands/gflow/`. All prefixe
|
|
|
169
169
|
**"A command failed — where is the incident bundle and what's in it?"** → [DEBUGGING § Automatic incident bundles](DEBUGGING.md#automatic-incident-bundles) (layout, triggers, review-before-sharing); privacy boundaries: [SECURITY § Automatic incident bundles](SECURITY.md#automatic-incident-bundles-gflow_cli_incident_capture-default-on); disable via [CONFIGURATION § GFLOW_CLI_INCIDENT_CAPTURE](CONFIGURATION.md#gflow_cli_incident_capture)
|
|
170
170
|
**"Flow's UI broke a selector — how do I diagnose it?"** → [DEBUGGING § Inspecting Flow's live UI](DEBUGGING.md#inspecting-flows-live-ui)
|
|
171
171
|
**"What does each `ui_automation.*` log event mean?"** → [DEBUGGING § Listener & HTTP-layer debugging](DEBUGGING.md#listener--http-layer-debugging)
|
|
172
|
-
**What was actually live-verified for the latest release?** → latest: [LIVE_VERIFICATION_v0.77.0](LIVE_VERIFICATION_v0.77.0.md) (**the migrated-host login lockout (#791), verified as a controlled A/B on a real Google **Workspace** account at ZERO cost — same profile, same cookies untouched between arms, so the only variable is the code: exit 8 with the Chrome marker rolled back and `channel_for_profile` collapsed to `None`, then exit 0 with the marker intact and the account recorded. The refusal path is measured too — of 10 local profiles, 5 reproduce #791 and exactly one carries both required cookies: 4 refusals, 1 upgrade, 0 false positives. v0.76.0 recorded this fix as **withdrawn**; the approach that shipped is a different one, server-attested on the landing URL rather than on client-rendered DOM. An earlier revision gated auth on an `@gmail.com`-only pattern that silently declined every custom domain — the account used here is one, which is why this is its verification. **#796 is reproduced and prevented**, not merely reported: it was filed as *'not yet reproduced end-to-end'*. **Two rows are named blockers, not omissions:** the MCP Registry publish (#841) cannot be rehearsed before a real tag push, so this release is its first exercise; and the migrated-host generation e2e cannot run here at all — every account bounces to `/about`, A/B-controlled against `develop` so it is not mistaken for a regression.) · previous: [LIVE_VERIFICATION_v0.76.0](LIVE_VERIFICATION_v0.76.0.md) (**a diagnostics-and-distribution release, verified 2026-09-16 at ZERO cost — no Veo credits, no image generation, no Flow submit.** The decisive arm is #833's **negative** control, run first-hand on two real accounts rather than relayed: `flow-pinhole-unavailable-screen` is **0** on both `ffroliva` and `denon82` while `aisandbox-root` is **1**, so the guard does not fire on accounts that HAVE Flow access and the zero is a real absence rather than a page that never booted — a guard with only a positive arm is indistinguishable from one that is permanently on. Both accounts settled at **`/about`**, which is the state that broke this release's *withdrawn* #791 oracle, and the exit-39 signal reads a component that only exists on the unavailable screen, so `/about` cannot mimic it. mcpservers.org is verified with a **404 negative control** because the listing 403s to `curl` and a naive check would have called the link dead. **#791 is NOT in this release and was withdrawn rather than deferred**: a fix passed eight council dimensions and was then refuted by a five-day-old spike nobody had routed to it — Flow's `/about` hop is decided client-side with zero requests to Flow, and *"the backend grants access while the frontend declines to open it"* (#756), so the probe would have reported authenticated users as logged out, reintroducing #791 as its own cure; the e2e caught it by going red on a live account whose state moved mid-session. **Two rows are blocked by the platform rather than by effort:** the Docker sign-in needs a WSL-integrated Docker host, and the MCP Registry publish cannot be observed until this very tag reaches `main`, since both triggers resolve the workflow from the default branch.) · previous: [LIVE_VERIFICATION_v0.75.0](LIVE_VERIFICATION_v0.75.0.md) (**a distribution-and-hardening release, verified 2026-09-15 on `ffroliva` at ZERO cost — no Veo credits, no image generation, no Flow submit.** The `gflow serve` token fix is an **A/B against the released 0.74.0 wheel from PyPI**, not a diff read: the token was *set* in both arms, so the probe measures whether it is checked — before, `no token 200/200` with 13 tools listed and `wrong 200/200`; after, `401/401` with zero tools and `WWW-Authenticate: Bearer realm="gflow"`, while the correct token still gets 200. Loopback DNS-rebinding was re-confirmed at **421**/**403** because the fix forwards the bind host and getting that wrong would silently disable protection that works today — and an earlier draft of the accompanying advisory claimed that protection was *disabled*, a false claim caught by measuring rather than re-reading. #813's guard is verified against a **real wheel in a real venv installed without extras**, the arm first proving it is in that state (`av present: False PIL present: False`); the decisive row is that a **nonexistent** manifest still exits **20** on the dependency error rather than file-not-found, which is what shows the guard precedes the manifest read and not merely the generation. The Rich escape fix is verified on the **console render separated from the structlog JSON** — matching the JSON line would have been a false pass, since `--json` was never affected — with a **neutered control** through the same Rich version reproducing the bug exactly: `UNESCAPED -> pip install 'gflow-cli'` against `ESCAPED -> pip install 'gflow-cli[chain]'`. Also: `gflow-cli.exe` exists in the built wheel so `uvx gflow-cli` resolves at all, and the wheel carries 138 entries with **zero** ZIP duplicates. **Three items recorded as NOT verified rather than omitted:** a successful multi-link `chain` run spends Veo credits and stays outstanding e2e debt on #813 — what changed is the refusal path, which *is* verified; `gflow credits` against a working balance is impossible here because the account still returns 401, pre-existing **#795** and unrelated to this release; and the SSE arm of the token fix was exercised on loopback only, a deliberate scope limit, since binding a LAN address to test it would put an authenticated daemon on a live network for the run. **Two rows are blocked by the platform rather than by effort:** the PyPI metadata and the MCP Registry listing are both unobservable until this release is uploaded — PyPI renders the last artefact's metadata, and `mcp-publisher` reads its ownership token out of the *published* README.) · previous: [LIVE_VERIFICATION_v0.74.0](LIVE_VERIFICATION_v0.74.0.md) (**the migrated driver's run-unique uploads and its Frames-picker confirm, plus the `credits` remediation, verified 2026-09-14 on `ffroliva` at ZERO cost — every arm is a read or an upload-and-stop.** The confirm branch is the interesting one: this cohort's picker closes on its own, so the branch would never execute against live Flow by accident, and the e2e drives `FRAME_COMMIT_GRACE_S` to **0.001** so the grace expires before Flow can auto-close and **every** run enters it — the difference between a named blocker and an unrun claim. A *genuinely stuck* picker still cannot be produced here and stays `Refs #792`, verifier the reporter. #795 was verified on the cohort it is for, because this account is now in it — `auth status` green, `credits user` exit **3** with `detail` `credits endpoint returned 401` and `route: credits`, where v0.73.2 printed the class-default *"SAPISID cookie missing… re-run `gflow auth login`"*, advice that is wrong in every word there and that can roll a profile's strategy marker back and start the #791 spiral; the `credits list --json` envelope carries the per-profile `remediation_hint` that used to be dropped. **Two items recorded as NOT verified rather than omitted:** #799's exit-25 raise site needs an account in the agent-only cohort — the maintainer's accounts are served `flow.google.com` but still have the recoverable agent chip, so the state is structurally unreachable on them, a named blocker and #799 stays open; and neither `r2v` nor `i2i` had its own attach path driven to completion — `r2v` was not attempted (its e2e spends Veo credits), while `i2i` **was** attempted twice and failed both times at exit 23, before reaching the code under test, because the `--project` UUID came from `gflow project list` (the aisandbox catalog) and those ids 404 on `flow.google.com` — a harness error, recorded rather than dropped, which left a side finding: gflow reports Flow's own `/404?reason=project` as `UiSelectorDriftError`, blaming our selectors for Flow's 404. **#791 is not fixed and was not attempted blind** — all nine local profiles were probed at $0 and none is in the #791 state (SAPISID + a live `flow.google.com` session + no labs NextAuth token); four print its exact symptom string and none of them is it, because that string is also what a stale profile says.) · previous: [LIVE_VERIFICATION_v0.73.2](LIVE_VERIFICATION_v0.73.2.md) (**the blank incident bundle, reproduced and then cured by a committed e2e test, 2026-09-12 on `ffroliva` at ZERO cost — every arm fails before submit.** The decisive layer is an **A/B run through the same instrument**, not an inspection: on `develop` the new test FAILS in 46.3 s and prints the bundle it got — `tag_counts.div = 0`, `title.length = 0`, `host_category = "other"`, a 4,254-byte screenshot — which is field-for-field the signature [#792](https://github.com/ffroliva/gflow-cli/issues/792) reported from a different account, a different OS and a different command; on the fix it PASSES in 37.8 s with `div` **25**, `title.length` **81**, `host_category` **`flow_app`**, `route` `/404` and a 38.4 KB screenshot. Both arms exit **23** on the same `.settings-trigger-button` drift at `flow.google.com/404?reason=project`, so the arms differ only in what was *captured*, never in what failed. **The reporter's own bundle contained the refutation of their diagnosis**: viewport 1280x720 is `client.py`'s client-owned page, not the 1920x1080 a stray transport tab would have — it was always the driven page, photographed one navigation too late, and the portrait correlation had no mechanism behind it. The existing quality benchmark could not have caught this: it captures deliberately on a **healthy** page, so it graded only bundles that were never at risk. **Recorded as NOT verified rather than omitted:** #796's `PROFILE_MARKER_MISSING` is offline-only because its live trigger is a cookie-store **decryption** failure, which does not occur on Windows/DPAPI — it is the macOS Keychain path of [#768](https://github.com/ffroliva/gflow-cli/issues/768), a **named external blocker**, and the issue stays open; a synthetic attempt to force it failed informatively, since a corrupt store raises `sqlite3.DatabaseError`, bypasses the marker gate and still prints "check network connectivity" — the same misdirection from a different trigger, untouched here. #795's remediation string is unit-asserted only, and the *other* half of #795 — `credits` being labs-only on migrated accounts — is **not fixed**.) · previous: [LIVE_VERIFICATION_v0.73.1](LIVE_VERIFICATION_v0.73.1.md) (**Google's `glue` consent bar covering the migrated composer, measured and then cured, 2026-09-11 on `ci-probe` for one image generation and no Veo credits.** The premise was nearly rejected: both prior sightings of that selector in this repo are labs.google, and the 2026-09-10 spike had read 159 DOM samples on this exact host and project and watched the click land 3/3 — it simply never looked for a cookie bar. Seventeen hours later the bar was up: `position: fixed`, `z-index: 1000`, spanning y 547-655 of a 655 px viewport, with `elementFromPoint` over the settings trigger AND over the image submit both returning `span#glue-cookie-notification-bar-1-label` in **0 of 5** rendered samples hit-testable. **The control arm is what makes it a cure rather than a coincidence**: the same probe re-run through the driver's own `_dismiss_cookie_bar` restored both controls to **4/4**, one attempt, no error. A full `gflow image t2i` then ran end to end on the merged code — `status: ok`, a 807,761-byte `ffd8ffe0` JPEG that Pillow reads as 1376x768 RGB, matching the requested 16:9 and the reply's own dimensions, with `migrated.editor_ready` at 2.0 s and **no** `cookie_bar_not_dismissed`. A side finding the control arm produced by accident: the bar's buttons are `__accept` then `__reject` in DOM order, so anything taking "the first button" accepts cookies for the operator — the shipped fix anchors on reject. **Three items recorded as NOT verified rather than omitted:** the cure against a live bar outside the browser, because this release's own control arm consumed the consent on the only profile that had it; **prevalence**, because the second profile never reached an editor (both arms redirected to `/about`) so it is one account blocked and one already-consented, and KNOWN_ISSUES says so rather than generalising from n=1; and the video path live, which shares the identical function on the identical control but spends Veo credits.) · previous: [LIVE_VERIFICATION_v0.73.0](LIVE_VERIFICATION_v0.73.0.md) (**four error paths that stopped lying about what went wrong, verified 2026-09-10 on `ci-probe` and `denon82` at $0 — no run below reaches a Veo submit.** The decisive arm is an **A/B**, not an inspection: the pre-fix run printed an `accounts.google.com` challenge URL together with the OAuth `state` and `client_id`, and the identical command after the fix gave the same exit 38 and the same landing named with **five secret matches down to zero** — reading the post-fix output alone would only have shown that *these* secrets were absent. A second arm **falsified a claim already written into PR #775's body**: it said the change fixed the RED canary, and the live run showed `denon82` had moved to `accounts.google.com` mid-run, a landing the classifier excluded **by design**, with a unit test encoding the wrong reason — the offline suite was green throughout and could not have caught it. #776's happy path is verified by a real `gflow image t2i` (exit 0, 367 135-byte JPEG, `image_settings_applied` and `prompt_typed` both present, so **three of the four converted click sites** clicked successfully through the new helper); its **failure** path is real Chromium driving a page we wrote, which proves the mechanism and explicitly **not** that Flow still produces that state. **Three items recorded as NOT verified rather than omitted:** the `/about` redirect stopped reproducing (**0/5**, reported as *unmeasured* rather than argued into a retry flag), the `/fx/api/auth/*` landing moved before the run reached it, and #764's *success* path — an external contribution whose error boundary this release verifies but whose auto-selection needs an account currently behind a Google password challenge. The fourth converted click site is the **video** submit, unrun because it spends Veo credits, named rather than implied.) · previous: [LIVE_VERIFICATION_v0.72.0](LIVE_VERIFICATION_v0.72.0.md) (**auto-closing `gflow auth login`, verified 2026-09-09 on a migrated account at $0 across six runs.** Four paths: auto-close fires (`probe=in_context` at `elapsed_s` **84.8**, reproduced 3x), a manual close still verifies from disk (exit 0, never exit 12), `--browser auto` selects and completes, and a window closed **mid-2FA** is noticed in **2 s** (exit 8) where it previously ran the full 600 s deadline with the session endpoint touched **zero** times. **Two runs were discarded rather than counted**, and that is the useful part: the first returned exit 0 at `elapsed_s: 0.2` because a throwaway profile had survived the previous session and nobody signed in — a cached session reading as a clean pass — and three attempts at the manual-close path all returned exit 0 while being the *auto-close* path in disguise, separable only by an **absent** `probe=in_context`. The manual path was obtained by widening the poll interval for one run so the competing branch could not fire; the 2FA path by killing the profile's own Chrome, because hand-timing lost every race on a host that completes passkey sign-in in ~15 s. **Recorded as NOT verified rather than omitted:** the migrated-host image slice (#692) was **re-run this cycle** — CLI `t2i` PASSED first-hand on a moved account, while the queued-MCP `i2i` twin failed with a typed non-retryable exit 27 whose **cause is unknown** — some dialog opened after the file was chosen and no `maseQ` left the page, on an account that has ALREADY consented, so the message's "most likely the one-time upload-terms dialog" does not fit; no incident bundle was written, so nothing names the dialog, and it is filed for a spike rather than guessed; the subprocess fallback is unit-tested only; and the OAuth-callback *mechanism* behind the poll fix is **inferred, not proven** — a host-only gate does not exclude NextAuth's callback, since it runs on the app's own origin, yet all four sign-ins passed under it, so #769 carries the spike that would settle it.) · previous: [LIVE_VERIFICATION_v0.71.1](LIVE_VERIFICATION_v0.71.1.md) (**two migrated-host error paths stopped blaming the wrong thing, 2026-09-08, $0 across three profiles.** The agent-mode recovery landed earlier in this same release (#749) and worked, but its first cut collapsed three outcomes into one message — chip clicked / chip found but click blocked / chip clicked and mode still on — so a modal eating the click sent users to toggle a chip that was never the problem, and genuine selector drift *after* the mode was left was filed under an account setting the driver had already changed. Verified by an e2e that drives the account INTO agent mode and carries its own neutered-selector control; run **twice**, because review fixes landed after the first run and it no longer covered the code. **The larger find:** an account's FIRST upload on this host is blocked by Flow's one-time *"Rights to use this image"* dialog, which renders *after* the file chooser hands the file over — so `_dismiss_dialog` never sees it and the driver spent 60 s waiting for a request the page had already declined to make, then advised re-encoding the image. Six runs on `ci-probe` close the chain: guard fires while the dialog is up → owner-authorised accept → uploads (`media_id 8914400f`) → fresh session uploads clean with `dialog: None`. The order was forced, because the dialog is one-off and accepting it destroys the failing state — so the guard was written and verified BEFORE anything was clicked, and its firing branch is now unrepeatable here. `maseQ` is confirmed **not** renamed (six uploads, three profiles), killing #719's top hypothesis. Also: Flow's queue listing is on **`Zzl0ze`**, not the `jwpduf`/`as29s` progress polls, and two `abra_r2v_8s` records sat at status 6 for ~20 h unseen by any CLI command (#741). Three documents are corrected rather than patched — a KNOWN_ISSUES entry that told #719's reader this dialog did not affect gflow-cli, and a v0.71.0 host label calling `ci-probe` *labs* when it is migrated, which helped a credit-based theory survive four runs. Recorded as NOT verified: #719's second failure shape — an upload request that leaves the page and is never answered, ~1 run in 4 — which is unfixed and keeps #719 open.) · previous: [LIVE_VERIFICATION_v0.71.0](LIVE_VERIFICATION_v0.71.0.md) (**`gflow character create --voice` verified end to end for the first time, 2026-09-07 on profile `ffroliva`.** Before this release a repo-wide grep for `--voice` across `tests/e2e/` matched **nothing** — every voice test was a unit test of the hardcoded `VOICES` constant and the one that looked live parsed a fixture, so a voice that silently failed to attach was invisible to the whole suite while the command exited 0. A live create + `character show` read-back settles a contradiction between two of our own documents: `sent='Charon' stored='Charon' identical=True`, so the Capitalized canonical form round-trips and `CHARACTER_RECON.md`'s "preset id is the lowercased name" does not describe today's wire. Both docs also now record that `personalityNotes` is **Agent-scoped** per Flow's own editor copy, not a control on the audio engine. **A claim that was in the code is overturned:** the `_unported_form` entity guard said the submit "never produces a reply" and that the backend refuses — in fact `MZZa6b` replies with a null payload and the generation is **accepted and queued** (Flow types it `abra_r2v_8s` and renders it); the failure is the *observer*, which waits out `SUBMIT_REPLY_BUDGET_S` (60 s, calibrated on 4.0–4.6 s replies against an idle queue) and exits 9 while the video is still rendering. The guard stays until the observer is fixed, because a timeout reported on a healthy generation is worse than an explicit refusal. Also verified: credit shortfall reports exit **37** with `_raise_if_out_of_credits` called from **both** give-up paths — and it is *short for the selected model*, not empty (the measured account held **50** and asked for `veo-quality`, which costs **100**); the "+ New project" CTA anchored structurally on `add` (Tier-1 matches **1** where every previous entry matched **0**, control 47 ligature nodes) after this same release first asserted the control did not exist and a $0 run disproved it in one click; and the incident-bundle DOM dump de-blinded — it queried `i.google-symbols` only, so **every bundle a migrated user sent carried an empty ligature list**, which is why #727 and #731 stayed invisible. One item recorded as NOT verified rather than omitted: whether a bound character's **voice reaches rendered audio** (#738) — attachment is proven, application is not, because no entity-bound generation has yet returned a file to measure. The blocker is no longer credits or account access but retrieval, and the measurement is pre-calibrated: plate-bound takes of one character gave **88 / 103 / 118 Hz** against a **4.3 Hz** engine noise floor, so an applied Algenib should sit near its sample's **163.3 Hz**.) · previous: [LIVE_VERIFICATION_v0.70.0](LIVE_VERIFICATION_v0.70.0.md) (**reference-to-video on the migrated `flow.google.com` host, verified 2026-09-06 on profile `denon82`.** Three r2v runs bound their references every time; the decisive one is semantic rather than structural — two hand-drawn reference images went in and the clip came back carrying the same marker strokes, face and paper texture, which is what separates "Flow bound the reference" from "Flow accepted and ignored it". A four-beat, two-character piece was then produced end to end and joined with the concat filter: 19.000s, 1280x576, `clip_qa` **ok**, A/V **+0.000s**, both actors recognisable across every cut from one face plate plus the canon repeated verbatim. Also verified as exit-code corrections on the real CLI: `-o <existing directory>` now exits **2 in 0.8s** instead of exit 1 after ~2 min **and a billed, orphaned clip**; `character create` on a moved account exits **36 immediately** instead of a bare `RuntimeError` exit 1 after a 20s wait. Four items recorded as NOT verified rather than omitted: #692's original failure could not be reproduced [the reporter's own re-run was on a build without the fix, so it shows the failure is intermittent, not that the fix works]; Flow CHARACTER entities were never exercised because `character create` cannot run on any account available here; `image`/`scene`/`movie`/`extend` all exit 36 on the migrated host and no unmoved account exists here; and the sign-in-interstitial fidelity question from #699 has no bundle evidence either way.) · previous: [LIVE_VERIFICATION_v0.68.0](LIVE_VERIFICATION_v0.68.0.md) (`gflow update` self-upgrading a real `uv tool` and a real `pipx` install from their own running `gflow.exe` to the PyPI release, Windows 11, zero credits — see its own row below) · previous: [LIVE_VERIFICATION_v0.67.0](LIVE_VERIFICATION_v0.67.0.md) (the migrated `flow.google.com` driver — see its own row below) · previous: [LIVE_VERIFICATION_v0.64.0](LIVE_VERIFICATION_v0.64.0.md) (**#626 `--model omni-flash --end-frame` — first+last interpolation on Omni 1.1 Flash, verified 2026-09-02.** The guard this release removes was evidence-gated, so it was retired on evidence: a route-aborted submit capture on **two distinct Google accounts** (`ffroliva`, `denon82`) fired `video:batchAsyncGenerateVideoStartAndEndImage` with `startImage` AND `endImage` non-null at **zero credits**, ruling out a single-account artifact. The decisive layer is semantic, not structural: the paid 4s generation's **last frame IS the supplied end image** and its first frame is the start image — two visibly different subjects — which is the only check that distinguishes "Flow bound the end frame" from "Flow accepted and ignored it", and which layers 1–4 would pass either way. Render: 4.01s / 720×1280 / h264+aac / 2.4 MB, `MEDIA_GENERATION_STATUS_SUCCESSFUL`. The static capability table is **deleted**, not corrected — it went stale silently once and would again; a post-submit route check (`_assert_i2v_route`) now fails a run whose end frame Flow dropped back to the `StartImage` route, catching a rollback on any account without anyone re-reading a support page. One item is recorded as NOT verified rather than omitted: `--duration 10` + end frame is **submit-verified only** (`duration_set seconds=10` on the correct route with both images bound), because the status poll returned HTTP 401 mid-run and a retry 401'd at `project.create` before submitting — [#561](https://github.com/ffroliva/gflow-cli/issues/561), pre-existing, so verification was stopped rather than spending further credits on an environmental fault.) · previous: [LIVE_VERIFICATION_v0.63.0](LIVE_VERIFICATION_v0.63.0.md) (**`gflow video extend` — continuing a clip past Flow's 8s ceiling, verified 2026-09-01 on profile `ffroliva`, 20 Veo credits.** The decisive observation is that segment 2's `source_media_id` **is** segment 1's `media_id` (`0c9364f3…` seeded from `b9458021…`, then `648f9291…` seeded from `0c9364f3…`) — tail-only chaining, which no mock can establish; had it re-seeded from the source, the output would have been two divergent continuations of the same moment instead of one continuous shot. `extend_model_resolved` logged `candidate_count=99` against `SERVICE_TIER_INTERMEDIATE`, proving the key came from the live capability listing rather than a constant, and plan cost matched actual spend (`20 credits total, balance 875` → `Extended — 2/2 segment(s), 20 credits`). Render: 23.02s / 1280×720 / 24fps / h264+aac. **The run found a defect the offline suite is structurally incapable of seeing:** an extend segment carries **7.000000s** of content, not the 8 Flow advertises and bills, so server-side concat pads every internal seam with a frozen frame and digital silence (15s at −75.1 dB against −29 neighbours, reproduced on a second independent render) — filed in KNOWN_ISSUES with the three questions that must be answered before any clamp, and the reason `--extend N` on t2v/i2v was deliberately NOT shipped. Seven items are recorded as NOT verified rather than omitted: portrait `9:16`, `--aspect` against a mismatched source, chains longer than 2 segments, `--resume-from` against a live partial scene, the insufficient-credits refusal, a live Ctrl+C, and `OperationKind.EXTEND` rows.) · previous: [LIVE_VERIFICATION_v0.62.1](LIVE_VERIFICATION_v0.62.1.md) (**#604 `--model omni-flash` selects again after Flow's `Omni Flash` → `Omni 1.1 Flash` rename, verified 2026-08-30 on profile `ffroliva` at ZERO Veo credits.** The production `_select_video_model` was driven against the real picker: the shipped selector resolves verbatim — `model_selected model=omni_flash via="[role='menuitem']:has-text('Omni'):has-text('Flash'):not(:has-text('[Lower Priority]'))"` — and all six cases came back as expected: the four offered tiers SELECT, a tier Flow does not offer REFUSES, and a deliberately ambiguous selector REFUSES rather than resolving `.first`. Selection happens before submit, so the whole matrix is free. The transport's own refusal diagnostic read the live menu back as `Omni 1.1 Flash / Veo 3.1 - Lite / Fast / Quality`, independently corroborating the fixture. Four items are recorded as NOT verified rather than omitted: the rename *direction* [the `Omni Flash` baseline is a different account, locale and date], an actual `Omni ... [Lower Priority]` entry [Flow has never offered one], a full credit-spending generation on omni-flash, and #539's absence question, which stays open.) · previous: [LIVE_VERIFICATION_v0.62.0](LIVE_VERIFICATION_v0.62.0.md) (**#595 `auto` ≡ `classic` for images, verified 2026-08-28 on profile `ci-probe` — an account Flow had moved to the agentic cohort the day before — at ZERO Veo credits.** With no flags and no env vars the run logged `ui_driver.ui_mode.attempt_exit_agent` → `ui_driver.bound mode=classic ui_mode=classic` and generated a real 768x1376 JPEG (exit 0); the day before, the identical command on the same account bound `auto`→`agentic` and failed. The same log independently closed **#183**: `mode_switch_trigger` and `image_mode_tab`, the selectors it reported as unfindable, both matched. #591 was proven against the real 500-row catalog — **0** occurrences of the string `"None"`, 31 proper JSON `null`s, over a catalog holding 119 NULL-bearing rows. #592 shows exactly one `client.account_locale_cached` per command. Three items are recorded as NOT verified rather than omitted: the exit-28 abort on a *pinned* agentic account, the #597 batch inter-prompt guard, and any fresh announcement modal — the last two because all three accounts have already acked the current changelog, so no modal can be raised until Google ships the next one.) · previous: [LIVE_VERIFICATION_v0.61.0](LIVE_VERIFICATION_v0.61.0.md) (**#539 video-model refusal + #586 image-model refusal and server-side attribution, verified 2026-08-26/27 on profile `denon82`, ONE Veo generation total** — the video fix was proven by a **zero-credit A/B against the stashed pre-fix source running on live Flow**: the old code returned SELECTED for `veo-lite-lp`, a model Flow does not offer to this account, and for a deliberately ambiguous selector matching 3 entries; the new code refuses both with exit 18 naming what Flow offered. Model selection happens before submit, so refusals cost nothing and the A/B was free. The happy path still generates: `--model omni-flash` → exit 0, a real 2.2 MB `ftypisom` mp4, catalog recording `omni_flash`. Two items are recorded as NOT verified rather than omitted: three of #584's four navigation-settle sites were never exercised [no bearer refresh occurred in these runs], and #582's canary self-re-exec has its first real exercise tonight. Also falsified: #539's recorded note that the video picker uses a different trigger — the two constants are byte-identical strings, and the repeated empty menu captures were the capture's own fault.) · previous: [LIVE_VERIFICATION_v0.60.0](LIVE_VERIFICATION_v0.60.0.md)
|
|
172
|
+
**What was actually live-verified for the latest release?** → latest: [LIVE_VERIFICATION_v0.77.1](LIVE_VERIFICATION_v0.77.1.md) (**a four-fix patch release, verified 2026-09-17 at ZERO cost.** The headline is #846: the published package could not run a single interactive command on a clean Windows install, because `ConsoleRenderer(colors=True)` needs `colorama` and nothing declared it. Verified as a controlled A/B on a fresh Python 3.13 venv — `SystemError` before, exit 33 after — plus an arm with stderr piped that shows why the AUTO/JSON split hid this from every CI job, and the MCP twin run separately. #848's import probe is exercised against a **deliberately broken venv** and an intact one, including the contract that a probe which cannot run reports nothing rather than reporting breakage. #852 is re-measured on the release head: 40 000 base64-shaped chars fall from 12.07 s to 0.020 ms with identical output on Workspace and custom domains. **#849 is a NAMED BLOCKER, not an omission** — its end-to-end behaviour needs a fresh interactive Google sign-in, which no agent can perform; its live A/B is recorded on PR #851 and its e2e file re-ran 4/4 here. **Seven live e2e failures are recorded rather than hidden**, and controlled: the release changes exactly four source files and none of them is a failing test's module.) · previous: [LIVE_VERIFICATION_v0.77.0](LIVE_VERIFICATION_v0.77.0.md) (**the migrated-host login lockout (#791), verified as a controlled A/B on a real Google **Workspace** account at ZERO cost — same profile, same cookies untouched between arms, so the only variable is the code: exit 8 with the Chrome marker rolled back and `channel_for_profile` collapsed to `None`, then exit 0 with the marker intact and the account recorded. The refusal path is measured too — of 10 local profiles, 5 reproduce #791 and exactly one carries both required cookies: 4 refusals, 1 upgrade, 0 false positives. v0.76.0 recorded this fix as **withdrawn**; the approach that shipped is a different one, server-attested on the landing URL rather than on client-rendered DOM. An earlier revision gated auth on an `@gmail.com`-only pattern that silently declined every custom domain — the account used here is one, which is why this is its verification. **#796 is reproduced and prevented**, not merely reported: it was filed as *'not yet reproduced end-to-end'*. **Two rows are named blockers, not omissions:** the MCP Registry publish (#841) cannot be rehearsed before a real tag push, so this release is its first exercise; and the migrated-host generation e2e cannot run here at all — every account bounces to `/about`, A/B-controlled against `develop` so it is not mistaken for a regression.) · previous: [LIVE_VERIFICATION_v0.76.0](LIVE_VERIFICATION_v0.76.0.md) (**a diagnostics-and-distribution release, verified 2026-09-16 at ZERO cost — no Veo credits, no image generation, no Flow submit.** The decisive arm is #833's **negative** control, run first-hand on two real accounts rather than relayed: `flow-pinhole-unavailable-screen` is **0** on both `ffroliva` and `denon82` while `aisandbox-root` is **1**, so the guard does not fire on accounts that HAVE Flow access and the zero is a real absence rather than a page that never booted — a guard with only a positive arm is indistinguishable from one that is permanently on. Both accounts settled at **`/about`**, which is the state that broke this release's *withdrawn* #791 oracle, and the exit-39 signal reads a component that only exists on the unavailable screen, so `/about` cannot mimic it. mcpservers.org is verified with a **404 negative control** because the listing 403s to `curl` and a naive check would have called the link dead. **#791 is NOT in this release and was withdrawn rather than deferred**: a fix passed eight council dimensions and was then refuted by a five-day-old spike nobody had routed to it — Flow's `/about` hop is decided client-side with zero requests to Flow, and *"the backend grants access while the frontend declines to open it"* (#756), so the probe would have reported authenticated users as logged out, reintroducing #791 as its own cure; the e2e caught it by going red on a live account whose state moved mid-session. **Two rows are blocked by the platform rather than by effort:** the Docker sign-in needs a WSL-integrated Docker host, and the MCP Registry publish cannot be observed until this very tag reaches `main`, since both triggers resolve the workflow from the default branch.) · previous: [LIVE_VERIFICATION_v0.75.0](LIVE_VERIFICATION_v0.75.0.md) (**a distribution-and-hardening release, verified 2026-09-15 on `ffroliva` at ZERO cost — no Veo credits, no image generation, no Flow submit.** The `gflow serve` token fix is an **A/B against the released 0.74.0 wheel from PyPI**, not a diff read: the token was *set* in both arms, so the probe measures whether it is checked — before, `no token 200/200` with 13 tools listed and `wrong 200/200`; after, `401/401` with zero tools and `WWW-Authenticate: Bearer realm="gflow"`, while the correct token still gets 200. Loopback DNS-rebinding was re-confirmed at **421**/**403** because the fix forwards the bind host and getting that wrong would silently disable protection that works today — and an earlier draft of the accompanying advisory claimed that protection was *disabled*, a false claim caught by measuring rather than re-reading. #813's guard is verified against a **real wheel in a real venv installed without extras**, the arm first proving it is in that state (`av present: False PIL present: False`); the decisive row is that a **nonexistent** manifest still exits **20** on the dependency error rather than file-not-found, which is what shows the guard precedes the manifest read and not merely the generation. The Rich escape fix is verified on the **console render separated from the structlog JSON** — matching the JSON line would have been a false pass, since `--json` was never affected — with a **neutered control** through the same Rich version reproducing the bug exactly: `UNESCAPED -> pip install 'gflow-cli'` against `ESCAPED -> pip install 'gflow-cli[chain]'`. Also: `gflow-cli.exe` exists in the built wheel so `uvx gflow-cli` resolves at all, and the wheel carries 138 entries with **zero** ZIP duplicates. **Three items recorded as NOT verified rather than omitted:** a successful multi-link `chain` run spends Veo credits and stays outstanding e2e debt on #813 — what changed is the refusal path, which *is* verified; `gflow credits` against a working balance is impossible here because the account still returns 401, pre-existing **#795** and unrelated to this release; and the SSE arm of the token fix was exercised on loopback only, a deliberate scope limit, since binding a LAN address to test it would put an authenticated daemon on a live network for the run. **Two rows are blocked by the platform rather than by effort:** the PyPI metadata and the MCP Registry listing are both unobservable until this release is uploaded — PyPI renders the last artefact's metadata, and `mcp-publisher` reads its ownership token out of the *published* README.) · previous: [LIVE_VERIFICATION_v0.74.0](LIVE_VERIFICATION_v0.74.0.md) (**the migrated driver's run-unique uploads and its Frames-picker confirm, plus the `credits` remediation, verified 2026-09-14 on `ffroliva` at ZERO cost — every arm is a read or an upload-and-stop.** The confirm branch is the interesting one: this cohort's picker closes on its own, so the branch would never execute against live Flow by accident, and the e2e drives `FRAME_COMMIT_GRACE_S` to **0.001** so the grace expires before Flow can auto-close and **every** run enters it — the difference between a named blocker and an unrun claim. A *genuinely stuck* picker still cannot be produced here and stays `Refs #792`, verifier the reporter. #795 was verified on the cohort it is for, because this account is now in it — `auth status` green, `credits user` exit **3** with `detail` `credits endpoint returned 401` and `route: credits`, where v0.73.2 printed the class-default *"SAPISID cookie missing… re-run `gflow auth login`"*, advice that is wrong in every word there and that can roll a profile's strategy marker back and start the #791 spiral; the `credits list --json` envelope carries the per-profile `remediation_hint` that used to be dropped. **Two items recorded as NOT verified rather than omitted:** #799's exit-25 raise site needs an account in the agent-only cohort — the maintainer's accounts are served `flow.google.com` but still have the recoverable agent chip, so the state is structurally unreachable on them, a named blocker and #799 stays open; and neither `r2v` nor `i2i` had its own attach path driven to completion — `r2v` was not attempted (its e2e spends Veo credits), while `i2i` **was** attempted twice and failed both times at exit 23, before reaching the code under test, because the `--project` UUID came from `gflow project list` (the aisandbox catalog) and those ids 404 on `flow.google.com` — a harness error, recorded rather than dropped, which left a side finding: gflow reports Flow's own `/404?reason=project` as `UiSelectorDriftError`, blaming our selectors for Flow's 404. **#791 is not fixed and was not attempted blind** — all nine local profiles were probed at $0 and none is in the #791 state (SAPISID + a live `flow.google.com` session + no labs NextAuth token); four print its exact symptom string and none of them is it, because that string is also what a stale profile says.) · previous: [LIVE_VERIFICATION_v0.73.2](LIVE_VERIFICATION_v0.73.2.md) (**the blank incident bundle, reproduced and then cured by a committed e2e test, 2026-09-12 on `ffroliva` at ZERO cost — every arm fails before submit.** The decisive layer is an **A/B run through the same instrument**, not an inspection: on `develop` the new test FAILS in 46.3 s and prints the bundle it got — `tag_counts.div = 0`, `title.length = 0`, `host_category = "other"`, a 4,254-byte screenshot — which is field-for-field the signature [#792](https://github.com/ffroliva/gflow-cli/issues/792) reported from a different account, a different OS and a different command; on the fix it PASSES in 37.8 s with `div` **25**, `title.length` **81**, `host_category` **`flow_app`**, `route` `/404` and a 38.4 KB screenshot. Both arms exit **23** on the same `.settings-trigger-button` drift at `flow.google.com/404?reason=project`, so the arms differ only in what was *captured*, never in what failed. **The reporter's own bundle contained the refutation of their diagnosis**: viewport 1280x720 is `client.py`'s client-owned page, not the 1920x1080 a stray transport tab would have — it was always the driven page, photographed one navigation too late, and the portrait correlation had no mechanism behind it. The existing quality benchmark could not have caught this: it captures deliberately on a **healthy** page, so it graded only bundles that were never at risk. **Recorded as NOT verified rather than omitted:** #796's `PROFILE_MARKER_MISSING` is offline-only because its live trigger is a cookie-store **decryption** failure, which does not occur on Windows/DPAPI — it is the macOS Keychain path of [#768](https://github.com/ffroliva/gflow-cli/issues/768), a **named external blocker**, and the issue stays open; a synthetic attempt to force it failed informatively, since a corrupt store raises `sqlite3.DatabaseError`, bypasses the marker gate and still prints "check network connectivity" — the same misdirection from a different trigger, untouched here. #795's remediation string is unit-asserted only, and the *other* half of #795 — `credits` being labs-only on migrated accounts — is **not fixed**.) · previous: [LIVE_VERIFICATION_v0.73.1](LIVE_VERIFICATION_v0.73.1.md) (**Google's `glue` consent bar covering the migrated composer, measured and then cured, 2026-09-11 on `ci-probe` for one image generation and no Veo credits.** The premise was nearly rejected: both prior sightings of that selector in this repo are labs.google, and the 2026-09-10 spike had read 159 DOM samples on this exact host and project and watched the click land 3/3 — it simply never looked for a cookie bar. Seventeen hours later the bar was up: `position: fixed`, `z-index: 1000`, spanning y 547-655 of a 655 px viewport, with `elementFromPoint` over the settings trigger AND over the image submit both returning `span#glue-cookie-notification-bar-1-label` in **0 of 5** rendered samples hit-testable. **The control arm is what makes it a cure rather than a coincidence**: the same probe re-run through the driver's own `_dismiss_cookie_bar` restored both controls to **4/4**, one attempt, no error. A full `gflow image t2i` then ran end to end on the merged code — `status: ok`, a 807,761-byte `ffd8ffe0` JPEG that Pillow reads as 1376x768 RGB, matching the requested 16:9 and the reply's own dimensions, with `migrated.editor_ready` at 2.0 s and **no** `cookie_bar_not_dismissed`. A side finding the control arm produced by accident: the bar's buttons are `__accept` then `__reject` in DOM order, so anything taking "the first button" accepts cookies for the operator — the shipped fix anchors on reject. **Three items recorded as NOT verified rather than omitted:** the cure against a live bar outside the browser, because this release's own control arm consumed the consent on the only profile that had it; **prevalence**, because the second profile never reached an editor (both arms redirected to `/about`) so it is one account blocked and one already-consented, and KNOWN_ISSUES says so rather than generalising from n=1; and the video path live, which shares the identical function on the identical control but spends Veo credits.) · previous: [LIVE_VERIFICATION_v0.73.0](LIVE_VERIFICATION_v0.73.0.md) (**four error paths that stopped lying about what went wrong, verified 2026-09-10 on `ci-probe` and `denon82` at $0 — no run below reaches a Veo submit.** The decisive arm is an **A/B**, not an inspection: the pre-fix run printed an `accounts.google.com` challenge URL together with the OAuth `state` and `client_id`, and the identical command after the fix gave the same exit 38 and the same landing named with **five secret matches down to zero** — reading the post-fix output alone would only have shown that *these* secrets were absent. A second arm **falsified a claim already written into PR #775's body**: it said the change fixed the RED canary, and the live run showed `denon82` had moved to `accounts.google.com` mid-run, a landing the classifier excluded **by design**, with a unit test encoding the wrong reason — the offline suite was green throughout and could not have caught it. #776's happy path is verified by a real `gflow image t2i` (exit 0, 367 135-byte JPEG, `image_settings_applied` and `prompt_typed` both present, so **three of the four converted click sites** clicked successfully through the new helper); its **failure** path is real Chromium driving a page we wrote, which proves the mechanism and explicitly **not** that Flow still produces that state. **Three items recorded as NOT verified rather than omitted:** the `/about` redirect stopped reproducing (**0/5**, reported as *unmeasured* rather than argued into a retry flag), the `/fx/api/auth/*` landing moved before the run reached it, and #764's *success* path — an external contribution whose error boundary this release verifies but whose auto-selection needs an account currently behind a Google password challenge. The fourth converted click site is the **video** submit, unrun because it spends Veo credits, named rather than implied.) · previous: [LIVE_VERIFICATION_v0.72.0](LIVE_VERIFICATION_v0.72.0.md) (**auto-closing `gflow auth login`, verified 2026-09-09 on a migrated account at $0 across six runs.** Four paths: auto-close fires (`probe=in_context` at `elapsed_s` **84.8**, reproduced 3x), a manual close still verifies from disk (exit 0, never exit 12), `--browser auto` selects and completes, and a window closed **mid-2FA** is noticed in **2 s** (exit 8) where it previously ran the full 600 s deadline with the session endpoint touched **zero** times. **Two runs were discarded rather than counted**, and that is the useful part: the first returned exit 0 at `elapsed_s: 0.2` because a throwaway profile had survived the previous session and nobody signed in — a cached session reading as a clean pass — and three attempts at the manual-close path all returned exit 0 while being the *auto-close* path in disguise, separable only by an **absent** `probe=in_context`. The manual path was obtained by widening the poll interval for one run so the competing branch could not fire; the 2FA path by killing the profile's own Chrome, because hand-timing lost every race on a host that completes passkey sign-in in ~15 s. **Recorded as NOT verified rather than omitted:** the migrated-host image slice (#692) was **re-run this cycle** — CLI `t2i` PASSED first-hand on a moved account, while the queued-MCP `i2i` twin failed with a typed non-retryable exit 27 whose **cause is unknown** — some dialog opened after the file was chosen and no `maseQ` left the page, on an account that has ALREADY consented, so the message's "most likely the one-time upload-terms dialog" does not fit; no incident bundle was written, so nothing names the dialog, and it is filed for a spike rather than guessed; the subprocess fallback is unit-tested only; and the OAuth-callback *mechanism* behind the poll fix is **inferred, not proven** — a host-only gate does not exclude NextAuth's callback, since it runs on the app's own origin, yet all four sign-ins passed under it, so #769 carries the spike that would settle it.) · previous: [LIVE_VERIFICATION_v0.71.1](LIVE_VERIFICATION_v0.71.1.md) (**two migrated-host error paths stopped blaming the wrong thing, 2026-09-08, $0 across three profiles.** The agent-mode recovery landed earlier in this same release (#749) and worked, but its first cut collapsed three outcomes into one message — chip clicked / chip found but click blocked / chip clicked and mode still on — so a modal eating the click sent users to toggle a chip that was never the problem, and genuine selector drift *after* the mode was left was filed under an account setting the driver had already changed. Verified by an e2e that drives the account INTO agent mode and carries its own neutered-selector control; run **twice**, because review fixes landed after the first run and it no longer covered the code. **The larger find:** an account's FIRST upload on this host is blocked by Flow's one-time *"Rights to use this image"* dialog, which renders *after* the file chooser hands the file over — so `_dismiss_dialog` never sees it and the driver spent 60 s waiting for a request the page had already declined to make, then advised re-encoding the image. Six runs on `ci-probe` close the chain: guard fires while the dialog is up → owner-authorised accept → uploads (`media_id 8914400f`) → fresh session uploads clean with `dialog: None`. The order was forced, because the dialog is one-off and accepting it destroys the failing state — so the guard was written and verified BEFORE anything was clicked, and its firing branch is now unrepeatable here. `maseQ` is confirmed **not** renamed (six uploads, three profiles), killing #719's top hypothesis. Also: Flow's queue listing is on **`Zzl0ze`**, not the `jwpduf`/`as29s` progress polls, and two `abra_r2v_8s` records sat at status 6 for ~20 h unseen by any CLI command (#741). Three documents are corrected rather than patched — a KNOWN_ISSUES entry that told #719's reader this dialog did not affect gflow-cli, and a v0.71.0 host label calling `ci-probe` *labs* when it is migrated, which helped a credit-based theory survive four runs. Recorded as NOT verified: #719's second failure shape — an upload request that leaves the page and is never answered, ~1 run in 4 — which is unfixed and keeps #719 open.) · previous: [LIVE_VERIFICATION_v0.71.0](LIVE_VERIFICATION_v0.71.0.md) (**`gflow character create --voice` verified end to end for the first time, 2026-09-07 on profile `ffroliva`.** Before this release a repo-wide grep for `--voice` across `tests/e2e/` matched **nothing** — every voice test was a unit test of the hardcoded `VOICES` constant and the one that looked live parsed a fixture, so a voice that silently failed to attach was invisible to the whole suite while the command exited 0. A live create + `character show` read-back settles a contradiction between two of our own documents: `sent='Charon' stored='Charon' identical=True`, so the Capitalized canonical form round-trips and `CHARACTER_RECON.md`'s "preset id is the lowercased name" does not describe today's wire. Both docs also now record that `personalityNotes` is **Agent-scoped** per Flow's own editor copy, not a control on the audio engine. **A claim that was in the code is overturned:** the `_unported_form` entity guard said the submit "never produces a reply" and that the backend refuses — in fact `MZZa6b` replies with a null payload and the generation is **accepted and queued** (Flow types it `abra_r2v_8s` and renders it); the failure is the *observer*, which waits out `SUBMIT_REPLY_BUDGET_S` (60 s, calibrated on 4.0–4.6 s replies against an idle queue) and exits 9 while the video is still rendering. The guard stays until the observer is fixed, because a timeout reported on a healthy generation is worse than an explicit refusal. Also verified: credit shortfall reports exit **37** with `_raise_if_out_of_credits` called from **both** give-up paths — and it is *short for the selected model*, not empty (the measured account held **50** and asked for `veo-quality`, which costs **100**); the "+ New project" CTA anchored structurally on `add` (Tier-1 matches **1** where every previous entry matched **0**, control 47 ligature nodes) after this same release first asserted the control did not exist and a $0 run disproved it in one click; and the incident-bundle DOM dump de-blinded — it queried `i.google-symbols` only, so **every bundle a migrated user sent carried an empty ligature list**, which is why #727 and #731 stayed invisible. One item recorded as NOT verified rather than omitted: whether a bound character's **voice reaches rendered audio** (#738) — attachment is proven, application is not, because no entity-bound generation has yet returned a file to measure. The blocker is no longer credits or account access but retrieval, and the measurement is pre-calibrated: plate-bound takes of one character gave **88 / 103 / 118 Hz** against a **4.3 Hz** engine noise floor, so an applied Algenib should sit near its sample's **163.3 Hz**.) · previous: [LIVE_VERIFICATION_v0.70.0](LIVE_VERIFICATION_v0.70.0.md) (**reference-to-video on the migrated `flow.google.com` host, verified 2026-09-06 on profile `denon82`.** Three r2v runs bound their references every time; the decisive one is semantic rather than structural — two hand-drawn reference images went in and the clip came back carrying the same marker strokes, face and paper texture, which is what separates "Flow bound the reference" from "Flow accepted and ignored it". A four-beat, two-character piece was then produced end to end and joined with the concat filter: 19.000s, 1280x576, `clip_qa` **ok**, A/V **+0.000s**, both actors recognisable across every cut from one face plate plus the canon repeated verbatim. Also verified as exit-code corrections on the real CLI: `-o <existing directory>` now exits **2 in 0.8s** instead of exit 1 after ~2 min **and a billed, orphaned clip**; `character create` on a moved account exits **36 immediately** instead of a bare `RuntimeError` exit 1 after a 20s wait. Four items recorded as NOT verified rather than omitted: #692's original failure could not be reproduced [the reporter's own re-run was on a build without the fix, so it shows the failure is intermittent, not that the fix works]; Flow CHARACTER entities were never exercised because `character create` cannot run on any account available here; `image`/`scene`/`movie`/`extend` all exit 36 on the migrated host and no unmoved account exists here; and the sign-in-interstitial fidelity question from #699 has no bundle evidence either way.) · previous: [LIVE_VERIFICATION_v0.68.0](LIVE_VERIFICATION_v0.68.0.md) (`gflow update` self-upgrading a real `uv tool` and a real `pipx` install from their own running `gflow.exe` to the PyPI release, Windows 11, zero credits — see its own row below) · previous: [LIVE_VERIFICATION_v0.67.0](LIVE_VERIFICATION_v0.67.0.md) (the migrated `flow.google.com` driver — see its own row below) · previous: [LIVE_VERIFICATION_v0.64.0](LIVE_VERIFICATION_v0.64.0.md) (**#626 `--model omni-flash --end-frame` — first+last interpolation on Omni 1.1 Flash, verified 2026-09-02.** The guard this release removes was evidence-gated, so it was retired on evidence: a route-aborted submit capture on **two distinct Google accounts** (`ffroliva`, `denon82`) fired `video:batchAsyncGenerateVideoStartAndEndImage` with `startImage` AND `endImage` non-null at **zero credits**, ruling out a single-account artifact. The decisive layer is semantic, not structural: the paid 4s generation's **last frame IS the supplied end image** and its first frame is the start image — two visibly different subjects — which is the only check that distinguishes "Flow bound the end frame" from "Flow accepted and ignored it", and which layers 1–4 would pass either way. Render: 4.01s / 720×1280 / h264+aac / 2.4 MB, `MEDIA_GENERATION_STATUS_SUCCESSFUL`. The static capability table is **deleted**, not corrected — it went stale silently once and would again; a post-submit route check (`_assert_i2v_route`) now fails a run whose end frame Flow dropped back to the `StartImage` route, catching a rollback on any account without anyone re-reading a support page. One item is recorded as NOT verified rather than omitted: `--duration 10` + end frame is **submit-verified only** (`duration_set seconds=10` on the correct route with both images bound), because the status poll returned HTTP 401 mid-run and a retry 401'd at `project.create` before submitting — [#561](https://github.com/ffroliva/gflow-cli/issues/561), pre-existing, so verification was stopped rather than spending further credits on an environmental fault.) · previous: [LIVE_VERIFICATION_v0.63.0](LIVE_VERIFICATION_v0.63.0.md) (**`gflow video extend` — continuing a clip past Flow's 8s ceiling, verified 2026-09-01 on profile `ffroliva`, 20 Veo credits.** The decisive observation is that segment 2's `source_media_id` **is** segment 1's `media_id` (`0c9364f3…` seeded from `b9458021…`, then `648f9291…` seeded from `0c9364f3…`) — tail-only chaining, which no mock can establish; had it re-seeded from the source, the output would have been two divergent continuations of the same moment instead of one continuous shot. `extend_model_resolved` logged `candidate_count=99` against `SERVICE_TIER_INTERMEDIATE`, proving the key came from the live capability listing rather than a constant, and plan cost matched actual spend (`20 credits total, balance 875` → `Extended — 2/2 segment(s), 20 credits`). Render: 23.02s / 1280×720 / 24fps / h264+aac. **The run found a defect the offline suite is structurally incapable of seeing:** an extend segment carries **7.000000s** of content, not the 8 Flow advertises and bills, so server-side concat pads every internal seam with a frozen frame and digital silence (15s at −75.1 dB against −29 neighbours, reproduced on a second independent render) — filed in KNOWN_ISSUES with the three questions that must be answered before any clamp, and the reason `--extend N` on t2v/i2v was deliberately NOT shipped. Seven items are recorded as NOT verified rather than omitted: portrait `9:16`, `--aspect` against a mismatched source, chains longer than 2 segments, `--resume-from` against a live partial scene, the insufficient-credits refusal, a live Ctrl+C, and `OperationKind.EXTEND` rows.) · previous: [LIVE_VERIFICATION_v0.62.1](LIVE_VERIFICATION_v0.62.1.md) (**#604 `--model omni-flash` selects again after Flow's `Omni Flash` → `Omni 1.1 Flash` rename, verified 2026-08-30 on profile `ffroliva` at ZERO Veo credits.** The production `_select_video_model` was driven against the real picker: the shipped selector resolves verbatim — `model_selected model=omni_flash via="[role='menuitem']:has-text('Omni'):has-text('Flash'):not(:has-text('[Lower Priority]'))"` — and all six cases came back as expected: the four offered tiers SELECT, a tier Flow does not offer REFUSES, and a deliberately ambiguous selector REFUSES rather than resolving `.first`. Selection happens before submit, so the whole matrix is free. The transport's own refusal diagnostic read the live menu back as `Omni 1.1 Flash / Veo 3.1 - Lite / Fast / Quality`, independently corroborating the fixture. Four items are recorded as NOT verified rather than omitted: the rename *direction* [the `Omni Flash` baseline is a different account, locale and date], an actual `Omni ... [Lower Priority]` entry [Flow has never offered one], a full credit-spending generation on omni-flash, and #539's absence question, which stays open.) · previous: [LIVE_VERIFICATION_v0.62.0](LIVE_VERIFICATION_v0.62.0.md) (**#595 `auto` ≡ `classic` for images, verified 2026-08-28 on profile `ci-probe` — an account Flow had moved to the agentic cohort the day before — at ZERO Veo credits.** With no flags and no env vars the run logged `ui_driver.ui_mode.attempt_exit_agent` → `ui_driver.bound mode=classic ui_mode=classic` and generated a real 768x1376 JPEG (exit 0); the day before, the identical command on the same account bound `auto`→`agentic` and failed. The same log independently closed **#183**: `mode_switch_trigger` and `image_mode_tab`, the selectors it reported as unfindable, both matched. #591 was proven against the real 500-row catalog — **0** occurrences of the string `"None"`, 31 proper JSON `null`s, over a catalog holding 119 NULL-bearing rows. #592 shows exactly one `client.account_locale_cached` per command. Three items are recorded as NOT verified rather than omitted: the exit-28 abort on a *pinned* agentic account, the #597 batch inter-prompt guard, and any fresh announcement modal — the last two because all three accounts have already acked the current changelog, so no modal can be raised until Google ships the next one.) · previous: [LIVE_VERIFICATION_v0.61.0](LIVE_VERIFICATION_v0.61.0.md) (**#539 video-model refusal + #586 image-model refusal and server-side attribution, verified 2026-08-26/27 on profile `denon82`, ONE Veo generation total** — the video fix was proven by a **zero-credit A/B against the stashed pre-fix source running on live Flow**: the old code returned SELECTED for `veo-lite-lp`, a model Flow does not offer to this account, and for a deliberately ambiguous selector matching 3 entries; the new code refuses both with exit 18 naming what Flow offered. Model selection happens before submit, so refusals cost nothing and the A/B was free. The happy path still generates: `--model omni-flash` → exit 0, a real 2.2 MB `ftypisom` mp4, catalog recording `omni_flash`. Two items are recorded as NOT verified rather than omitted: three of #584's four navigation-settle sites were never exercised [no bearer refresh occurred in these runs], and #582's canary self-re-exec has its first real exercise tonight. Also falsified: #539's recorded note that the video picker uses a different trigger — the two constants are byte-identical strings, and the repeated empty menu captures were the capture's own fault.) · previous: [LIVE_VERIFICATION_v0.60.0](LIVE_VERIFICATION_v0.60.0.md)
|
|
173
173
|
**"Was the playwright upper bound raised, and on what evidence?"** → [LIVE_VERIFICATION_playwright_1.61](LIVE_VERIFICATION_playwright_1.61.md) (**`>=1.59.0,<1.60.0` → `>=1.61.0,<1.62.0` verified 2026-08-05, 1 Imagen + 1 Veo credit** — the 2026-08-03 regression that motivated the bound does NOT reproduce on 1.61.0: a live `i2v` drove the full chain with `image_uploaded status=200` → `frame_attached` → `generate_captured status=200` with `startImage` parsed, where **1.62.0 hung silently at exactly that upload step**; live `i2i` local-ref attach passed outright [96.7s]. **1.62.0 stays excluded** — never root-caused. Also found, A/B-proven pre-existing on BOTH 1.59.0 and 1.61.0: Flow dropped the duration-tab UI, so **`--duration` is currently broken for i2v** — `UiSelectorDriftError` fires correctly [refusing rather than silently accepting Flow's default, #288] but the selector needs re-deriving; that is why the i2v proof was driven via the CLI without `--duration`, and Flow's own server-side `PUBLIC_ERROR_VIDEO_GENERATION_TIMED_OUT` means no finished mp4 is claimed).
|
|
174
174
|
**"Where is the reverse-engineered wire protocol for a feature?"** → the `*_RECON.md` design docs: [CHARACTER_RECON](CHARACTER_RECON.md) (Flow character entity protocol), [IMAGE_UPSCALE_RECON](IMAGE_UPSCALE_RECON.md) (`/v1/flow/upsampleImage` wire). Naming convention: one `<FEATURE>_RECON.md` per reverse-engineered surface, kept as the durable spec after the feature ships. Pre-capture research recons: [ASSET_TAGGING_RECON](ASSET_TAGGING_RECON.md) (`@`-mention asset tagging — shipped in v0.40.0, see [LIVE_VERIFICATION_v0.40.0](LIVE_VERIFICATION_v0.40.0.md)).
|
|
175
175
|
**"What was live-verified for v0.66.1?"** → [LIVE_VERIFICATION_v0.66.1](LIVE_VERIFICATION_v0.66.1.md) — **the two migrated-origin fixes, verified 2026-09-03 on profile `ffroliva` at ZERO credits, on BOTH sides of what was then read as a flapping rollout** (superseded 2026-09-04: the handoff is a one-way per-account flag and exit 36 is non-retryable since). On a real `flow.google.com` load `get_ui_driver` raised `FlowHostMigratedError` in **0 ms** (was ~36 s: ~8 s detect window + ~24 s crop cascade + 4 s URL settle), exit 36, `retryable: true` (then; `false` since 2026-09-04), `ui_driver.migrated_host_bail` logged; `await_url_settled` returned `null` in **0 ms** (measured 4018 ms before); and the locale was recovered as `en` from `html lang=en-GB` where the URL gave `null`. The no-regression half is the stronger evidence: minutes later the same command landed on the OLD host and completed **exit 0** with a real 768x1376 JPEG in 42.2 s, proving the host guard is scoped and does not short-circuit the working path. Three items recorded as NOT verified rather than omitted: driving the migrated frontend (still impossible, #639 stays open), the pt-BR recovery live (measured `html lang=pt` on `denon82` but exercised live only on `en-GB`), and the `en-GB`→`en` region reduction against a locale where region is load-bearing (`zh-Hans`/`zh-Hant`) — only two locales observed.
|
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
# Live verification — v0.77.1
|
|
2
|
+
|
|
3
|
+
**Date:** 2026-09-17 · **Host:** Windows 11 Pro 10.0.26200 · **Flow host served:** `flow.google.com`
|
|
4
|
+
**Cost:** $0 — no Veo credits spent. No generation was submitted in any run below.
|
|
5
|
+
|
|
6
|
+
Step 4b of [`/gflow:release`](../skills/release/SKILL.md). Every user-facing change in this
|
|
7
|
+
release is exercised against the real thing, or its blocker is named. Nothing is listed as
|
|
8
|
+
"unverified" that could have been verified — see AGENTS.md § The Iron Law.
|
|
9
|
+
|
|
10
|
+
This is a patch release of four fixes. Two of them (#846, #848) touch **no Flow surface** —
|
|
11
|
+
they are packaging and local install management — so for those "live" means a real clean
|
|
12
|
+
install and a real broken venv, not a browser. That is stated per item rather than left to
|
|
13
|
+
inference.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## 1. Clean Windows install (#846) — VERIFIED, and this is the release's headline
|
|
18
|
+
|
|
19
|
+
The only bug here that made the published package unusable. Verified as a **controlled A/B on
|
|
20
|
+
a clean Python 3.13 venv** carrying only the runtime closure — no dev extras, `colorama`
|
|
21
|
+
confirmed absent before the first arm.
|
|
22
|
+
|
|
23
|
+
### Arm A — `develop` @ 0.77.0, before the fix
|
|
24
|
+
|
|
25
|
+
```
|
|
26
|
+
$ python -c "import importlib.util as u; print(u.find_spec('colorama') is not None)"
|
|
27
|
+
False
|
|
28
|
+
|
|
29
|
+
$ GFLOW_CLI_LOG_FORMAT=text gflow doctor
|
|
30
|
+
File "...\structlog\dev.py", line 88, in _init_terminal
|
|
31
|
+
raise SystemError(
|
|
32
|
+
SystemError: ConsoleRenderer with `colors=True` on Windows requires the colorama package installed.
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### Arm A′ — the same command, stderr piped (the control that explains the blast radius)
|
|
36
|
+
|
|
37
|
+
```
|
|
38
|
+
$ GFLOW_CLI_LOG_FORMAT=auto gflow doctor
|
|
39
|
+
[PASS] env.browsers_missing: ok
|
|
40
|
+
[PASS] auth.files_present: ok
|
|
41
|
+
Overall: issues
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
`AUTO` resolves to the JSON renderer when stderr is not a TTY, so it never builds a
|
|
45
|
+
`ConsoleRenderer`. This is why every CI job and every scripted invocation stayed green while
|
|
46
|
+
interactive users could not run a single command — and it is the reason the regression test
|
|
47
|
+
asserts the **declaration** rather than the behaviour.
|
|
48
|
+
|
|
49
|
+
### Arm B — this release, 0.77.1, fresh venv, same command
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
$ uv pip install .
|
|
53
|
+
+ colorama==0.4.6
|
|
54
|
+
+ gflow-cli==0.77.1
|
|
55
|
+
|
|
56
|
+
$ GFLOW_CLI_LOG_FORMAT=text gflow doctor
|
|
57
|
+
[PASS] auth.files_present: ok
|
|
58
|
+
Overall: issues
|
|
59
|
+
[exited with code 33]
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Exit 33 is `gflow doctor` findings-present — a successful diagnosis, not an error class
|
|
63
|
+
(AGENTS.md § Code style). The point is that the process reached its own report at all.
|
|
64
|
+
|
|
65
|
+
### MCP twin — a separate surface, run separately
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
$ echo -n "" | GFLOW_CLI_LOG_FORMAT=text gflow mcp run
|
|
69
|
+
2026-09-17T05:50:37Z [info] mcp.server.starting cli_version=0.77.1 name=gflow-cli transport=stdio
|
|
70
|
+
[exited with code 0]
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
Both doors route through the same Click group callback, so the packaging fix covers both —
|
|
74
|
+
but per AGENTS.md § The second law, the twin was **run**, not inferred.
|
|
75
|
+
|
|
76
|
+
### The 5-layer ledger
|
|
77
|
+
|
|
78
|
+
| layer | evidence |
|
|
79
|
+
|---|---|
|
|
80
|
+
| install shape | fresh `uv venv --python 3.13`, runtime closure only, `colorama` absent in arm A and `colorama==0.4.6` resolved in arm B |
|
|
81
|
+
| process outcome | arm A `SystemError` from `structlog/dev.py:88`; arm B exit 33, the documented findings-present code |
|
|
82
|
+
| structlog invariants | arm B emits its normal TEXT-rendered events; arm A′ emits JSON, proving the AUTO split |
|
|
83
|
+
| surface parity | CLI (`gflow doctor`) and MCP stdio (`gflow mcp run` → `mcp.server.starting`) both reached |
|
|
84
|
+
| user-confirmable artifact | the reporter's own workaround (`uv pip install colorama`) is no longer needed — the dependency resolves unaided |
|
|
85
|
+
|
|
86
|
+
**Provenance:** reported from outside by a user on a clean Windows 11 install with the root
|
|
87
|
+
cause already localized. Their diagnosis was correct in every particular; see
|
|
88
|
+
[#846](https://github.com/ffroliva/gflow-cli/issues/846).
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
## 2. Sign-in window closes on a migrated account (#849) — VERIFIED at merge, PARTIAL here
|
|
93
|
+
|
|
94
|
+
**What ran on this release head, live, zero credits:**
|
|
95
|
+
|
|
96
|
+
```
|
|
97
|
+
$ GFLOW_CLI_E2E_PROFILE=ffroliva pytest -m e2e_auth
|
|
98
|
+
tests/e2e/test_auth_verification_e2e.py 4 passed
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
That file is the e2e coverage of `auth/verification.py` — the module #849's fix changed, and
|
|
102
|
+
the only Flow-surface module changed anywhere in this release. It executes
|
|
103
|
+
`verify_flow_profile` and `has_migrated_app_session` against a real profile and a real
|
|
104
|
+
`myaccount.google.com` response, not a fixture.
|
|
105
|
+
|
|
106
|
+
**What did NOT run here, and why — a named external blocker.** The end-to-end behaviour #849
|
|
107
|
+
describes (the browser window closing by itself) requires a *fresh interactive Google
|
|
108
|
+
sign-in*: typing a password and clearing 2FA at Google's own consent screen. That is a human
|
|
109
|
+
action this session cannot perform, and it is not a credential problem that could be worked
|
|
110
|
+
around — it is the interaction itself. Per AGENTS.md § The Iron Law this is a permitted
|
|
111
|
+
exception **because it is named**, not because it was inconvenient.
|
|
112
|
+
|
|
113
|
+
It is not unverified work, though: the arm-by-arm live verification was done before merge and
|
|
114
|
+
is recorded on [PR #851](https://github.com/ffroliva/gflow-cli/pull/851), which cites `4
|
|
115
|
+
passed` on the live zero-credit `e2e_auth` suite against a real profile. This release re-ran
|
|
116
|
+
that same suite on the release head and got the same result.
|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+
## 3. `gflow update` detects a half-replaced install (#848) — VERIFIED
|
|
121
|
+
|
|
122
|
+
No Flow surface; this is local package management. The load-bearing new logic is
|
|
123
|
+
`update_check._import_failure`, which asks a **fresh, isolated interpreter** (`-I`) whether
|
|
124
|
+
the installed package still imports — because `_version_in_venv` reads `*.dist-info` and never
|
|
125
|
+
touches the modules the next command will import.
|
|
126
|
+
|
|
127
|
+
Exercised on the release head against two real venvs, one deliberately broken by deleting an
|
|
128
|
+
installed module:
|
|
129
|
+
|
|
130
|
+
```
|
|
131
|
+
intact venv (0.77.0) rc=0 -> importable
|
|
132
|
+
half-replaced venv rc=1 -> ModuleNotFoundError: No module named 'gflow_cli.observability'
|
|
133
|
+
_import_failure() here -> None
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
All three arms matter. The third is the safety contract in the docstring: a probe that cannot
|
|
137
|
+
run must return `None`, so *an environment we failed to ask about is never reported as a
|
|
138
|
+
broken one*.
|
|
139
|
+
|
|
140
|
+
Also confirmed on a real PyPI install (`pip install gflow-cli==0.77.0`), which is the shape
|
|
141
|
+
`gflow update` actually manages:
|
|
142
|
+
|
|
143
|
+
```
|
|
144
|
+
$ gflow update --check
|
|
145
|
+
{"installer": "pip", "event": "update.installer_detected", "cli_version": "0.77.0"}
|
|
146
|
+
gflow-cli 0.77.0 is up to date.
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
And that a source checkout is still refused rather than half-managed — exit 11,
|
|
150
|
+
`ConfigurationError`, with the reinstall hint.
|
|
151
|
+
|
|
152
|
+
---
|
|
153
|
+
|
|
154
|
+
## 4. Migrated-host address scan is linear (#852) — VERIFIED
|
|
155
|
+
|
|
156
|
+
No Flow surface of its own; it is the scan inside `auth/verification.py`'s migrated-host
|
|
157
|
+
probe. Measured on the release head, against the base64-shaped input that produced the
|
|
158
|
+
original blow-up (the character class covers the whole URL-safe base64 alphabet, which a
|
|
159
|
+
Google page is full of):
|
|
160
|
+
|
|
161
|
+
| input | v0.77.0 (measured on #852) | v0.77.1 (measured here) |
|
|
162
|
+
|---|---|---|
|
|
163
|
+
| 5 000 chars | 0.12 s | 0.014 ms |
|
|
164
|
+
| 10 000 chars | 0.48 s | 0.004 ms |
|
|
165
|
+
| 20 000 chars | 2.00 s | 0.005 ms |
|
|
166
|
+
| 40 000 chars | **12.07 s** | **0.020 ms** |
|
|
167
|
+
| 440 000 chars | — (not attempted) | 0.113 ms |
|
|
168
|
+
|
|
169
|
+
Output is unchanged for every address shape, including the Workspace and custom domains #791
|
|
170
|
+
turned on:
|
|
171
|
+
|
|
172
|
+
```
|
|
173
|
+
find_emails("contact ffroliva@gmail.com and flavio.oliva@riskcontrollimited.co.uk here")
|
|
174
|
+
-> ['ffroliva@gmail.com', 'flavio.oliva@riskcontrollimited.co.uk']
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
The live half is covered by item 2: the same `e2e_auth` run executes `find_emails` over an
|
|
178
|
+
actual `myaccount.google.com` response.
|
|
179
|
+
|
|
180
|
+
---
|
|
181
|
+
|
|
182
|
+
## What else ran, and what failed
|
|
183
|
+
|
|
184
|
+
The full `-m e2e_auth` sweep against the live `ffroliva` profile was **39 passed, 7 failed, 12
|
|
185
|
+
skipped**. The 7 failures are recorded here rather than omitted, with the reason they do not
|
|
186
|
+
gate this release:
|
|
187
|
+
|
|
188
|
+
```
|
|
189
|
+
test_aisandbox_auth_live.py::test_rest_upload_image_authenticates_after_sapisidhash
|
|
190
|
+
test_credits_e2e.py::test_credits_http_fast_path_live
|
|
191
|
+
test_credits_mcp_e2e.py::test_mcp_get_credits_returns_a_real_balance_for_one_profile
|
|
192
|
+
test_credits_mcp_e2e.py::test_mcp_get_credits_all_profiles_preserves_partial_results
|
|
193
|
+
test_incident_quality_e2e.py::test_incident_bundle_diagnostic_quality
|
|
194
|
+
test_transports_e2e.py::test_e2e_agent_mode_recovered_before_mode_switch
|
|
195
|
+
test_transports_e2e.py::test_e2e_agent_chat_panel_recovered_before_mode_switch
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
All seven raise `AuthExpiredError` from `_common.py:321` — Flow serving an
|
|
199
|
+
`accounts.google.com` sign-in route instead of the gallery, i.e. account/session state on this
|
|
200
|
+
workstation (the lost `ya29` Bearer and the `/about`-state profile already on record), not
|
|
201
|
+
code.
|
|
202
|
+
|
|
203
|
+
**That claim was controlled, not assumed.** `git diff --name-only v0.77.0..HEAD -- src/`
|
|
204
|
+
returns exactly four files — `auth/internal_chromium.py`, `auth/real_chrome.py`,
|
|
205
|
+
`auth/verification.py`, `update_check.py`. **None** of the seven failing tests' modules changed
|
|
206
|
+
in this release, and the one changed Flow-surface module (`auth/verification.py`) is covered by
|
|
207
|
+
the 4/4 that passed. The #846 fix itself changes no runtime source at all: its diff is
|
|
208
|
+
`pyproject.toml`, `uv.lock`, `CHANGELOG.md` and one test.
|
|
209
|
+
|
|
210
|
+
These failures are a real gap in what this workstation can verify, and they are not new with
|
|
211
|
+
this release. They are tracked with the profile-state issues already open.
|
|
212
|
+
|
|
213
|
+
---
|
|
214
|
+
|
|
215
|
+
## Offline gates (for completeness — these are not live verification)
|
|
216
|
+
|
|
217
|
+
- Impeccable Routine: hygiene, doc links, website-docs PII, website-docs mirror, council
|
|
218
|
+
memory, `ruff check`, `ruff format --check`, `pyright src` (0 errors) — all green.
|
|
219
|
+
- Offline suite: **4477 passed, 24 skipped**.
|
|
220
|
+
- PR [#857](https://github.com/ffroliva/gflow-cli/pull/857): 16/16 CI checks green, including
|
|
221
|
+
SonarCloud and the `Dependency resolution drift (no lockfile)` job that installs from the
|
|
222
|
+
declared ranges rather than the lockfile — the job that would have caught #846 had colorama
|
|
223
|
+
ever been declared wrongly.
|