modulatio 0.9.4__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.
- modulatio-0.9.4/.github/ISSUE_TEMPLATE/bug.yml +120 -0
- modulatio-0.9.4/.github/ISSUE_TEMPLATE/config.yml +5 -0
- modulatio-0.9.4/.github/ISSUE_TEMPLATE/feature.yml +58 -0
- modulatio-0.9.4/.github/ISSUE_TEMPLATE/regression.yml +113 -0
- modulatio-0.9.4/.github/workflows/install-smoke.yml +39 -0
- modulatio-0.9.4/.gitignore +35 -0
- modulatio-0.9.4/CHANGELOG.md +1186 -0
- modulatio-0.9.4/CONTRIBUTING.md +201 -0
- modulatio-0.9.4/LICENSE +202 -0
- modulatio-0.9.4/NOTICE +15 -0
- modulatio-0.9.4/PKG-INFO +131 -0
- modulatio-0.9.4/README.md +91 -0
- modulatio-0.9.4/SECURITY.md +198 -0
- modulatio-0.9.4/_tui_mockup/AUDIT-RECONCILED.md +152 -0
- modulatio-0.9.4/_tui_mockup/AUDIT.md +235 -0
- modulatio-0.9.4/_tui_mockup/BRIEF.md +67 -0
- modulatio-0.9.4/_tui_mockup/artifacts_mockup.py +338 -0
- modulatio-0.9.4/_tui_mockup/config_agents_mockup.py +381 -0
- modulatio-0.9.4/_tui_mockup/config_models_mockup.py +844 -0
- modulatio-0.9.4/_tui_mockup/console_mockup.py +316 -0
- modulatio-0.9.4/_tui_mockup/cron_mockup.py +329 -0
- modulatio-0.9.4/_tui_mockup/docs_mockup.py +320 -0
- modulatio-0.9.4/_tui_mockup/jobs_mockup.py +354 -0
- modulatio-0.9.4/_tui_mockup/jt_library_mockup.py +348 -0
- modulatio-0.9.4/_tui_mockup/logs_mockup.py +368 -0
- modulatio-0.9.4/_tui_mockup/memory_mockup.py +367 -0
- modulatio-0.9.4/_tui_mockup/skills_mockup.py +327 -0
- modulatio-0.9.4/_tui_mockup/splash_mockup.py +142 -0
- modulatio-0.9.4/_tui_mockup/tickets_mockup.py +286 -0
- modulatio-0.9.4/bin/modulatio-tui +16 -0
- modulatio-0.9.4/docs/design/0.9.0-flaky-thread-warning.md +102 -0
- modulatio-0.9.4/docs/design/0.9.0-preship-sweep-findings.md +192 -0
- modulatio-0.9.4/docs/design/0.9.0-refiled-findings.md +320 -0
- modulatio-0.9.4/docs/design/assembly-architecture-review-brief.md +117 -0
- modulatio-0.9.4/docs/design/code-media-deterministic-validation.md +320 -0
- modulatio-0.9.4/docs/design/codify-the-win.md +420 -0
- modulatio-0.9.4/docs/design/constraint-lifecycle-hero-findings.md +317 -0
- modulatio-0.9.4/docs/design/constraint-lifecycle-review-brief.md +108 -0
- modulatio-0.9.4/docs/design/deliverable-fidelity-arc.md +264 -0
- modulatio-0.9.4/docs/design/deterministic-assembly-arc.md +227 -0
- modulatio-0.9.4/docs/design/jt-generativity.md +297 -0
- modulatio-0.9.4/docs/design/leader-self-remediation.md +270 -0
- modulatio-0.9.4/docs/design/media-and-metered-tier.md +103 -0
- modulatio-0.9.4/docs/design/operator-permissions-and-autonomy.md +207 -0
- modulatio-0.9.4/docs/design/parallel-execution.md +80 -0
- modulatio-0.9.4/docs/design/permissions-gate-reconciliation.md +130 -0
- modulatio-0.9.4/docs/design/permissions-section-2-plan.md +123 -0
- modulatio-0.9.4/docs/design/redo-wave-routing.md +80 -0
- modulatio-0.9.4/docs/design/review-ledger-and-familial-assemblers.md +238 -0
- modulatio-0.9.4/docs/design/security-audit-followups.md +315 -0
- modulatio-0.9.4/docs/design/skill-library.md +100 -0
- modulatio-0.9.4/docs/reviews/0.9.0-wildbill-verdict.md +104 -0
- modulatio-0.9.4/pyproject.toml +97 -0
- modulatio-0.9.4/scripts/eval/compression-evidence/run_evidence.py +483 -0
- modulatio-0.9.4/scripts/eval/compression-evidence/workloads.py +216 -0
- modulatio-0.9.4/scripts/eval/concurrency-evidence/run_concurrency_evidence.py +202 -0
- modulatio-0.9.4/scripts/smoke/81-hero-code-review/hero81_leak_check.py +57 -0
- modulatio-0.9.4/scripts/smoke/ab-verdict-quality/ab_harness.py +438 -0
- modulatio-0.9.4/scripts/smoke/acp/client.py +111 -0
- modulatio-0.9.4/scripts/smoke/acp/smoke.py +73 -0
- modulatio-0.9.4/scripts/smoke/assembly-arc/smoke.py +109 -0
- modulatio-0.9.4/scripts/smoke/deliverable-fidelity/fidelity_smoke.py +130 -0
- modulatio-0.9.4/scripts/smoke/flake91/RUNME.md +23 -0
- modulatio-0.9.4/scripts/smoke/flake91/shuffle_plugin.py +23 -0
- modulatio-0.9.4/scripts/smoke/goal-state-compression/goal_state_compression.py +426 -0
- modulatio-0.9.4/scripts/smoke/iteration-mode/README.md +20 -0
- modulatio-0.9.4/scripts/smoke/iteration-mode/smoke_delivery_bundle.py +47 -0
- modulatio-0.9.4/scripts/smoke/iteration-mode/smoke_patch_preserves.py +38 -0
- modulatio-0.9.4/scripts/smoke/iteration-mode/smoke_read_toolkit.py +35 -0
- modulatio-0.9.4/scripts/smoke/job-templates/smoke_jt_brick1a.py +111 -0
- modulatio-0.9.4/scripts/smoke/job-templates/smoke_jt_brick1b.py +105 -0
- modulatio-0.9.4/scripts/smoke/job-templates/smoke_jt_brick2.py +137 -0
- modulatio-0.9.4/scripts/smoke/job-templates/smoke_jt_brick3.py +109 -0
- modulatio-0.9.4/scripts/smoke/job-templates/smoke_jt_brick4.py +152 -0
- modulatio-0.9.4/scripts/smoke/operator-presence/live_proof.py +268 -0
- modulatio-0.9.4/scripts/smoke/per-job-folders/smoke_per_job_folders.py +98 -0
- modulatio-0.9.4/scripts/smoke/per-role-budgets/per_role_budgets.py +272 -0
- modulatio-0.9.4/scripts/smoke/prebeta_engine/.gitignore +2 -0
- modulatio-0.9.4/scripts/smoke/prebeta_engine/engine_smoke.py +400 -0
- modulatio-0.9.4/scripts/smoke/qc-thesis/README.md +29 -0
- modulatio-0.9.4/scripts/smoke/qc-thesis/smoke_overflow_cures.py +36 -0
- modulatio-0.9.4/scripts/smoke/qc-thesis/smoke_verify_goal_wall.py +41 -0
- modulatio-0.9.4/scripts/smoke/routing-reality/live_proof.py +162 -0
- modulatio-0.9.4/scripts/smoke/skill-library/smoke_codification_brick4.py +156 -0
- modulatio-0.9.4/scripts/smoke/skill-library/smoke_keystone_brick3.py +108 -0
- modulatio-0.9.4/scripts/smoke/skill-library/smoke_model_capabilities_brick2.py +101 -0
- modulatio-0.9.4/scripts/smoke/skill-library/smoke_skill_library_brick1.py +77 -0
- modulatio-0.9.4/scripts/smoke/sparse-inboxes/sparse_inboxes.py +327 -0
- modulatio-0.9.4/scripts/smoke/step0/README.md +90 -0
- modulatio-0.9.4/scripts/smoke/step0/faq.py +356 -0
- modulatio-0.9.4/scripts/smoke/step0/h1_repro.py +95 -0
- modulatio-0.9.4/scripts/smoke/step0/haiku.py +231 -0
- modulatio-0.9.4/scripts/smoke/web-search/README.md +15 -0
- modulatio-0.9.4/scripts/smoke/web-search/smoke_credibility.py +30 -0
- modulatio-0.9.4/scripts/smoke/web-search/smoke_redo_invariant.py +47 -0
- modulatio-0.9.4/scripts/smoke/web-search/smoke_web_search_brick.py +35 -0
- modulatio-0.9.4/scripts/smoke-test.sh +124 -0
- modulatio-0.9.4/src/modulatio/__init__.py +3 -0
- modulatio-0.9.4/src/modulatio/_crash.py +257 -0
- modulatio-0.9.4/src/modulatio/_seed_constitution/constitution.md +46 -0
- modulatio-0.9.4/src/modulatio/_seed_data/oauth_model_picklists.json +12 -0
- modulatio-0.9.4/src/modulatio/_seed_job_templates/jt-create.md +72 -0
- modulatio-0.9.4/src/modulatio/_seed_qc_persona/persona.md +35 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/code-assembly.md +54 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/code-review.md +106 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/coding-diff.md +80 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/coding.md +116 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/consolidation.md +123 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/continuity-check.md +114 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/data-assembly.md +53 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/document-assembly.md +122 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/drafter-edit.md +75 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/drafter-patch.md +72 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/drafter-revise.md +72 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/drafter.md +89 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/leader-converse.md +106 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/leader-iterate.md +155 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/leader-plan-approve.md +76 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/leader-plan.md +148 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/leader-reflect.md +262 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/leader-runbook.md +44 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/leader-verify.md +107 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/leader.md +67 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/long-form.md +73 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/media-assembly.md +59 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/qc.md +173 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/researcher.md +62 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/rigorous-sourcing.md +55 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/skill-create.md +62 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/task-plan.md +191 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/web-search.md +33 -0
- modulatio-0.9.4/src/modulatio/_seed_skills/win-codify.md +57 -0
- modulatio-0.9.4/src/modulatio/_seed_standards/audio.md +29 -0
- modulatio-0.9.4/src/modulatio/_seed_standards/code.md +32 -0
- modulatio-0.9.4/src/modulatio/_seed_standards/data.md +31 -0
- modulatio-0.9.4/src/modulatio/_seed_standards/image.md +29 -0
- modulatio-0.9.4/src/modulatio/_seed_standards/marketing.md +21 -0
- modulatio-0.9.4/src/modulatio/_seed_standards/research.md +37 -0
- modulatio-0.9.4/src/modulatio/_seed_standards/text.md +24 -0
- modulatio-0.9.4/src/modulatio/_seed_standards/video.md +30 -0
- modulatio-0.9.4/src/modulatio/ab_harness.py +2231 -0
- modulatio-0.9.4/src/modulatio/acp/__init__.py +11 -0
- modulatio-0.9.4/src/modulatio/acp/jsonrpc.py +153 -0
- modulatio-0.9.4/src/modulatio/acp/server.py +425 -0
- modulatio-0.9.4/src/modulatio/acp/session.py +145 -0
- modulatio-0.9.4/src/modulatio/assembly.py +1502 -0
- modulatio-0.9.4/src/modulatio/assembly_validate.py +546 -0
- modulatio-0.9.4/src/modulatio/attachments.py +149 -0
- modulatio-0.9.4/src/modulatio/auth_alerts.py +377 -0
- modulatio-0.9.4/src/modulatio/auth_strategies.py +368 -0
- modulatio-0.9.4/src/modulatio/backup.py +453 -0
- modulatio-0.9.4/src/modulatio/budget.py +219 -0
- modulatio-0.9.4/src/modulatio/bug_report.py +119 -0
- modulatio-0.9.4/src/modulatio/chat.py +248 -0
- modulatio-0.9.4/src/modulatio/cli.py +1725 -0
- modulatio-0.9.4/src/modulatio/cli_memory.py +145 -0
- modulatio-0.9.4/src/modulatio/cli_standards.py +136 -0
- modulatio-0.9.4/src/modulatio/clipboard.py +65 -0
- modulatio-0.9.4/src/modulatio/compression.py +1646 -0
- modulatio-0.9.4/src/modulatio/comptroller.py +598 -0
- modulatio-0.9.4/src/modulatio/config.py +486 -0
- modulatio-0.9.4/src/modulatio/constitution.py +73 -0
- modulatio-0.9.4/src/modulatio/context_budget.py +1392 -0
- modulatio-0.9.4/src/modulatio/cron.py +625 -0
- modulatio-0.9.4/src/modulatio/daemon.py +615 -0
- modulatio-0.9.4/src/modulatio/delivery.py +622 -0
- modulatio-0.9.4/src/modulatio/design_intent.py +115 -0
- modulatio-0.9.4/src/modulatio/diagnostics.py +99 -0
- modulatio-0.9.4/src/modulatio/dispatch.py +678 -0
- modulatio-0.9.4/src/modulatio/dispatch_breaker.py +282 -0
- modulatio-0.9.4/src/modulatio/export.py +147 -0
- modulatio-0.9.4/src/modulatio/families.py +214 -0
- modulatio-0.9.4/src/modulatio/heartbeat.py +793 -0
- modulatio-0.9.4/src/modulatio/inboxes.py +1793 -0
- modulatio-0.9.4/src/modulatio/job_template_library.py +137 -0
- modulatio-0.9.4/src/modulatio/job_templates.py +532 -0
- modulatio-0.9.4/src/modulatio/kickoff_history.py +186 -0
- modulatio-0.9.4/src/modulatio/leader_gate.py +310 -0
- modulatio-0.9.4/src/modulatio/leader_permissions.py +215 -0
- modulatio-0.9.4/src/modulatio/lessons.py +95 -0
- modulatio-0.9.4/src/modulatio/logstore.py +400 -0
- modulatio-0.9.4/src/modulatio/memory/__init__.py +25 -0
- modulatio-0.9.4/src/modulatio/memory/agent_memory.py +388 -0
- modulatio-0.9.4/src/modulatio/memory/team_memory.py +669 -0
- modulatio-0.9.4/src/modulatio/metered.py +211 -0
- modulatio-0.9.4/src/modulatio/model_capabilities.py +209 -0
- modulatio-0.9.4/src/modulatio/model_presets.py +254 -0
- modulatio-0.9.4/src/modulatio/multimodal.py +200 -0
- modulatio-0.9.4/src/modulatio/oauth_helpers.py +218 -0
- modulatio-0.9.4/src/modulatio/oauth_refresh.py +499 -0
- modulatio-0.9.4/src/modulatio/operation_bars.py +109 -0
- modulatio-0.9.4/src/modulatio/operation_cards.py +110 -0
- modulatio-0.9.4/src/modulatio/orchestration.py +14021 -0
- modulatio-0.9.4/src/modulatio/permissions.py +479 -0
- modulatio-0.9.4/src/modulatio/plans.py +1111 -0
- modulatio-0.9.4/src/modulatio/preferences.py +65 -0
- modulatio-0.9.4/src/modulatio/project_execution.py +2024 -0
- modulatio-0.9.4/src/modulatio/provider_catalog.py +729 -0
- modulatio-0.9.4/src/modulatio/provider_keys.py +250 -0
- modulatio-0.9.4/src/modulatio/qc_history.py +419 -0
- modulatio-0.9.4/src/modulatio/qc_notes.py +65 -0
- modulatio-0.9.4/src/modulatio/qc_persona.py +74 -0
- modulatio-0.9.4/src/modulatio/recoveries.py +457 -0
- modulatio-0.9.4/src/modulatio/repo_map.py +380 -0
- modulatio-0.9.4/src/modulatio/research.py +211 -0
- modulatio-0.9.4/src/modulatio/review_ledger.py +355 -0
- modulatio-0.9.4/src/modulatio/roster.py +619 -0
- modulatio-0.9.4/src/modulatio/runners.py +1440 -0
- modulatio-0.9.4/src/modulatio/sandbox.py +568 -0
- modulatio-0.9.4/src/modulatio/semantic_router.py +469 -0
- modulatio-0.9.4/src/modulatio/setup_state.py +75 -0
- modulatio-0.9.4/src/modulatio/setup_wizard/__init__.py +444 -0
- modulatio-0.9.4/src/modulatio/setup_wizard/agent_step.py +492 -0
- modulatio-0.9.4/src/modulatio/setup_wizard/budget_step.py +196 -0
- modulatio-0.9.4/src/modulatio/setup_wizard/clipboard_step.py +144 -0
- modulatio-0.9.4/src/modulatio/setup_wizard/embedded_llm_step.py +186 -0
- modulatio-0.9.4/src/modulatio/setup_wizard/finalize.py +271 -0
- modulatio-0.9.4/src/modulatio/setup_wizard/first_project_step.py +74 -0
- modulatio-0.9.4/src/modulatio/setup_wizard/pandoc_step.py +187 -0
- modulatio-0.9.4/src/modulatio/setup_wizard/provider_step.py +720 -0
- modulatio-0.9.4/src/modulatio/setup_wizard/steps.py +253 -0
- modulatio-0.9.4/src/modulatio/setup_wizard/vault_path_step.py +81 -0
- modulatio-0.9.4/src/modulatio/skill_git.py +108 -0
- modulatio-0.9.4/src/modulatio/skill_library.py +160 -0
- modulatio-0.9.4/src/modulatio/skills.py +513 -0
- modulatio-0.9.4/src/modulatio/standards.py +265 -0
- modulatio-0.9.4/src/modulatio/standards_proposals.py +248 -0
- modulatio-0.9.4/src/modulatio/store.py +802 -0
- modulatio-0.9.4/src/modulatio/team_canvas.py +203 -0
- modulatio-0.9.4/src/modulatio/team_state.py +542 -0
- modulatio-0.9.4/src/modulatio/telegram_listener.py +584 -0
- modulatio-0.9.4/src/modulatio/telegram_notify.py +469 -0
- modulatio-0.9.4/src/modulatio/templates/__init__.py +199 -0
- modulatio-0.9.4/src/modulatio/templates/analyst.md +15 -0
- modulatio-0.9.4/src/modulatio/templates/coder.md +15 -0
- modulatio-0.9.4/src/modulatio/templates/editor.md +15 -0
- modulatio-0.9.4/src/modulatio/templates/leader.md +15 -0
- modulatio-0.9.4/src/modulatio/templates/marketer.md +15 -0
- modulatio-0.9.4/src/modulatio/templates/qa-engineer.md +15 -0
- modulatio-0.9.4/src/modulatio/templates/qc.md +15 -0
- modulatio-0.9.4/src/modulatio/templates/researcher.md +15 -0
- modulatio-0.9.4/src/modulatio/templates/writer.md +13 -0
- modulatio-0.9.4/src/modulatio/theme.py +326 -0
- modulatio-0.9.4/src/modulatio/tool_summarization.py +451 -0
- modulatio-0.9.4/src/modulatio/tools.py +2177 -0
- modulatio-0.9.4/src/modulatio/tui/__init__.py +13 -0
- modulatio-0.9.4/src/modulatio/tui/app.py +1529 -0
- modulatio-0.9.4/src/modulatio/tui/command_palette.py +96 -0
- modulatio-0.9.4/src/modulatio/tui/commands.py +428 -0
- modulatio-0.9.4/src/modulatio/tui/feng_theme.py +88 -0
- modulatio-0.9.4/src/modulatio/tui/leader_prompt.py +61 -0
- modulatio-0.9.4/src/modulatio/tui/screens/__init__.py +3 -0
- modulatio-0.9.4/src/modulatio/tui/screens/agent_builder.py +245 -0
- modulatio-0.9.4/src/modulatio/tui/screens/agents.py +76 -0
- modulatio-0.9.4/src/modulatio/tui/screens/artifacts.py +246 -0
- modulatio-0.9.4/src/modulatio/tui/screens/configuration.py +455 -0
- modulatio-0.9.4/src/modulatio/tui/screens/cron.py +218 -0
- modulatio-0.9.4/src/modulatio/tui/screens/jt_library.py +192 -0
- modulatio-0.9.4/src/modulatio/tui/screens/logs.py +168 -0
- modulatio-0.9.4/src/modulatio/tui/screens/memory.py +279 -0
- modulatio-0.9.4/src/modulatio/tui/screens/models.py +138 -0
- modulatio-0.9.4/src/modulatio/tui/screens/prompt.py +446 -0
- modulatio-0.9.4/src/modulatio/tui/screens/skills.py +144 -0
- modulatio-0.9.4/src/modulatio/tui/screens/splash.py +191 -0
- modulatio-0.9.4/src/modulatio/tui/screens/tickets.py +232 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/__init__.py +3 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/activity_log.py +69 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/agent_pane_panel.py +596 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/agent_wizard.py +154 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/approval_badge.py +35 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/attach_modal.py +92 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/auth_step.py +214 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/bug_report_modal.py +111 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/chat_input.py +47 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/chat_panel.py +45 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/confirm_modal.py +70 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/export_dialog.py +141 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/file_picker.py +59 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/indicator_panel.py +150 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/leader_approval_modal.py +94 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/master_detail.py +63 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/model_picker.py +169 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/model_wizard.py +115 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/provider_picker.py +110 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/send_log_modal.py +127 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/skill_wizard.py +166 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/stream_status.py +185 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/stream_view.py +286 -0
- modulatio-0.9.4/src/modulatio/tui/widgets/ticket_row.py +32 -0
- modulatio-0.9.4/src/modulatio/types.py +718 -0
- modulatio-0.9.4/src/modulatio/vault.py +464 -0
- modulatio-0.9.4/tests/_thread_check.py +42 -0
- modulatio-0.9.4/tests/conftest.py +40 -0
- modulatio-0.9.4/tests/test_ab_harness.py +1139 -0
- modulatio-0.9.4/tests/test_ab_harness_low_audit.py +199 -0
- modulatio-0.9.4/tests/test_acp_jsonrpc.py +68 -0
- modulatio-0.9.4/tests/test_acp_server.py +415 -0
- modulatio-0.9.4/tests/test_acp_server_low_audit.py +141 -0
- modulatio-0.9.4/tests/test_acp_server_preship.py +131 -0
- modulatio-0.9.4/tests/test_acp_server_resweep_r3.py +58 -0
- modulatio-0.9.4/tests/test_acp_session_resweep.py +158 -0
- modulatio-0.9.4/tests/test_activity.py +230 -0
- modulatio-0.9.4/tests/test_add_apis.py +288 -0
- modulatio-0.9.4/tests/test_agent_memory.py +150 -0
- modulatio-0.9.4/tests/test_agnostic_size_gates.py +106 -0
- modulatio-0.9.4/tests/test_approval.py +875 -0
- modulatio-0.9.4/tests/test_assembler_wiring.py +144 -0
- modulatio-0.9.4/tests/test_assembly.py +909 -0
- modulatio-0.9.4/tests/test_assembly_low_audit.py +42 -0
- modulatio-0.9.4/tests/test_assembly_preship.py +130 -0
- modulatio-0.9.4/tests/test_assembly_r2_audit.py +130 -0
- modulatio-0.9.4/tests/test_assembly_resweep.py +81 -0
- modulatio-0.9.4/tests/test_assembly_resweep_r3.py +169 -0
- modulatio-0.9.4/tests/test_assembly_validate.py +539 -0
- modulatio-0.9.4/tests/test_attachments.py +125 -0
- modulatio-0.9.4/tests/test_auth_alerts.py +214 -0
- modulatio-0.9.4/tests/test_auth_alerts_resweep_r3.py +164 -0
- modulatio-0.9.4/tests/test_auth_strategies.py +294 -0
- modulatio-0.9.4/tests/test_backup.py +339 -0
- modulatio-0.9.4/tests/test_backup_r2_audit.py +147 -0
- modulatio-0.9.4/tests/test_backup_resweep_r4.py +107 -0
- modulatio-0.9.4/tests/test_budget.py +248 -0
- modulatio-0.9.4/tests/test_budget_resweep.py +102 -0
- modulatio-0.9.4/tests/test_bug_report.py +74 -0
- modulatio-0.9.4/tests/test_cadre_reservations.py +61 -0
- modulatio-0.9.4/tests/test_chat.py +289 -0
- modulatio-0.9.4/tests/test_cli.py +209 -0
- modulatio-0.9.4/tests/test_cli_logs.py +125 -0
- modulatio-0.9.4/tests/test_cli_low_audit.py +121 -0
- modulatio-0.9.4/tests/test_cli_memory.py +208 -0
- modulatio-0.9.4/tests/test_cli_preship.py +102 -0
- modulatio-0.9.4/tests/test_cli_project.py +229 -0
- modulatio-0.9.4/tests/test_cli_r2_audit.py +123 -0
- modulatio-0.9.4/tests/test_cli_resweep.py +70 -0
- modulatio-0.9.4/tests/test_cli_resweep_r3.py +81 -0
- modulatio-0.9.4/tests/test_cli_standards.py +144 -0
- modulatio-0.9.4/tests/test_cli_standards_preship.py +100 -0
- modulatio-0.9.4/tests/test_cli_standards_resweep_r4.py +79 -0
- modulatio-0.9.4/tests/test_cli_subcommands.py +410 -0
- modulatio-0.9.4/tests/test_clipboard.py +58 -0
- modulatio-0.9.4/tests/test_clipboard_step.py +47 -0
- modulatio-0.9.4/tests/test_command_palette.py +142 -0
- modulatio-0.9.4/tests/test_compression.py +1210 -0
- modulatio-0.9.4/tests/test_compression_low_audit.py +184 -0
- modulatio-0.9.4/tests/test_compression_preship.py +115 -0
- modulatio-0.9.4/tests/test_compression_r2_audit.py +149 -0
- modulatio-0.9.4/tests/test_comptroller.py +351 -0
- modulatio-0.9.4/tests/test_comptroller_low_audit.py +82 -0
- modulatio-0.9.4/tests/test_comptroller_preship.py +190 -0
- modulatio-0.9.4/tests/test_comptroller_r2_audit.py +127 -0
- modulatio-0.9.4/tests/test_comptroller_resweep_r3.py +90 -0
- modulatio-0.9.4/tests/test_config.py +440 -0
- modulatio-0.9.4/tests/test_config_low_audit.py +63 -0
- modulatio-0.9.4/tests/test_consolidation_skill.py +252 -0
- modulatio-0.9.4/tests/test_constitution.py +71 -0
- modulatio-0.9.4/tests/test_constitution_resweep.py +62 -0
- modulatio-0.9.4/tests/test_context_budget.py +894 -0
- modulatio-0.9.4/tests/test_context_budget_per_role.py +1089 -0
- modulatio-0.9.4/tests/test_context_budget_r2_audit.py +92 -0
- modulatio-0.9.4/tests/test_context_budget_resweep.py +189 -0
- modulatio-0.9.4/tests/test_continuity_check_skill.py +253 -0
- modulatio-0.9.4/tests/test_crash_handler.py +301 -0
- modulatio-0.9.4/tests/test_cron.py +301 -0
- modulatio-0.9.4/tests/test_cron_jt.py +215 -0
- modulatio-0.9.4/tests/test_cron_r2_audit.py +158 -0
- modulatio-0.9.4/tests/test_cron_resweep.py +146 -0
- modulatio-0.9.4/tests/test_cron_resweep_r3.py +248 -0
- modulatio-0.9.4/tests/test_cron_resweep_r4.py +90 -0
- modulatio-0.9.4/tests/test_daemon.py +224 -0
- modulatio-0.9.4/tests/test_daemon_low_audit.py +124 -0
- modulatio-0.9.4/tests/test_daemon_preship.py +104 -0
- modulatio-0.9.4/tests/test_daemon_r2_audit.py +107 -0
- modulatio-0.9.4/tests/test_daemon_resweep.py +102 -0
- modulatio-0.9.4/tests/test_delivery.py +635 -0
- modulatio-0.9.4/tests/test_delivery_preship.py +55 -0
- modulatio-0.9.4/tests/test_delivery_r2_audit.py +81 -0
- modulatio-0.9.4/tests/test_design_intent.py +135 -0
- modulatio-0.9.4/tests/test_diagnostics.py +39 -0
- modulatio-0.9.4/tests/test_diff_mode.py +225 -0
- modulatio-0.9.4/tests/test_dispatch.py +1545 -0
- modulatio-0.9.4/tests/test_dispatch_breaker.py +126 -0
- modulatio-0.9.4/tests/test_dispatch_breaker_family.py +80 -0
- modulatio-0.9.4/tests/test_dispatch_resweep_r3.py +67 -0
- modulatio-0.9.4/tests/test_encoding_read_cluster.py +56 -0
- modulatio-0.9.4/tests/test_error_log_seams.py +57 -0
- modulatio-0.9.4/tests/test_export.py +219 -0
- modulatio-0.9.4/tests/test_extract_json.py +259 -0
- modulatio-0.9.4/tests/test_heartbeat.py +398 -0
- modulatio-0.9.4/tests/test_heartbeat_preship.py +135 -0
- modulatio-0.9.4/tests/test_heartbeat_r2_audit.py +108 -0
- modulatio-0.9.4/tests/test_heartbeat_resweep.py +136 -0
- modulatio-0.9.4/tests/test_heartbeat_resweep_r3.py +182 -0
- modulatio-0.9.4/tests/test_inboxes.py +1119 -0
- modulatio-0.9.4/tests/test_inboxes_low_audit.py +89 -0
- modulatio-0.9.4/tests/test_inboxes_preship.py +258 -0
- modulatio-0.9.4/tests/test_inboxes_r2_audit.py +200 -0
- modulatio-0.9.4/tests/test_inboxes_resweep.py +205 -0
- modulatio-0.9.4/tests/test_inboxes_resweep_r3.py +130 -0
- modulatio-0.9.4/tests/test_inboxes_resweep_r4.py +68 -0
- modulatio-0.9.4/tests/test_job_template_library.py +75 -0
- modulatio-0.9.4/tests/test_job_template_library_low_audit.py +67 -0
- modulatio-0.9.4/tests/test_job_templates.py +308 -0
- modulatio-0.9.4/tests/test_jt_intake.py +482 -0
- modulatio-0.9.4/tests/test_jt_self_codification.py +196 -0
- modulatio-0.9.4/tests/test_jt_wide_wave.py +198 -0
- modulatio-0.9.4/tests/test_kickoff_attachments.py +424 -0
- modulatio-0.9.4/tests/test_kickoff_history.py +139 -0
- modulatio-0.9.4/tests/test_kickoff_vision.py +309 -0
- modulatio-0.9.4/tests/test_leader_converse.py +299 -0
- modulatio-0.9.4/tests/test_leader_gate.py +294 -0
- modulatio-0.9.4/tests/test_leader_iterate.py +466 -0
- modulatio-0.9.4/tests/test_leader_permissions.py +153 -0
- modulatio-0.9.4/tests/test_leader_plan_skill.py +112 -0
- modulatio-0.9.4/tests/test_leader_self_remediation.py +369 -0
- modulatio-0.9.4/tests/test_leader_verify_artifacts.py +283 -0
- modulatio-0.9.4/tests/test_llm_with_tools.py +672 -0
- modulatio-0.9.4/tests/test_logs_remediation.py +102 -0
- modulatio-0.9.4/tests/test_logstore.py +131 -0
- modulatio-0.9.4/tests/test_long_form_skill.py +207 -0
- modulatio-0.9.4/tests/test_memory_agent_memory_preship.py +128 -0
- modulatio-0.9.4/tests/test_memory_agent_memory_r2_audit.py +47 -0
- modulatio-0.9.4/tests/test_memory_agent_memory_resweep_r4.py +124 -0
- modulatio-0.9.4/tests/test_memory_project_scoped.py +38 -0
- modulatio-0.9.4/tests/test_memory_team_memory_low_audit.py +155 -0
- modulatio-0.9.4/tests/test_memory_team_memory_r2_audit.py +133 -0
- modulatio-0.9.4/tests/test_memory_team_memory_resweep.py +135 -0
- modulatio-0.9.4/tests/test_memory_team_memory_resweep_r3.py +99 -0
- modulatio-0.9.4/tests/test_metered_resweep.py +70 -0
- modulatio-0.9.4/tests/test_metered_resweep_r4.py +194 -0
- modulatio-0.9.4/tests/test_metered_tools.py +232 -0
- modulatio-0.9.4/tests/test_model_capabilities.py +255 -0
- modulatio-0.9.4/tests/test_model_capabilities_r2_audit.py +97 -0
- modulatio-0.9.4/tests/test_model_capabilities_resweep.py +65 -0
- modulatio-0.9.4/tests/test_model_picker.py +81 -0
- modulatio-0.9.4/tests/test_model_presets.py +298 -0
- modulatio-0.9.4/tests/test_multimodal.py +261 -0
- modulatio-0.9.4/tests/test_multimodal_r2_audit.py +56 -0
- modulatio-0.9.4/tests/test_nemo_resweep_remediation.py +106 -0
- modulatio-0.9.4/tests/test_oauth_helpers.py +103 -0
- modulatio-0.9.4/tests/test_oauth_refresh.py +303 -0
- modulatio-0.9.4/tests/test_oauth_refresh_low_audit.py +117 -0
- modulatio-0.9.4/tests/test_oauth_refresh_r2_audit.py +138 -0
- modulatio-0.9.4/tests/test_oauth_refresh_resweep.py +188 -0
- modulatio-0.9.4/tests/test_operation_bar_verify.py +89 -0
- modulatio-0.9.4/tests/test_operation_bars.py +100 -0
- modulatio-0.9.4/tests/test_operation_cards.py +65 -0
- modulatio-0.9.4/tests/test_operator_presence.py +193 -0
- modulatio-0.9.4/tests/test_orchestration.py +11008 -0
- modulatio-0.9.4/tests/test_orchestration_context_budget.py +590 -0
- modulatio-0.9.4/tests/test_orchestration_low_audit.py +223 -0
- modulatio-0.9.4/tests/test_orchestration_preship.py +264 -0
- modulatio-0.9.4/tests/test_orchestration_qc_history.py +427 -0
- modulatio-0.9.4/tests/test_orchestration_r2_audit.py +401 -0
- modulatio-0.9.4/tests/test_orchestration_resweep.py +244 -0
- modulatio-0.9.4/tests/test_orchestration_resweep_r3.py +324 -0
- modulatio-0.9.4/tests/test_orchestration_resweep_r4.py +264 -0
- modulatio-0.9.4/tests/test_orchestration_stability_fixes.py +515 -0
- modulatio-0.9.4/tests/test_orchestration_team_memory.py +138 -0
- modulatio-0.9.4/tests/test_paper_trail.py +176 -0
- modulatio-0.9.4/tests/test_permissions.py +426 -0
- modulatio-0.9.4/tests/test_plans.py +953 -0
- modulatio-0.9.4/tests/test_plans_r2_audit.py +289 -0
- modulatio-0.9.4/tests/test_plans_resweep.py +237 -0
- modulatio-0.9.4/tests/test_plans_resweep_r3.py +145 -0
- modulatio-0.9.4/tests/test_preferences.py +52 -0
- modulatio-0.9.4/tests/test_project_execution.py +1997 -0
- modulatio-0.9.4/tests/test_project_execution_low_audit.py +108 -0
- modulatio-0.9.4/tests/test_project_execution_preship.py +308 -0
- modulatio-0.9.4/tests/test_project_execution_r2_audit.py +224 -0
- modulatio-0.9.4/tests/test_project_execution_resweep.py +158 -0
- modulatio-0.9.4/tests/test_project_execution_resweep_r4.py +163 -0
- modulatio-0.9.4/tests/test_provider_catalog.py +504 -0
- modulatio-0.9.4/tests/test_provider_catalog_low_audit.py +66 -0
- modulatio-0.9.4/tests/test_provider_catalog_preship.py +136 -0
- modulatio-0.9.4/tests/test_provider_catalog_r2_audit.py +63 -0
- modulatio-0.9.4/tests/test_provider_catalog_resweep_r3.py +81 -0
- modulatio-0.9.4/tests/test_provider_keys.py +274 -0
- modulatio-0.9.4/tests/test_pyproject_no_unused_deps.py +87 -0
- modulatio-0.9.4/tests/test_qc_history.py +346 -0
- modulatio-0.9.4/tests/test_qc_history_r2_audit.py +144 -0
- modulatio-0.9.4/tests/test_qc_notes.py +128 -0
- modulatio-0.9.4/tests/test_qc_persona.py +75 -0
- modulatio-0.9.4/tests/test_recoveries.py +231 -0
- modulatio-0.9.4/tests/test_recoveries_low_audit.py +87 -0
- modulatio-0.9.4/tests/test_recoveries_r2_audit.py +125 -0
- modulatio-0.9.4/tests/test_repo_map.py +315 -0
- modulatio-0.9.4/tests/test_research.py +147 -0
- modulatio-0.9.4/tests/test_research_resweep_r4.py +140 -0
- modulatio-0.9.4/tests/test_researcher_freshness.py +43 -0
- modulatio-0.9.4/tests/test_review_ledger.py +429 -0
- modulatio-0.9.4/tests/test_review_ledger_r2_audit.py +38 -0
- modulatio-0.9.4/tests/test_review_ledger_resweep_r3.py +97 -0
- modulatio-0.9.4/tests/test_roster.py +529 -0
- modulatio-0.9.4/tests/test_roster_r2_audit.py +81 -0
- modulatio-0.9.4/tests/test_roster_resweep.py +47 -0
- modulatio-0.9.4/tests/test_run_teardown.py +96 -0
- modulatio-0.9.4/tests/test_runners.py +550 -0
- modulatio-0.9.4/tests/test_runners_low_audit.py +89 -0
- modulatio-0.9.4/tests/test_runners_oauth.py +145 -0
- modulatio-0.9.4/tests/test_runners_preship.py +309 -0
- modulatio-0.9.4/tests/test_runners_r2_audit.py +117 -0
- modulatio-0.9.4/tests/test_runners_resweep_r3.py +220 -0
- modulatio-0.9.4/tests/test_runners_resweep_r4.py +128 -0
- modulatio-0.9.4/tests/test_sandbox.py +509 -0
- modulatio-0.9.4/tests/test_sandbox_low_audit.py +38 -0
- modulatio-0.9.4/tests/test_sandbox_resweep.py +90 -0
- modulatio-0.9.4/tests/test_scope_discipline.py +171 -0
- modulatio-0.9.4/tests/test_security_audit.py +560 -0
- modulatio-0.9.4/tests/test_semantic_router.py +296 -0
- modulatio-0.9.4/tests/test_semantic_router_preship.py +164 -0
- modulatio-0.9.4/tests/test_semantic_router_r2_audit.py +51 -0
- modulatio-0.9.4/tests/test_semantic_router_resweep_r3.py +145 -0
- modulatio-0.9.4/tests/test_setup_state.py +52 -0
- modulatio-0.9.4/tests/test_setup_wizard.py +730 -0
- modulatio-0.9.4/tests/test_setup_wizard___init___low_audit.py +86 -0
- modulatio-0.9.4/tests/test_setup_wizard___init___r2_audit.py +191 -0
- modulatio-0.9.4/tests/test_setup_wizard___init___resweep.py +123 -0
- modulatio-0.9.4/tests/test_setup_wizard___init___resweep_r3.py +175 -0
- modulatio-0.9.4/tests/test_setup_wizard___init___resweep_r4.py +162 -0
- modulatio-0.9.4/tests/test_setup_wizard_agent_step_low_audit.py +112 -0
- modulatio-0.9.4/tests/test_setup_wizard_agent_step_preship.py +153 -0
- modulatio-0.9.4/tests/test_setup_wizard_agent_step_r2_audit.py +127 -0
- modulatio-0.9.4/tests/test_setup_wizard_agent_step_resweep.py +115 -0
- modulatio-0.9.4/tests/test_setup_wizard_budget_step_resweep_r3.py +151 -0
- modulatio-0.9.4/tests/test_setup_wizard_embedded_llm_step_r2_audit.py +126 -0
- modulatio-0.9.4/tests/test_setup_wizard_error_log.py +38 -0
- modulatio-0.9.4/tests/test_setup_wizard_finalize_low_audit.py +189 -0
- modulatio-0.9.4/tests/test_setup_wizard_finalize_resweep.py +46 -0
- modulatio-0.9.4/tests/test_setup_wizard_provider_step_low_audit.py +52 -0
- modulatio-0.9.4/tests/test_setup_wizard_provider_step_resweep.py +156 -0
- modulatio-0.9.4/tests/test_setup_wizard_provider_step_resweep_r3.py +71 -0
- modulatio-0.9.4/tests/test_setup_wizard_provider_step_resweep_r4.py +86 -0
- modulatio-0.9.4/tests/test_setup_wizard_steps_resweep.py +138 -0
- modulatio-0.9.4/tests/test_skill_codification.py +521 -0
- modulatio-0.9.4/tests/test_skill_library.py +228 -0
- modulatio-0.9.4/tests/test_skill_library_low_audit.py +24 -0
- modulatio-0.9.4/tests/test_skill_shadow.py +209 -0
- modulatio-0.9.4/tests/test_skills.py +464 -0
- modulatio-0.9.4/tests/test_skills_are_artifact_class_agnostic.py +178 -0
- modulatio-0.9.4/tests/test_skills_passive_profile_drift.py +108 -0
- modulatio-0.9.4/tests/test_skills_r2_audit.py +49 -0
- modulatio-0.9.4/tests/test_skills_resweep_r3.py +81 -0
- modulatio-0.9.4/tests/test_standards.py +272 -0
- modulatio-0.9.4/tests/test_standards_proposals.py +227 -0
- modulatio-0.9.4/tests/test_standards_proposals_preship.py +80 -0
- modulatio-0.9.4/tests/test_standards_proposals_r2_audit.py +73 -0
- modulatio-0.9.4/tests/test_standards_proposals_resweep_r4.py +93 -0
- modulatio-0.9.4/tests/test_standards_r2_audit.py +116 -0
- modulatio-0.9.4/tests/test_standards_resweep_r4.py +106 -0
- modulatio-0.9.4/tests/test_store.py +532 -0
- modulatio-0.9.4/tests/test_store_resweep_r3.py +127 -0
- modulatio-0.9.4/tests/test_strip_code_fences.py +314 -0
- modulatio-0.9.4/tests/test_task_artifacts_binding.py +177 -0
- modulatio-0.9.4/tests/test_team_canvas.py +140 -0
- modulatio-0.9.4/tests/test_team_canvas_r2_audit.py +72 -0
- modulatio-0.9.4/tests/test_team_canvas_resweep_r3.py +70 -0
- modulatio-0.9.4/tests/test_team_memory.py +348 -0
- modulatio-0.9.4/tests/test_team_state.py +451 -0
- modulatio-0.9.4/tests/test_team_state_low_audit.py +103 -0
- modulatio-0.9.4/tests/test_team_state_preship.py +95 -0
- modulatio-0.9.4/tests/test_team_state_r2_audit.py +62 -0
- modulatio-0.9.4/tests/test_team_state_verify_phase.py +325 -0
- modulatio-0.9.4/tests/test_telegram_listener.py +525 -0
- modulatio-0.9.4/tests/test_telegram_notify.py +254 -0
- modulatio-0.9.4/tests/test_telegram_notify_r2_audit.py +114 -0
- modulatio-0.9.4/tests/test_telegram_notify_resweep.py +100 -0
- modulatio-0.9.4/tests/test_telegram_notify_resweep_r3.py +81 -0
- modulatio-0.9.4/tests/test_templates.py +157 -0
- modulatio-0.9.4/tests/test_terse_prose_coordinator.py +241 -0
- modulatio-0.9.4/tests/test_terse_prose_leader_reflect.py +254 -0
- modulatio-0.9.4/tests/test_terse_prose_producer.py +293 -0
- modulatio-0.9.4/tests/test_terse_prose_qc.py +292 -0
- modulatio-0.9.4/tests/test_theme.py +160 -0
- modulatio-0.9.4/tests/test_theme_resweep_r3.py +62 -0
- modulatio-0.9.4/tests/test_ticket_bodies_plain_english.py +142 -0
- modulatio-0.9.4/tests/test_tool_summarization.py +687 -0
- modulatio-0.9.4/tests/test_tool_summarization_resweep.py +150 -0
- modulatio-0.9.4/tests/test_tool_summarization_resweep_r3.py +125 -0
- modulatio-0.9.4/tests/test_tools.py +2024 -0
- modulatio-0.9.4/tests/test_tools_low_audit.py +82 -0
- modulatio-0.9.4/tests/test_tools_preship.py +147 -0
- modulatio-0.9.4/tests/test_tools_r2_audit.py +50 -0
- modulatio-0.9.4/tests/test_tools_resweep.py +77 -0
- modulatio-0.9.4/tests/test_tools_resweep_r3.py +166 -0
- modulatio-0.9.4/tests/test_tools_resweep_r4.py +103 -0
- modulatio-0.9.4/tests/test_tui/__init__.py +0 -0
- modulatio-0.9.4/tests/test_tui/conftest.py +65 -0
- modulatio-0.9.4/tests/test_tui/test_agent_builder.py +159 -0
- modulatio-0.9.4/tests/test_tui/test_app.py +210 -0
- modulatio-0.9.4/tests/test_tui/test_artifacts.py +676 -0
- modulatio-0.9.4/tests/test_tui/test_auth_step.py +150 -0
- modulatio-0.9.4/tests/test_tui/test_bug_report_modal.py +75 -0
- modulatio-0.9.4/tests/test_tui/test_commands.py +218 -0
- modulatio-0.9.4/tests/test_tui/test_configuration.py +270 -0
- modulatio-0.9.4/tests/test_tui/test_cron_tab.py +81 -0
- modulatio-0.9.4/tests/test_tui/test_feng_foundation.py +132 -0
- modulatio-0.9.4/tests/test_tui/test_jt_library.py +98 -0
- modulatio-0.9.4/tests/test_tui/test_kickoff_wiring.py +205 -0
- modulatio-0.9.4/tests/test_tui/test_leader_approval_modal.py +106 -0
- modulatio-0.9.4/tests/test_tui/test_leader_prompt_bridge.py +119 -0
- modulatio-0.9.4/tests/test_tui/test_leader_widen_wiring.py +142 -0
- modulatio-0.9.4/tests/test_tui/test_logs.py +131 -0
- modulatio-0.9.4/tests/test_tui/test_memory_tab.py +104 -0
- modulatio-0.9.4/tests/test_tui/test_model_picker.py +111 -0
- modulatio-0.9.4/tests/test_tui/test_prompt_screen.py +1061 -0
- modulatio-0.9.4/tests/test_tui/test_provider_picker.py +71 -0
- modulatio-0.9.4/tests/test_tui/test_skills_screen.py +252 -0
- modulatio-0.9.4/tests/test_tui/test_splash.py +66 -0
- modulatio-0.9.4/tests/test_tui/test_stream_lanes.py +68 -0
- modulatio-0.9.4/tests/test_tui/test_tickets.py +425 -0
- modulatio-0.9.4/tests/test_tui/test_tui_app_low_audit.py +256 -0
- modulatio-0.9.4/tests/test_tui/test_tui_app_r2_audit.py +214 -0
- modulatio-0.9.4/tests/test_tui/test_tui_app_resweep.py +140 -0
- modulatio-0.9.4/tests/test_tui/test_tui_screens_memory_r2_audit.py +113 -0
- modulatio-0.9.4/tests/test_tui/test_tui_widgets_agent_pane_panel_r2_audit.py +91 -0
- modulatio-0.9.4/tests/test_tui/test_tui_widgets_export_dialog_r2_audit.py +102 -0
- modulatio-0.9.4/tests/test_tui_app_resweep_r3.py +173 -0
- modulatio-0.9.4/tests/test_tui_screens_agents_preship.py +80 -0
- modulatio-0.9.4/tests/test_tui_screens_artifacts_resweep.py +86 -0
- modulatio-0.9.4/tests/test_tui_screens_configuration_preship.py +78 -0
- modulatio-0.9.4/tests/test_tui_screens_configuration_r2_audit.py +112 -0
- modulatio-0.9.4/tests/test_tui_screens_jt_library_preship.py +80 -0
- modulatio-0.9.4/tests/test_tui_screens_models_r2_audit.py +140 -0
- modulatio-0.9.4/tests/test_tui_screens_prompt_preship.py +67 -0
- modulatio-0.9.4/tests/test_tui_screens_prompt_resweep_r3.py +75 -0
- modulatio-0.9.4/tests/test_tui_screens_prompt_resweep_r4.py +125 -0
- modulatio-0.9.4/tests/test_tui_screens_skills_preship.py +75 -0
- modulatio-0.9.4/tests/test_tui_widgets_agent_pane_panel_resweep.py +78 -0
- modulatio-0.9.4/tests/test_tui_widgets_agent_wizard_resweep_r4.py +99 -0
- modulatio-0.9.4/tests/test_tui_widgets_auth_step_resweep.py +86 -0
- modulatio-0.9.4/tests/test_tui_widgets_bug_report_modal_resweep.py +83 -0
- modulatio-0.9.4/tests/test_tui_widgets_model_picker_resweep_r3.py +100 -0
- modulatio-0.9.4/tests/test_tui_widgets_model_wizard_resweep.py +86 -0
- modulatio-0.9.4/tests/test_types_low_audit.py +101 -0
- modulatio-0.9.4/tests/test_types_r2_audit.py +91 -0
- modulatio-0.9.4/tests/test_vault_runs.py +314 -0
- modulatio-0.9.4/tests/test_wizard_context_budget.py +138 -0
- modulatio-0.9.4/tests/test_wizard_pickers.py +83 -0
- modulatio-0.9.4/tests/test_wizard_producer_pool.py +149 -0
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
name: Bug report
|
|
2
|
+
description: Something is broken or behaves incorrectly.
|
|
3
|
+
title: "[bug]: "
|
|
4
|
+
labels: ["bug", "status:triage"]
|
|
5
|
+
body:
|
|
6
|
+
- type: markdown
|
|
7
|
+
attributes:
|
|
8
|
+
value: |
|
|
9
|
+
Thanks for filing a bug. Please fill in the form so the maintainer
|
|
10
|
+
and triage automation can route it. If Modulatio crashed and dumped
|
|
11
|
+
a log to `~/.config/modulatio/crashes/`, paste it into the **Logs**
|
|
12
|
+
field below — the log is auto-redacted for common secret-shaped
|
|
13
|
+
flags but please re-check before pasting.
|
|
14
|
+
|
|
15
|
+
- type: input
|
|
16
|
+
id: modulatio-version
|
|
17
|
+
attributes:
|
|
18
|
+
label: Modulatio version
|
|
19
|
+
description: Output of `pip show modulatio | grep Version` or the tag/SHA you installed from.
|
|
20
|
+
placeholder: e.g. 0.1.0
|
|
21
|
+
validations:
|
|
22
|
+
required: true
|
|
23
|
+
|
|
24
|
+
- type: input
|
|
25
|
+
id: python-version
|
|
26
|
+
attributes:
|
|
27
|
+
label: Python version
|
|
28
|
+
placeholder: e.g. 3.12.3
|
|
29
|
+
validations:
|
|
30
|
+
required: true
|
|
31
|
+
|
|
32
|
+
- type: input
|
|
33
|
+
id: os
|
|
34
|
+
attributes:
|
|
35
|
+
label: OS / platform
|
|
36
|
+
placeholder: e.g. Ubuntu 24.04, macOS 14.5
|
|
37
|
+
validations:
|
|
38
|
+
required: true
|
|
39
|
+
|
|
40
|
+
- type: dropdown
|
|
41
|
+
id: severity
|
|
42
|
+
attributes:
|
|
43
|
+
label: Severity
|
|
44
|
+
description: |
|
|
45
|
+
- **critical**: data loss, security, or fully unusable
|
|
46
|
+
- **high**: major feature broken or wrong
|
|
47
|
+
- **medium**: workaround exists; degraded UX
|
|
48
|
+
- **low**: cosmetic, edge case, or minor polish
|
|
49
|
+
options:
|
|
50
|
+
- critical
|
|
51
|
+
- high
|
|
52
|
+
- medium
|
|
53
|
+
- low
|
|
54
|
+
default: 2
|
|
55
|
+
validations:
|
|
56
|
+
required: true
|
|
57
|
+
|
|
58
|
+
- type: dropdown
|
|
59
|
+
id: component
|
|
60
|
+
attributes:
|
|
61
|
+
label: Component
|
|
62
|
+
options:
|
|
63
|
+
- engine (plan execution, dispatch, daemon, runner)
|
|
64
|
+
- cli (subcommands, argparse, output)
|
|
65
|
+
- tui (terminal UI, panes, F-keys)
|
|
66
|
+
- wizard (first-run / setup)
|
|
67
|
+
- providers (LiteLLM, OAuth, model presets)
|
|
68
|
+
- standards (TQM standards, QC axes)
|
|
69
|
+
- packaging (pyproject, install, wheels)
|
|
70
|
+
- documentation
|
|
71
|
+
- other / unsure
|
|
72
|
+
validations:
|
|
73
|
+
required: true
|
|
74
|
+
|
|
75
|
+
- type: textarea
|
|
76
|
+
id: repro
|
|
77
|
+
attributes:
|
|
78
|
+
label: Reproduction steps
|
|
79
|
+
description: Minimum sequence of commands or actions that triggers the bug.
|
|
80
|
+
placeholder: |
|
|
81
|
+
1. Run `modulatio kickoff --code FOO`
|
|
82
|
+
2. Type "..." at the prompt
|
|
83
|
+
3. Observe ...
|
|
84
|
+
validations:
|
|
85
|
+
required: true
|
|
86
|
+
|
|
87
|
+
- type: textarea
|
|
88
|
+
id: expected
|
|
89
|
+
attributes:
|
|
90
|
+
label: Expected behavior
|
|
91
|
+
validations:
|
|
92
|
+
required: true
|
|
93
|
+
|
|
94
|
+
- type: textarea
|
|
95
|
+
id: actual
|
|
96
|
+
attributes:
|
|
97
|
+
label: Actual behavior
|
|
98
|
+
validations:
|
|
99
|
+
required: true
|
|
100
|
+
|
|
101
|
+
- type: textarea
|
|
102
|
+
id: logs
|
|
103
|
+
attributes:
|
|
104
|
+
label: Logs / crash report
|
|
105
|
+
description: |
|
|
106
|
+
If Modulatio crashed, paste the contents of the most recent file
|
|
107
|
+
in `~/.config/modulatio/crashes/` here. Otherwise paste relevant
|
|
108
|
+
output from stderr or `~/.config/modulatio/daemon.log`.
|
|
109
|
+
The crash log is auto-redacted but please re-check before pasting.
|
|
110
|
+
render: shell
|
|
111
|
+
validations:
|
|
112
|
+
required: false
|
|
113
|
+
|
|
114
|
+
- type: textarea
|
|
115
|
+
id: additional
|
|
116
|
+
attributes:
|
|
117
|
+
label: Additional context
|
|
118
|
+
description: Anything else that might matter — provider/model in use, plan config, recent changes, etc.
|
|
119
|
+
validations:
|
|
120
|
+
required: false
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
name: Feature / enhancement
|
|
2
|
+
description: Propose a new capability or an improvement to an existing one.
|
|
3
|
+
title: "[feature]: "
|
|
4
|
+
labels: ["enhancement", "status:triage"]
|
|
5
|
+
body:
|
|
6
|
+
- type: markdown
|
|
7
|
+
attributes:
|
|
8
|
+
value: |
|
|
9
|
+
Thanks for proposing an enhancement. The fields below help the
|
|
10
|
+
maintainer evaluate fit and avoid scope drift.
|
|
11
|
+
|
|
12
|
+
- type: dropdown
|
|
13
|
+
id: component
|
|
14
|
+
attributes:
|
|
15
|
+
label: Component this would touch
|
|
16
|
+
options:
|
|
17
|
+
- engine
|
|
18
|
+
- cli
|
|
19
|
+
- tui
|
|
20
|
+
- wizard
|
|
21
|
+
- providers
|
|
22
|
+
- standards
|
|
23
|
+
- packaging
|
|
24
|
+
- documentation
|
|
25
|
+
- cross-cutting / unsure
|
|
26
|
+
validations:
|
|
27
|
+
required: true
|
|
28
|
+
|
|
29
|
+
- type: textarea
|
|
30
|
+
id: use-case
|
|
31
|
+
attributes:
|
|
32
|
+
label: Use case
|
|
33
|
+
description: What problem does this solve? What workflow does it enable?
|
|
34
|
+
validations:
|
|
35
|
+
required: true
|
|
36
|
+
|
|
37
|
+
- type: textarea
|
|
38
|
+
id: proposed
|
|
39
|
+
attributes:
|
|
40
|
+
label: Proposed solution
|
|
41
|
+
description: Sketch how it would look — CLI shape, config keys, behavior, etc.
|
|
42
|
+
validations:
|
|
43
|
+
required: true
|
|
44
|
+
|
|
45
|
+
- type: textarea
|
|
46
|
+
id: alternatives
|
|
47
|
+
attributes:
|
|
48
|
+
label: Alternatives considered
|
|
49
|
+
description: Other approaches you weighed and why this one is preferred.
|
|
50
|
+
validations:
|
|
51
|
+
required: false
|
|
52
|
+
|
|
53
|
+
- type: textarea
|
|
54
|
+
id: additional
|
|
55
|
+
attributes:
|
|
56
|
+
label: Additional context
|
|
57
|
+
validations:
|
|
58
|
+
required: false
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
name: Regression report
|
|
2
|
+
description: Worked in a prior version, broken now.
|
|
3
|
+
title: "[regression]: "
|
|
4
|
+
labels: ["bug", "regression", "status:triage"]
|
|
5
|
+
body:
|
|
6
|
+
- type: markdown
|
|
7
|
+
attributes:
|
|
8
|
+
value: |
|
|
9
|
+
Use this template only when the same workflow worked in a prior
|
|
10
|
+
Modulatio version and now fails. For brand-new bugs use the
|
|
11
|
+
regular **Bug report** template instead.
|
|
12
|
+
|
|
13
|
+
- type: input
|
|
14
|
+
id: current-version
|
|
15
|
+
attributes:
|
|
16
|
+
label: Current (broken) version
|
|
17
|
+
placeholder: e.g. 0.1.0
|
|
18
|
+
validations:
|
|
19
|
+
required: true
|
|
20
|
+
|
|
21
|
+
- type: input
|
|
22
|
+
id: last-good-version
|
|
23
|
+
attributes:
|
|
24
|
+
label: Last known good version
|
|
25
|
+
description: Most recent version where this workflow still worked. If you bisected, give the exact tag.
|
|
26
|
+
placeholder: e.g. 0.1.0
|
|
27
|
+
validations:
|
|
28
|
+
required: true
|
|
29
|
+
|
|
30
|
+
- type: input
|
|
31
|
+
id: python-version
|
|
32
|
+
attributes:
|
|
33
|
+
label: Python version
|
|
34
|
+
placeholder: e.g. 3.12.3
|
|
35
|
+
validations:
|
|
36
|
+
required: true
|
|
37
|
+
|
|
38
|
+
- type: input
|
|
39
|
+
id: os
|
|
40
|
+
attributes:
|
|
41
|
+
label: OS / platform
|
|
42
|
+
validations:
|
|
43
|
+
required: true
|
|
44
|
+
|
|
45
|
+
- type: dropdown
|
|
46
|
+
id: severity
|
|
47
|
+
attributes:
|
|
48
|
+
label: Severity
|
|
49
|
+
options:
|
|
50
|
+
- critical
|
|
51
|
+
- high
|
|
52
|
+
- medium
|
|
53
|
+
- low
|
|
54
|
+
default: 1
|
|
55
|
+
validations:
|
|
56
|
+
required: true
|
|
57
|
+
|
|
58
|
+
- type: dropdown
|
|
59
|
+
id: component
|
|
60
|
+
attributes:
|
|
61
|
+
label: Component
|
|
62
|
+
options:
|
|
63
|
+
- engine
|
|
64
|
+
- cli
|
|
65
|
+
- tui
|
|
66
|
+
- wizard
|
|
67
|
+
- providers
|
|
68
|
+
- standards
|
|
69
|
+
- packaging
|
|
70
|
+
- documentation
|
|
71
|
+
- other / unsure
|
|
72
|
+
validations:
|
|
73
|
+
required: true
|
|
74
|
+
|
|
75
|
+
- type: textarea
|
|
76
|
+
id: repro
|
|
77
|
+
attributes:
|
|
78
|
+
label: Reproduction steps
|
|
79
|
+
description: Sequence that worked in the last-good version and now fails.
|
|
80
|
+
validations:
|
|
81
|
+
required: true
|
|
82
|
+
|
|
83
|
+
- type: textarea
|
|
84
|
+
id: working-output
|
|
85
|
+
attributes:
|
|
86
|
+
label: Output on the last-good version
|
|
87
|
+
render: shell
|
|
88
|
+
validations:
|
|
89
|
+
required: false
|
|
90
|
+
|
|
91
|
+
- type: textarea
|
|
92
|
+
id: broken-output
|
|
93
|
+
attributes:
|
|
94
|
+
label: Output on the current (broken) version
|
|
95
|
+
render: shell
|
|
96
|
+
validations:
|
|
97
|
+
required: true
|
|
98
|
+
|
|
99
|
+
- type: textarea
|
|
100
|
+
id: logs
|
|
101
|
+
attributes:
|
|
102
|
+
label: Logs / crash report
|
|
103
|
+
description: Paste from `~/.config/modulatio/crashes/` or `~/.config/modulatio/daemon.log` if relevant.
|
|
104
|
+
render: shell
|
|
105
|
+
validations:
|
|
106
|
+
required: false
|
|
107
|
+
|
|
108
|
+
- type: textarea
|
|
109
|
+
id: additional
|
|
110
|
+
attributes:
|
|
111
|
+
label: Additional context
|
|
112
|
+
validations:
|
|
113
|
+
required: false
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
name: install-smoke
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
push:
|
|
6
|
+
branches: [main]
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
install:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
strategy:
|
|
12
|
+
fail-fast: false
|
|
13
|
+
matrix:
|
|
14
|
+
python-version: ['3.12']
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v4
|
|
17
|
+
|
|
18
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
19
|
+
uses: actions/setup-python@v5
|
|
20
|
+
with:
|
|
21
|
+
python-version: ${{ matrix.python-version }}
|
|
22
|
+
|
|
23
|
+
- name: Install (editable, dev extras)
|
|
24
|
+
run: |
|
|
25
|
+
python -m pip install --upgrade pip
|
|
26
|
+
pip install -e ".[dev]"
|
|
27
|
+
|
|
28
|
+
- name: Smoke import
|
|
29
|
+
run: python -c "import modulatio"
|
|
30
|
+
|
|
31
|
+
- name: Lint (src + tests)
|
|
32
|
+
# Tests are ruff-clean. Run the lint over the whole repo on CI
|
|
33
|
+
# so a regression that re-introduces unused imports /
|
|
34
|
+
# multi-statement lines / `lambda` assigns / unused locals
|
|
35
|
+
# fails the install-smoke job.
|
|
36
|
+
run: ruff check src/ tests/
|
|
37
|
+
|
|
38
|
+
- name: Pytest
|
|
39
|
+
run: pytest -q --tb=no
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
__pycache__/
|
|
2
|
+
*.py[cod]
|
|
3
|
+
*.egg-info/
|
|
4
|
+
.venv/
|
|
5
|
+
.env
|
|
6
|
+
.env.*
|
|
7
|
+
!.env.example
|
|
8
|
+
.pytest_cache/
|
|
9
|
+
.ruff_cache/
|
|
10
|
+
.runs/
|
|
11
|
+
scripts/smoke/*/.vault/
|
|
12
|
+
# Reviewer diff scratch (Nemo/Lovecraft/CC review rounds) — transient, not source.
|
|
13
|
+
scripts/smoke/*/review/
|
|
14
|
+
scripts/smoke/*/review-*/
|
|
15
|
+
# uv lockfile — Modulatio ships via its own install flow + pyproject; the lock
|
|
16
|
+
# is a local dev convenience, deliberately not tracked (matches the released state).
|
|
17
|
+
uv.lock
|
|
18
|
+
*.db
|
|
19
|
+
*.sqlite
|
|
20
|
+
*.sqlite3
|
|
21
|
+
/dist/
|
|
22
|
+
build/
|
|
23
|
+
# mkdocs build output — regenerable, not source-of-truth.
|
|
24
|
+
site/
|
|
25
|
+
# docs/dist/ holds the bundled DOCX + PDF that ship with releases —
|
|
26
|
+
# explicitly NOT ignored. The /dist/ rule above is anchored to repo root
|
|
27
|
+
# so Python build artifacts there don't conflict with this.
|
|
28
|
+
.DS_Store
|
|
29
|
+
scripts/eval/*/.vault/
|
|
30
|
+
.vault/
|
|
31
|
+
scripts/smoke/*/run.log
|
|
32
|
+
/cliftest/
|
|
33
|
+
|
|
34
|
+
# internal reviewer-session logs (hermes/lovecraft stdout) — never published
|
|
35
|
+
scripts/smoke/security-audit/
|