@openlife/cli 1.7.3
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.
- package/INSTALL.md +266 -0
- package/LICENSE +21 -0
- package/README.md +142 -0
- package/bin/openlife.js +3 -0
- package/dist/admin_panel_server.js +66 -0
- package/dist/cli/AgentManager.js +109 -0
- package/dist/cli/AutonomousInstaller.js +134 -0
- package/dist/cli/DreamOrganizer.js +88 -0
- package/dist/cli/HostInstaller.js +426 -0
- package/dist/cli/InstallBanner.js +16 -0
- package/dist/cli/InstallFlow.js +256 -0
- package/dist/cli/InstallHeadless.js +47 -0
- package/dist/cli/InstallModules.js +148 -0
- package/dist/cli/InstallStateStore.js +75 -0
- package/dist/cli/InstallWizard.js +364 -0
- package/dist/cli/ProfileManager.js +163 -0
- package/dist/cli/SystemInstaller.js +89 -0
- package/dist/cli/WorldClassCommands.js +208 -0
- package/dist/design/DesignMdImporter.js +82 -0
- package/dist/design/DesignMdMode.js +93 -0
- package/dist/design/DesignMdRegistry.js +67 -0
- package/dist/index.js +2575 -0
- package/dist/memory/ConversationMemory.js +33 -0
- package/dist/memory/LocalMemoryProvider.js +86 -0
- package/dist/memory/Mem0Provider.js +16 -0
- package/dist/memory/MemoryNamespacePolicy.js +27 -0
- package/dist/memory/MemoryOrchestrator.js +65 -0
- package/dist/memory/MemoryPromotionFlow.js +32 -0
- package/dist/memory/MemoryProvider.js +2 -0
- package/dist/memory/MemoryProviderRegistry.js +27 -0
- package/dist/memory/MemoryRetentionPolicy.js +60 -0
- package/dist/memory/MempalaceProvider.js +72 -0
- package/dist/memory/OmniMemory.js +106 -0
- package/dist/memory/RedisAgentMemoryProvider.js +16 -0
- package/dist/memory/SessionManager.js +86 -0
- package/dist/memory/ZepGraphitiProvider.js +16 -0
- package/dist/orchestrator/AgentRegistry.js +56 -0
- package/dist/orchestrator/AgentScoring.js +82 -0
- package/dist/orchestrator/AgentTeam.js +22 -0
- package/dist/orchestrator/ArbitrationAgent.js +43 -0
- package/dist/orchestrator/ArbitrationScorecard.js +17 -0
- package/dist/orchestrator/AssetPromotionEngine.js +65 -0
- package/dist/orchestrator/AssetReuseRouter.js +63 -0
- package/dist/orchestrator/BenchmarkEngine.js +75 -0
- package/dist/orchestrator/Brain.js +298 -0
- package/dist/orchestrator/CadenceEngine.js +76 -0
- package/dist/orchestrator/CapabilityRouter.js +36 -0
- package/dist/orchestrator/CommandLanguage.js +27 -0
- package/dist/orchestrator/CommandRouter.js +70 -0
- package/dist/orchestrator/ConsequenceForecaster.js +286 -0
- package/dist/orchestrator/CronManager.js +286 -0
- package/dist/orchestrator/DynamicAgentBuilder.js +48 -0
- package/dist/orchestrator/DynamicAgentExecutor.js +15 -0
- package/dist/orchestrator/EnterpriseAgenticCore.js +276 -0
- package/dist/orchestrator/ExecutionBoard.js +86 -0
- package/dist/orchestrator/ExecutionIntent.js +13 -0
- package/dist/orchestrator/ExecutionModePolicy.js +48 -0
- package/dist/orchestrator/ExecutionRouter.js +9 -0
- package/dist/orchestrator/ExecutionState.js +20 -0
- package/dist/orchestrator/ExecutorHealth.js +86 -0
- package/dist/orchestrator/ExternalCatalogRegistry.js +83 -0
- package/dist/orchestrator/Gatekeeper.js +414 -0
- package/dist/orchestrator/Gateway.js +508 -0
- package/dist/orchestrator/GovernanceConsentStore.js +66 -0
- package/dist/orchestrator/GovernanceLayer.js +179 -0
- package/dist/orchestrator/GovernancePolicyStore.js +53 -0
- package/dist/orchestrator/GovernanceScopeLedger.js +134 -0
- package/dist/orchestrator/GovernanceScopePolicy.js +67 -0
- package/dist/orchestrator/IntentClassifier.js +45 -0
- package/dist/orchestrator/JobLifecycle.js +91 -0
- package/dist/orchestrator/LearningRouter.js +24 -0
- package/dist/orchestrator/MediaManager.js +92 -0
- package/dist/orchestrator/MemoryCuratorAgent.js +41 -0
- package/dist/orchestrator/MissionState.js +155 -0
- package/dist/orchestrator/ModelManager.js +84 -0
- package/dist/orchestrator/OperatingSystem.js +71 -0
- package/dist/orchestrator/OperationalMemoryStore.js +94 -0
- package/dist/orchestrator/OptimizationLoop.js +72 -0
- package/dist/orchestrator/OrchestrationLoop.js +905 -0
- package/dist/orchestrator/OrgStructure.js +88 -0
- package/dist/orchestrator/OutcomeSimulator.js +46 -0
- package/dist/orchestrator/ParallelOrchestrationLoop.js +36 -0
- package/dist/orchestrator/PerformanceScorecard.js +105 -0
- package/dist/orchestrator/PlannerAgent.js +46 -0
- package/dist/orchestrator/ProcessSandbox.js +129 -0
- package/dist/orchestrator/PromotionPipeline.js +74 -0
- package/dist/orchestrator/PromotionReviewGate.js +11 -0
- package/dist/orchestrator/QueueScheduler.js +260 -0
- package/dist/orchestrator/ReleaseGate.js +36 -0
- package/dist/orchestrator/ReleaseWorkflow.js +68 -0
- package/dist/orchestrator/RemotePublisher.js +139 -0
- package/dist/orchestrator/ReuseEngine.js +89 -0
- package/dist/orchestrator/ReviewerAgent.js +49 -0
- package/dist/orchestrator/RoleHandoff.js +65 -0
- package/dist/orchestrator/RuntimeHealthMonitor.js +143 -0
- package/dist/orchestrator/RuntimePolicy.js +105 -0
- package/dist/orchestrator/RuntimeProbe.js +97 -0
- package/dist/orchestrator/RuntimeRegistry.js +73 -0
- package/dist/orchestrator/SandboxPolicy.js +22 -0
- package/dist/orchestrator/SecurityDownloadGuard.js +169 -0
- package/dist/orchestrator/SecurityEventStore.js +58 -0
- package/dist/orchestrator/ServiceCompletionPolicy.js +36 -0
- package/dist/orchestrator/ServiceState.js +195 -0
- package/dist/orchestrator/SkillCreator.js +404 -0
- package/dist/orchestrator/SkillLearningLoop.js +57 -0
- package/dist/orchestrator/SkillManager.js +75 -0
- package/dist/orchestrator/SkillNetwork.js +29 -0
- package/dist/orchestrator/SkillRegistryV2.js +28 -0
- package/dist/orchestrator/SkillScoring.js +70 -0
- package/dist/orchestrator/SquadAutoCreator.js +64 -0
- package/dist/orchestrator/SquadCreator.js +727 -0
- package/dist/orchestrator/SquadRegistry.js +28 -0
- package/dist/orchestrator/SquadRouter.js +33 -0
- package/dist/orchestrator/SquadScoring.js +70 -0
- package/dist/orchestrator/SubagentLifecycle.js +90 -0
- package/dist/orchestrator/SynthesizerAgent.js +48 -0
- package/dist/orchestrator/SystemDoctor.js +224 -0
- package/dist/orchestrator/TaskExecutor.js +422 -0
- package/dist/orchestrator/TeammateBoard.js +61 -0
- package/dist/orchestrator/TestHarness.js +184 -0
- package/dist/orchestrator/VoiceManager.js +203 -0
- package/dist/orchestrator/VoiceRouter.js +89 -0
- package/dist/orchestrator/capability/CapabilityGenesisEngine.js +278 -0
- package/dist/orchestrator/capability/CapabilityPackParser.js +223 -0
- package/dist/orchestrator/capability/CapabilityPackSchema.js +62 -0
- package/dist/orchestrator/capability/CapabilityPackState.js +163 -0
- package/dist/orchestrator/providers/AgentProvider.js +2 -0
- package/dist/orchestrator/providers/CapabilityProvider.js +12 -0
- package/dist/orchestrator/providers/CloudAgentProvider.js +55 -0
- package/dist/orchestrator/providers/CloudSkillProvider.js +55 -0
- package/dist/orchestrator/providers/CloudSquadProvider.js +55 -0
- package/dist/orchestrator/providers/CompositeAgentProvider.js +16 -0
- package/dist/orchestrator/providers/CompositeCapabilityProvider.js +25 -0
- package/dist/orchestrator/providers/CompositeSkillProvider.js +16 -0
- package/dist/orchestrator/providers/CompositeSquadProvider.js +16 -0
- package/dist/orchestrator/providers/CompositeWorkflowProvider.js +46 -0
- package/dist/orchestrator/providers/FileAgentProvider.js +105 -0
- package/dist/orchestrator/providers/FileCapabilityProvider.js +106 -0
- package/dist/orchestrator/providers/FileSkillProvider.js +65 -0
- package/dist/orchestrator/providers/FileSquadProvider.js +69 -0
- package/dist/orchestrator/providers/FileWorkflowProvider.js +103 -0
- package/dist/orchestrator/providers/SkillProvider.js +2 -0
- package/dist/orchestrator/providers/SquadProvider.js +2 -0
- package/dist/orchestrator/toolset/ToolsetGuard.js +69 -0
- package/dist/orchestrator/toolset/ToolsetRegistry.js +65 -0
- package/dist/orchestrator/toolset/ToolsetSchema.js +21 -0
- package/dist/orchestrator/util/AtomicWriter.js +204 -0
- package/dist/orchestrator/util/DistributedLock.js +232 -0
- package/dist/orchestrator/util/TemplateRenderer.js +87 -0
- package/dist/orchestrator/util/WatchdogHeartbeat.js +116 -0
- package/dist/orchestrator/workflow/ConditionParser.js +232 -0
- package/dist/orchestrator/workflow/WorkflowEngine.js +379 -0
- package/dist/orchestrator/workflow/WorkflowParser.js +368 -0
- package/dist/orchestrator/workflow/WorkflowSchema.js +65 -0
- package/dist/orchestrator/workflow/WorkflowState.js +11 -0
- package/dist/reversa/ReversaAgent.js +134 -0
- package/dist/reversa/ReversaContracts.js +62 -0
- package/dist/reversa/ReversaExecutors.js +65 -0
- package/dist/skills/SkillRegistry.js +71 -0
- package/dist/squads/SquadManager.js +87 -0
- package/dist/test_admin_teams_networks.js +54 -0
- package/dist/test_agent_team_skill_network.js +15 -0
- package/dist/test_aiobuilder_cli_parity.js +169 -0
- package/dist/test_ask_exit.js +73 -0
- package/dist/test_atomic_writer.js +209 -0
- package/dist/test_autonomous_soak.js +141 -0
- package/dist/test_benchmark_engine.js +41 -0
- package/dist/test_brain_error_diagnostics.js +51 -0
- package/dist/test_brain_fallback_chain.js +93 -0
- package/dist/test_capability_genesis_engine.js +225 -0
- package/dist/test_capability_pack_schema.js +214 -0
- package/dist/test_catalog_quality.js +150 -0
- package/dist/test_cli_crud_roundtrip.js +154 -0
- package/dist/test_cli_diagnostics.js +131 -0
- package/dist/test_cli_doc_parity.js +126 -0
- package/dist/test_cli_help_surface.js +106 -0
- package/dist/test_cli_service_commands.js +83 -0
- package/dist/test_consequence_forecast_brain.js +165 -0
- package/dist/test_consequence_forecaster.js +24 -0
- package/dist/test_conversation_memory.js +36 -0
- package/dist/test_create_entities.js +54 -0
- package/dist/test_creator_placeholders_completed.js +177 -0
- package/dist/test_cron_manager.js +123 -0
- package/dist/test_daemon_sigterm.js +72 -0
- package/dist/test_deep_research_capability.js +87 -0
- package/dist/test_designmd_import_registry.js +16 -0
- package/dist/test_designmd_mode.js +50 -0
- package/dist/test_designmd_mode_workspace.js +13 -0
- package/dist/test_dist_templates_layout.js +135 -0
- package/dist/test_distributed_lock.js +201 -0
- package/dist/test_distribution_installability.js +67 -0
- package/dist/test_doctor_sandbox_check.js +44 -0
- package/dist/test_dream_organizer.js +25 -0
- package/dist/test_dual_mode.js +15 -0
- package/dist/test_enterprise_agentic_core.js +128 -0
- package/dist/test_forecast_brain_wiring.js +87 -0
- package/dist/test_gateway_telegram_guardrails.js +52 -0
- package/dist/test_governance.js +34 -0
- package/dist/test_governance_advanced.js +75 -0
- package/dist/test_governance_scope_ledger.js +147 -0
- package/dist/test_governance_v13_policies.js +44 -0
- package/dist/test_guided_creator_cli.js +100 -0
- package/dist/test_host_install_e2e.js +324 -0
- package/dist/test_host_installer.js +259 -0
- package/dist/test_host_installers_gemini_codex.js +95 -0
- package/dist/test_host_uninstaller.js +295 -0
- package/dist/test_install_flow.js +70 -0
- package/dist/test_install_flow_host_validation.js +143 -0
- package/dist/test_install_wizard.js +272 -0
- package/dist/test_integration_gemini_live.js +95 -0
- package/dist/test_integration_http_trigger_live.js +154 -0
- package/dist/test_integration_telegram_live.js +102 -0
- package/dist/test_job_lifecycle.js +16 -0
- package/dist/test_memory_orchestrator.js +33 -0
- package/dist/test_memory_promotion.js +36 -0
- package/dist/test_memory_retention.js +37 -0
- package/dist/test_mission_checkpoint.js +204 -0
- package/dist/test_multi_host_docs_parity.js +125 -0
- package/dist/test_openlife_auto_creator_routing.js +69 -0
- package/dist/test_openlife_evolution_surface.js +77 -0
- package/dist/test_openlife_gatekeeper_routing.js +15 -0
- package/dist/test_openlife_routing_surface.js +27 -0
- package/dist/test_openlife_runtime_source_truth.js +25 -0
- package/dist/test_operating_system.js +45 -0
- package/dist/test_optimization_loop.js +38 -0
- package/dist/test_orchestration_assets_lifecycle.js +78 -0
- package/dist/test_outcome_simulator.js +38 -0
- package/dist/test_performance_latency.js +215 -0
- package/dist/test_performance_scorecard.js +38 -0
- package/dist/test_phase1_check_exit.js +103 -0
- package/dist/test_phase6_board.js +31 -0
- package/dist/test_phase6_cadence.js +29 -0
- package/dist/test_phase6_ops.js +37 -0
- package/dist/test_post_mission_evaluation.js +190 -0
- package/dist/test_process_sandbox.js +88 -0
- package/dist/test_profile_toolset_mcp.js +125 -0
- package/dist/test_queue_scheduler.js +239 -0
- package/dist/test_release_gate.js +23 -0
- package/dist/test_remote_publish.js +193 -0
- package/dist/test_reversa_contracts_e2e.js +48 -0
- package/dist/test_reversa_export_and_strict.js +51 -0
- package/dist/test_reversa_full_execution.js +12 -0
- package/dist/test_reversa_lite.js +9 -0
- package/dist/test_royal_stack_golden.js +179 -0
- package/dist/test_runtime_health_backoff.js +154 -0
- package/dist/test_runtime_policy.js +26 -0
- package/dist/test_runtime_probe.js +19 -0
- package/dist/test_runtime_profile_oauth_only.js +262 -0
- package/dist/test_runtime_registry.js +11 -0
- package/dist/test_security_download_and_scan.js +103 -0
- package/dist/test_security_download_guard.js +14 -0
- package/dist/test_service_command_surface.js +12 -0
- package/dist/test_service_completion_policy.js +32 -0
- package/dist/test_service_guardrails_delete.js +12 -0
- package/dist/test_service_mode_explicit_only.js +174 -0
- package/dist/test_sources_import_ref.js +46 -0
- package/dist/test_sources_scaffold.js +43 -0
- package/dist/test_squad_skill_creator.js +305 -0
- package/dist/test_squad_skill_design_llm.js +176 -0
- package/dist/test_subsystems_org_state.js +271 -0
- package/dist/test_subsystems_promotion_memory_assets.js +343 -0
- package/dist/test_subsystems_routing_governance.js +234 -0
- package/dist/test_task_executor_sandbox_optin.js +127 -0
- package/dist/test_teammate_learning.js +15 -0
- package/dist/test_telegram_delete_guardrail.js +21 -0
- package/dist/test_toolset_enforcement.js +188 -0
- package/dist/test_trigger_basic_auth.js +112 -0
- package/dist/test_util/doc_parity.js +120 -0
- package/dist/test_v15_e2e_integration.js +207 -0
- package/dist/test_watchdog_heartbeat.js +152 -0
- package/dist/test_workflow_condition_parser.js +63 -0
- package/dist/test_workflow_e2e.js +240 -0
- package/dist/test_workflow_engine.js +330 -0
- package/dist/test_workflow_parser.js +245 -0
- package/dist/test_workflow_schema_backward_compat.js +197 -0
- package/dist-templates/README.md +91 -0
- package/dist-templates/claude-code/agents/openlife-atlas.md +52 -0
- package/dist-templates/claude-code/agents/openlife-forge.md +42 -0
- package/dist-templates/claude-code/agents/openlife-genesis.md +59 -0
- package/dist-templates/claude-code/agents/openlife-lyra.md +40 -0
- package/dist-templates/claude-code/agents/openlife-maestro.md +45 -0
- package/dist-templates/claude-code/commands/openlife/ask.md +14 -0
- package/dist-templates/claude-code/commands/openlife/doctor.md +19 -0
- package/dist-templates/claude-code/commands/openlife/dream.md +20 -0
- package/dist-templates/claude-code/commands/openlife/status.md +14 -0
- package/dist-templates/claude-code/mcp/openlife-orchestrator.json +46 -0
- package/dist-templates/codex/README.md +7 -0
- package/dist-templates/codex/agents/openlife-atlas.md +52 -0
- package/dist-templates/codex/agents/openlife-forge.md +42 -0
- package/dist-templates/codex/agents/openlife-genesis.md +59 -0
- package/dist-templates/codex/agents/openlife-lyra.md +40 -0
- package/dist-templates/codex/agents/openlife-maestro.md +45 -0
- package/dist-templates/codex/commands/openlife/ask.md +14 -0
- package/dist-templates/codex/commands/openlife/doctor.md +19 -0
- package/dist-templates/codex/commands/openlife/dream.md +20 -0
- package/dist-templates/codex/commands/openlife/status.md +14 -0
- package/dist-templates/codex/mcp/openlife-orchestrator.json +46 -0
- package/dist-templates/gemini-cli/README.md +8 -0
- package/dist-templates/gemini-cli/agents/openlife-atlas.md +52 -0
- package/dist-templates/gemini-cli/agents/openlife-forge.md +42 -0
- package/dist-templates/gemini-cli/agents/openlife-genesis.md +59 -0
- package/dist-templates/gemini-cli/agents/openlife-lyra.md +40 -0
- package/dist-templates/gemini-cli/agents/openlife-maestro.md +45 -0
- package/dist-templates/gemini-cli/commands/openlife/ask.md +14 -0
- package/dist-templates/gemini-cli/commands/openlife/doctor.md +19 -0
- package/dist-templates/gemini-cli/commands/openlife/dream.md +20 -0
- package/dist-templates/gemini-cli/commands/openlife/status.md +14 -0
- package/dist-templates/gemini-cli/mcp/openlife-orchestrator.json +46 -0
- package/dist-templates/skill-template/README.md +34 -0
- package/dist-templates/skill-template/SKILL.md.template +59 -0
- package/dist-templates/squad-template/README.md +82 -0
- package/dist-templates/squad-template/SQUAD.md.template +51 -0
- package/dist-templates/squad-template/agent-template.md +51 -0
- package/dist-templates/squad-template/checklist-template.md +25 -0
- package/dist-templates/squad-template/task-template.md +36 -0
- package/dist-templates/workflows/PORTED_WORKFLOWS.md +60 -0
- package/dist-templates/workflows/brownfield-discovery.yaml +137 -0
- package/dist-templates/workflows/greenfield-fullstack.yaml +132 -0
- package/dist-templates/workflows/qa-loop.yaml +125 -0
- package/dist-templates/workflows/story-development-cycle.yaml +80 -0
- package/docs/CHANGELOG_FEATURE_ROLLOUT_DESIGNMD.md +43 -0
- package/docs/EXTERNAL_SOURCES_AND_SECURITY_GUARD.md +33 -0
- package/docs/OPENLIFE_AUDIT_2026-05-06.md +170 -0
- package/docs/OPENLIFE_CONSOLIDATED_PLAN_2026-05-06.md +299 -0
- package/docs/OPENLIFE_DUAL_MODE_IMPLEMENTATION_PLAN.md +205 -0
- package/docs/OPENLIFE_EVOLUTION_SURFACE_2026-05-07.md +53 -0
- package/docs/OPENLIFE_SKILLS_IMPORT_2026-05-07.json +223 -0
- package/docs/OPENLIFE_SQUADS_IMPORT_2026-05-07.json +184 -0
- package/docs/PAPERCLIP_OPENLIFE_INVESTIGATION.md +85 -0
- package/docs/README.md +28 -0
- package/docs/RELEASE_ORGANIZATION_PLAN.md +164 -0
- package/docs/audit/CLI-EXECUTION-RESULTS.md +113 -0
- package/docs/audit/CLI-MATRIX.md +556 -0
- package/docs/audit/DOC-PARITY-GAPS.md +351 -0
- package/docs/audit/ORCHESTRATOR-MATRIX.md +136 -0
- package/docs/audit/TEST-COVERAGE-GAPS.md +334 -0
- package/docs/audit/integrations/SKIPPED.md +101 -0
- package/docs/autonomous-install.md +79 -0
- package/docs/capability-genesis.md +137 -0
- package/docs/capability-pack-schema.md +157 -0
- package/docs/commands.md +82 -0
- package/docs/deep-research-capability.md +114 -0
- package/docs/development/typescript-conventions.md +95 -0
- package/docs/host-installers.md +68 -0
- package/docs/install/aiobuilder.md +70 -0
- package/docs/install/claude-code.md +83 -0
- package/docs/install/codex.md +64 -0
- package/docs/install/gemini-cli.md +64 -0
- package/docs/install/runtime-profiles.md +83 -0
- package/docs/openlife-agent-os-blueprint.md +114 -0
- package/docs/openlife-install-backlog.md +115 -0
- package/docs/openlife-install-spec.md +306 -0
- package/docs/operations/CLOUD_CUTOVER_AUDIT.md +37 -0
- package/docs/operations/PHASE_PROGRESS_CONTINUATION.md +24 -0
- package/docs/performance-benchmarks.md +83 -0
- package/docs/planning/v1.3-capability-genesis.md +157 -0
- package/docs/plans/2026-05-05-admin-interface-professional-dark-premium-plan.md +84 -0
- package/docs/plans/2026-05-05-openlife-autonomous-domain-marketplace-masterplan.md +122 -0
- package/docs/quickstart.md +60 -0
- package/docs/release-process.md +236 -0
- package/docs/roadmap/OPENLIFE_MASTER_PLAN_CLOUD_V3.md +97 -0
- package/docs/sandboxing-research.md +117 -0
- package/docs/stories/epic-feature-audit/1.1.story.md +84 -0
- package/docs/stories/epic-feature-audit/1.2.story.md +102 -0
- package/docs/stories/epic-feature-audit/1.3.story.md +93 -0
- package/docs/stories/epic-feature-audit/1.5.story.md +121 -0
- package/docs/stories/epic-feature-audit/1.6.story.md +80 -0
- package/docs/stories/epic-feature-completeness/2.1.story.md +70 -0
- package/docs/stories/epic-feature-completeness/2.2.story.md +49 -0
- package/docs/stories/epic-feature-completeness/2.3.story.md +74 -0
- package/docs/stories/epic-feature-completeness/2.4.story.md +71 -0
- package/docs/stories/epic-feature-completeness/3.1.story.md +56 -0
- package/docs/stories/epic-feature-completeness/3.2.story.md +80 -0
- package/docs/stories/epic-feature-completeness/3.3.story.md +68 -0
- package/docs/stories/epic-feature-completeness/3.4.story.md +71 -0
- package/docs/stories/epic-feature-completeness/3.5.story.md +72 -0
- package/docs/stories/epic-feature-completeness/3.6.story.md +69 -0
- package/docs/stories/epic-feature-completeness/3.7.story.md +68 -0
- package/docs/stories/epic-feature-completeness/3.8.story.md +57 -0
- package/docs/toolset-enforcement.md +122 -0
- package/docs/v1.4-changelog.md +159 -0
- package/docs/v1.5-changelog.md +106 -0
- package/docs/v1.5-roadmap.md +121 -0
- package/docs/v1.6-changelog.md +67 -0
- package/docs/v1.6-roadmap.md +89 -0
- package/docs/v1.7-changelog.md +98 -0
- package/docs/workflow-schema.md +177 -0
- package/package.json +177 -0
- package/scripts/clean-test-pollution.js +61 -0
- package/scripts/openlife-agent-start.sh +6 -0
- package/scripts/openlife-agent.service.example +13 -0
- package/scripts/openlife-agent.supervisord.conf.example +8 -0
- package/scripts/openlife-autonomous-install.sh +29 -0
- package/scripts/postinstall-check.sh +37 -0
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.EnterpriseDoctor = exports.LearningLoopStore = exports.MissionEvaluationStore = exports.PilotStore = exports.PluginManifestStore = exports.InstitutionalContextStore = void 0;
|
|
37
|
+
const fs = __importStar(require("fs"));
|
|
38
|
+
const path = __importStar(require("path"));
|
|
39
|
+
const AtomicWriter_1 = require("./util/AtomicWriter");
|
|
40
|
+
const ensureDir = (p) => fs.mkdirSync(p, { recursive: true });
|
|
41
|
+
const stateRoot = (root) => process.env.OPENLIFE_STATE_DIR || path.join(root, '.openlife');
|
|
42
|
+
const now = () => new Date().toISOString();
|
|
43
|
+
const readJson = (p, fallback) => {
|
|
44
|
+
if (!fs.existsSync(p))
|
|
45
|
+
return fallback;
|
|
46
|
+
try {
|
|
47
|
+
return JSON.parse(fs.readFileSync(p, 'utf-8'));
|
|
48
|
+
}
|
|
49
|
+
catch {
|
|
50
|
+
return fallback;
|
|
51
|
+
}
|
|
52
|
+
};
|
|
53
|
+
const writeJson = (p, data) => { (0, AtomicWriter_1.writeJsonAtomic)(p, data); };
|
|
54
|
+
const validId = (id) => /^[a-z0-9][a-z0-9._-]{1,80}$/i.test(id);
|
|
55
|
+
const validRisk = (risk) => ['low', 'medium', 'high'].includes(String(risk).toLowerCase());
|
|
56
|
+
const err = (error, detail) => ({ ok: false, error, ...(detail ? { detail } : {}) });
|
|
57
|
+
class InstitutionalContextStore {
|
|
58
|
+
root;
|
|
59
|
+
constructor(root = process.cwd()) {
|
|
60
|
+
this.root = root;
|
|
61
|
+
}
|
|
62
|
+
stateDir() { return stateRoot(this.root); }
|
|
63
|
+
dir() { return path.join(this.stateDir(), 'institutional-context'); }
|
|
64
|
+
requiredFiles() {
|
|
65
|
+
return [
|
|
66
|
+
'brand.md', 'governance.md', 'operating-model.md', 'quality-bar.md',
|
|
67
|
+
'company-vocabulary.md', 'decision-principles.md', 'approved-patterns.md', 'forbidden-patterns.md'
|
|
68
|
+
];
|
|
69
|
+
}
|
|
70
|
+
init(name = 'OpenLife Institutional Context') {
|
|
71
|
+
ensureDir(this.dir());
|
|
72
|
+
const templates = {
|
|
73
|
+
'brand.md': `# Brand\n\nName: ${name}\n\nVoice, positioning, visual identity, and examples live here.\n`,
|
|
74
|
+
'governance.md': '# Governance\n\n- Read-only before write.\n- Human approval for destructive/public actions.\n- Audit every mission.\n',
|
|
75
|
+
'operating-model.md': '# Operating Model\n\nServices are continuous operational truth; missions/tasks are execution units.\n',
|
|
76
|
+
'quality-bar.md': '# Quality Bar\n\nOutputs must be actionable, grounded, auditable, and ready for review.\n',
|
|
77
|
+
'company-vocabulary.md': '# Company Vocabulary\n\nCanonical terms, acronyms, and forbidden wording.\n',
|
|
78
|
+
'decision-principles.md': '# Decision Principles\n\nPrefer measurable pilots, reversible steps, and explicit tradeoffs.\n',
|
|
79
|
+
'approved-patterns.md': '# Approved Patterns\n\nReusable patterns that passed review.\n',
|
|
80
|
+
'forbidden-patterns.md': '# Forbidden Patterns\n\nNo deceptive mocks. No runtime source-of-truth from Obsidian. No destructive action without approval.\n'
|
|
81
|
+
};
|
|
82
|
+
const files = this.requiredFiles().map(f => {
|
|
83
|
+
const p = path.join(this.dir(), f);
|
|
84
|
+
if (!fs.existsSync(p))
|
|
85
|
+
(0, AtomicWriter_1.writeStringAtomic)(p, templates[f] || `# ${f}\n`);
|
|
86
|
+
return p;
|
|
87
|
+
});
|
|
88
|
+
writeJson(path.join(this.dir(), 'manifest.json'), { name, version: 1, updatedAt: now(), files: this.requiredFiles() });
|
|
89
|
+
return { ok: true, type: 'institutional-context.init', stateDir: this.stateDir(), dir: this.dir(), files };
|
|
90
|
+
}
|
|
91
|
+
doctor() {
|
|
92
|
+
const required = this.requiredFiles();
|
|
93
|
+
const present = required.filter(f => fs.existsSync(path.join(this.dir(), f)));
|
|
94
|
+
return { ok: present.length === required.length, type: 'institutional-context.doctor', stateDir: this.stateDir(), dir: this.dir(), summary: { requiredPresent: present.length, requiredTotal: required.length, missing: required.filter(f => !present.includes(f)) } };
|
|
95
|
+
}
|
|
96
|
+
summary() {
|
|
97
|
+
const manifest = readJson(path.join(this.dir(), 'manifest.json'), { name: null, version: 0, files: [] });
|
|
98
|
+
return { ok: true, type: 'institutional-context.summary', stateDir: this.stateDir(), context: { ...manifest, requiredFiles: this.requiredFiles(), doctor: this.doctor().summary } };
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
exports.InstitutionalContextStore = InstitutionalContextStore;
|
|
102
|
+
class PluginManifestStore {
|
|
103
|
+
root;
|
|
104
|
+
constructor(root = process.cwd()) {
|
|
105
|
+
this.root = root;
|
|
106
|
+
}
|
|
107
|
+
stateDir() { return stateRoot(this.root); }
|
|
108
|
+
dir() { return path.join(this.stateDir(), 'plugins'); }
|
|
109
|
+
pathFor(id) { return path.join(this.dir(), `${id}.json`); }
|
|
110
|
+
riskTemplate(risk) {
|
|
111
|
+
const r = (risk || 'low').toLowerCase();
|
|
112
|
+
if (r === 'high')
|
|
113
|
+
return { riskLevel: 'high', permissionScope: ['read'], deniedCapabilities: ['delete', 'rename', 'network:write', 'public:write'] };
|
|
114
|
+
if (r === 'medium')
|
|
115
|
+
return { riskLevel: 'medium', permissionScope: ['read', 'write', 'network:read'], deniedCapabilities: ['delete', 'network:write', 'public:write'] };
|
|
116
|
+
return { riskLevel: 'low', permissionScope: ['read', 'write', 'network:read'], deniedCapabilities: ['delete'] };
|
|
117
|
+
}
|
|
118
|
+
install(id, capabilities, risk = 'low') {
|
|
119
|
+
if (!validId(id))
|
|
120
|
+
return err('invalid_plugin_id', { expected: '^[a-z0-9][a-z0-9._-]{1,80}$' });
|
|
121
|
+
if (!validRisk(risk))
|
|
122
|
+
return err('invalid_risk_level', { allowed: ['low', 'medium', 'high'] });
|
|
123
|
+
ensureDir(this.dir());
|
|
124
|
+
const existing = readJson(this.pathFor(id), null);
|
|
125
|
+
const createdAt = existing?.createdAt || now();
|
|
126
|
+
const plugin = { id, name: id.replace(/[-_]/g, ' '), capabilities: capabilities.length ? Array.from(new Set(capabilities)) : ['general.execution'], governance: this.riskTemplate(risk), source: 'openlife-cli', status: 'installed', version: (existing?.version || 0) + 1, createdAt, updatedAt: now() };
|
|
127
|
+
writeJson(this.pathFor(id), plugin);
|
|
128
|
+
return { ok: true, type: 'plugin.install', stateDir: this.stateDir(), plugin };
|
|
129
|
+
}
|
|
130
|
+
list() {
|
|
131
|
+
ensureDir(this.dir());
|
|
132
|
+
const plugins = fs.readdirSync(this.dir()).filter(f => f.endsWith('.json')).map(f => readJson(path.join(this.dir(), f), null)).filter(Boolean);
|
|
133
|
+
return { ok: true, type: 'plugin.list', stateDir: this.stateDir(), plugins };
|
|
134
|
+
}
|
|
135
|
+
inspect(id) {
|
|
136
|
+
if (!validId(id))
|
|
137
|
+
return err('invalid_plugin_id', { id });
|
|
138
|
+
const plugin = readJson(this.pathFor(id), null);
|
|
139
|
+
return plugin ? { ok: true, type: 'plugin.inspect', plugin } : err('plugin_not_found', { id });
|
|
140
|
+
}
|
|
141
|
+
setStatus(id, status) {
|
|
142
|
+
if (!validId(id))
|
|
143
|
+
return err('invalid_plugin_id', { id });
|
|
144
|
+
const plugin = readJson(this.pathFor(id), null);
|
|
145
|
+
if (!plugin)
|
|
146
|
+
return err('plugin_not_found', { id });
|
|
147
|
+
plugin.status = status;
|
|
148
|
+
plugin.updatedAt = now();
|
|
149
|
+
plugin.version += 1;
|
|
150
|
+
writeJson(this.pathFor(id), plugin);
|
|
151
|
+
return { ok: true, type: `plugin.${status === 'disabled' ? 'disable' : 'enable'}`, plugin };
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
exports.PluginManifestStore = PluginManifestStore;
|
|
155
|
+
class PilotStore {
|
|
156
|
+
root;
|
|
157
|
+
constructor(root = process.cwd()) {
|
|
158
|
+
this.root = root;
|
|
159
|
+
}
|
|
160
|
+
stateDir() { return stateRoot(this.root); }
|
|
161
|
+
dir() { return path.join(this.stateDir(), 'pilots'); }
|
|
162
|
+
pathFor(id) { return path.join(this.dir(), `${id}.json`); }
|
|
163
|
+
create(id, metric, service = 'unassigned') {
|
|
164
|
+
if (!validId(id))
|
|
165
|
+
return err('invalid_pilot_id');
|
|
166
|
+
const existing = readJson(this.pathFor(id), null);
|
|
167
|
+
const pilot = { id, status: 'active', service, hypothesis: `Pilot ${id} should produce measurable operational value.`, metrics: metric ? [metric] : [], successCriteria: metric ? [metric] : ['define measurable success metric'], workflows: existing?.workflows || [], outcome: existing?.outcome || null, createdAt: existing?.createdAt || now(), updatedAt: now() };
|
|
168
|
+
writeJson(this.pathFor(id), pilot);
|
|
169
|
+
return { ok: true, type: 'pilot.create', stateDir: this.stateDir(), pilot };
|
|
170
|
+
}
|
|
171
|
+
list() {
|
|
172
|
+
ensureDir(this.dir());
|
|
173
|
+
const pilots = fs.readdirSync(this.dir()).filter(f => f.endsWith('.json')).map(f => readJson(path.join(this.dir(), f), null)).filter((p) => !!p);
|
|
174
|
+
return { ok: true, type: 'pilot.list', stateDir: this.stateDir(), pilots };
|
|
175
|
+
}
|
|
176
|
+
report(id) {
|
|
177
|
+
if (!validId(id))
|
|
178
|
+
return err('invalid_pilot_id', { id });
|
|
179
|
+
const pilot = readJson(this.pathFor(id), null);
|
|
180
|
+
if (!pilot)
|
|
181
|
+
return err('pilot_not_found', { id });
|
|
182
|
+
const report = { id, status: pilot.status, service: pilot.service, successCriteria: pilot.successCriteria || pilot.metrics || [], recommendation: pilot.status === 'completed' ? 'promote-learning-or-scale' : 'continue-with-governed-experiment', generatedAt: now() };
|
|
183
|
+
return { ok: true, type: 'pilot.report', pilot, report };
|
|
184
|
+
}
|
|
185
|
+
complete(id, outcome = 'completed') {
|
|
186
|
+
if (!validId(id))
|
|
187
|
+
return err('invalid_pilot_id', { id });
|
|
188
|
+
const pilot = readJson(this.pathFor(id), null);
|
|
189
|
+
if (!pilot)
|
|
190
|
+
return err('pilot_not_found', { id });
|
|
191
|
+
pilot.status = 'completed';
|
|
192
|
+
pilot.outcome = outcome;
|
|
193
|
+
pilot.updatedAt = now();
|
|
194
|
+
writeJson(this.pathFor(id), pilot);
|
|
195
|
+
return { ok: true, type: 'pilot.complete', pilot };
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
exports.PilotStore = PilotStore;
|
|
199
|
+
class MissionEvaluationStore {
|
|
200
|
+
root;
|
|
201
|
+
constructor(root = process.cwd()) {
|
|
202
|
+
this.root = root;
|
|
203
|
+
}
|
|
204
|
+
stateDir() { return stateRoot(this.root); }
|
|
205
|
+
dir() { return path.join(this.stateDir(), 'evaluations'); }
|
|
206
|
+
pathFor(mission) { return path.join(this.dir(), `${mission}.json`); }
|
|
207
|
+
judge(mission, criteriaCsv) {
|
|
208
|
+
if (!validId(mission))
|
|
209
|
+
return err('invalid_mission_id');
|
|
210
|
+
const criteria = criteriaCsv.split(',').map(s => s.trim()).filter(Boolean);
|
|
211
|
+
const score = Math.max(0, Math.min(100, 70 + Math.min(criteria.length, 5) * 4));
|
|
212
|
+
const evaluation = { mission, criteria, score, verdict: score >= 75 ? 'ready_for_review' : 'needs_iteration', risks: ['verify evidence before external delivery'], createdAt: now(), path: this.pathFor(mission) };
|
|
213
|
+
writeJson(this.pathFor(mission), evaluation);
|
|
214
|
+
return { ok: true, type: 'eval.judge', stateDir: this.stateDir(), evaluation };
|
|
215
|
+
}
|
|
216
|
+
report(mission) {
|
|
217
|
+
if (!validId(mission))
|
|
218
|
+
return err('invalid_mission_id', { mission });
|
|
219
|
+
const evaluation = readJson(this.pathFor(mission), null);
|
|
220
|
+
return evaluation ? { ok: true, type: 'eval.report', evaluation } : err('evaluation_not_found', { mission });
|
|
221
|
+
}
|
|
222
|
+
list() {
|
|
223
|
+
ensureDir(this.dir());
|
|
224
|
+
return fs.readdirSync(this.dir())
|
|
225
|
+
.filter(f => f.endsWith('.json'))
|
|
226
|
+
.map(f => readJson(path.join(this.dir(), f), null))
|
|
227
|
+
.filter((e) => !!e);
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
exports.MissionEvaluationStore = MissionEvaluationStore;
|
|
231
|
+
class LearningLoopStore {
|
|
232
|
+
root;
|
|
233
|
+
constructor(root = process.cwd()) {
|
|
234
|
+
this.root = root;
|
|
235
|
+
}
|
|
236
|
+
stateDir() { return stateRoot(this.root); }
|
|
237
|
+
dir() { return path.join(this.stateDir(), 'learning'); }
|
|
238
|
+
pathFor(mission) { return path.join(this.dir(), `${mission}.json`); }
|
|
239
|
+
fromLastRun(mission, feedback) {
|
|
240
|
+
if (!validId(mission))
|
|
241
|
+
return err('invalid_mission_id');
|
|
242
|
+
const suggestions = [
|
|
243
|
+
{ type: 'skill', action: 'create_or_patch', title: `Reusable workflow from ${mission}`, rationale: feedback || 'Promote repeated operational pattern.' },
|
|
244
|
+
{ type: 'context', action: 'update', title: 'Institutional context update', rationale: 'Capture human correction and decision principles.' },
|
|
245
|
+
{ type: 'evaluation', action: 'add_criteria', title: 'Quality criterion', rationale: 'Convert review into future scoring.' }
|
|
246
|
+
];
|
|
247
|
+
const record = { mission, feedback, suggestions, createdAt: now() };
|
|
248
|
+
writeJson(this.pathFor(mission), record);
|
|
249
|
+
return { ok: true, type: 'learn.from-last-run', stateDir: this.stateDir(), recordPath: this.pathFor(mission), suggestions };
|
|
250
|
+
}
|
|
251
|
+
list() {
|
|
252
|
+
ensureDir(this.dir());
|
|
253
|
+
const records = fs.readdirSync(this.dir())
|
|
254
|
+
.filter(f => f.endsWith('.json'))
|
|
255
|
+
.map(f => readJson(path.join(this.dir(), f), null))
|
|
256
|
+
.filter((r) => !!r);
|
|
257
|
+
return { ok: true, type: 'learn.list', stateDir: this.stateDir(), records };
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
exports.LearningLoopStore = LearningLoopStore;
|
|
261
|
+
class EnterpriseDoctor {
|
|
262
|
+
root;
|
|
263
|
+
constructor(root = process.cwd()) {
|
|
264
|
+
this.root = root;
|
|
265
|
+
}
|
|
266
|
+
run() {
|
|
267
|
+
const context = new InstitutionalContextStore(this.root).doctor();
|
|
268
|
+
const plugins = new PluginManifestStore(this.root).list().plugins;
|
|
269
|
+
const pilots = new PilotStore(this.root).list().pilots;
|
|
270
|
+
const evals = new MissionEvaluationStore(this.root).list();
|
|
271
|
+
const learning = new LearningLoopStore(this.root).list().records;
|
|
272
|
+
const checks = { context, plugins: { ok: true, count: plugins.length }, pilots: { ok: true, count: pilots.length }, evaluations: { ok: true, count: evals.length }, learning: { ok: true, count: learning.length } };
|
|
273
|
+
return { ok: context.ok && plugins.length >= 0 && pilots.length >= 0, type: 'enterprise.doctor', stateDir: stateRoot(this.root), checks };
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
exports.EnterpriseDoctor = EnterpriseDoctor;
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.ExecutionBoard = void 0;
|
|
37
|
+
const fs = __importStar(require("fs"));
|
|
38
|
+
const path = __importStar(require("path"));
|
|
39
|
+
const AtomicWriter_1 = require("./util/AtomicWriter");
|
|
40
|
+
class ExecutionBoard {
|
|
41
|
+
filePath;
|
|
42
|
+
constructor() {
|
|
43
|
+
this.filePath = path.join(process.cwd(), '.artifacts', 'execution-board.json');
|
|
44
|
+
fs.mkdirSync(path.dirname(this.filePath), { recursive: true });
|
|
45
|
+
}
|
|
46
|
+
add(item) {
|
|
47
|
+
const all = this.getAll();
|
|
48
|
+
all.push({ ...item, ageHours: 0, createdAt: new Date().toISOString(), updatedAt: new Date().toISOString() });
|
|
49
|
+
(0, AtomicWriter_1.writeJsonAtomic)(this.filePath, all);
|
|
50
|
+
}
|
|
51
|
+
updateStatus(id, status, blockerReason) {
|
|
52
|
+
const all = this.getAll().map((item) => item.id === id ? {
|
|
53
|
+
...item,
|
|
54
|
+
status,
|
|
55
|
+
blockerReason: status === 'blocked' ? blockerReason || item.blockerReason : undefined,
|
|
56
|
+
ageHours: this.computeAgeHours(item.createdAt),
|
|
57
|
+
updatedAt: new Date().toISOString()
|
|
58
|
+
} : item);
|
|
59
|
+
(0, AtomicWriter_1.writeJsonAtomic)(this.filePath, all);
|
|
60
|
+
}
|
|
61
|
+
updateDependencies(id, dependencies) {
|
|
62
|
+
const all = this.getAll().map((item) => item.id === id ? {
|
|
63
|
+
...item,
|
|
64
|
+
dependencies,
|
|
65
|
+
updatedAt: new Date().toISOString()
|
|
66
|
+
} : item);
|
|
67
|
+
(0, AtomicWriter_1.writeJsonAtomic)(this.filePath, all);
|
|
68
|
+
}
|
|
69
|
+
getAll() {
|
|
70
|
+
if (!fs.existsSync(this.filePath))
|
|
71
|
+
return [];
|
|
72
|
+
try {
|
|
73
|
+
return JSON.parse(fs.readFileSync(this.filePath, 'utf-8')).map((item) => ({
|
|
74
|
+
...item,
|
|
75
|
+
ageHours: this.computeAgeHours(item.createdAt)
|
|
76
|
+
}));
|
|
77
|
+
}
|
|
78
|
+
catch {
|
|
79
|
+
return [];
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
computeAgeHours(createdAt) {
|
|
83
|
+
return Math.round(((Date.now() - new Date(createdAt).getTime()) / (1000 * 60 * 60)) * 10) / 10;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
exports.ExecutionBoard = ExecutionBoard;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.normalizeExecutionIntent = normalizeExecutionIntent;
|
|
4
|
+
function normalizeExecutionIntent(partial) {
|
|
5
|
+
return {
|
|
6
|
+
mode: partial.mode ?? 'task',
|
|
7
|
+
goal: partial.goal,
|
|
8
|
+
serviceId: partial.serviceId,
|
|
9
|
+
riskProfile: partial.riskProfile,
|
|
10
|
+
budgetPolicy: partial.budgetPolicy,
|
|
11
|
+
origin: partial.origin ?? 'internal'
|
|
12
|
+
};
|
|
13
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ExecutionModePolicy = void 0;
|
|
4
|
+
const IntentClassifier_1 = require("./IntentClassifier");
|
|
5
|
+
class ExecutionModePolicy {
|
|
6
|
+
decide(task, input) {
|
|
7
|
+
const normalized = input.toLowerCase();
|
|
8
|
+
if (normalized.includes('elite') || normalized.includes('máxima performance') || normalized.includes('maxima performance')) {
|
|
9
|
+
return {
|
|
10
|
+
executionMode: 'elite',
|
|
11
|
+
swarmMode: 'consensus',
|
|
12
|
+
maxBranches: 4,
|
|
13
|
+
rationale: 'Modo elite explicitamente solicitado.'
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
if (normalized.includes('performance')) {
|
|
17
|
+
return {
|
|
18
|
+
executionMode: 'performance',
|
|
19
|
+
swarmMode: 'parallel',
|
|
20
|
+
maxBranches: 3,
|
|
21
|
+
rationale: 'Modo performance solicitado.'
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
if (task.intent === IntentClassifier_1.TaskIntent.RESEARCH_ANALYSIS) {
|
|
25
|
+
return {
|
|
26
|
+
executionMode: 'balanced',
|
|
27
|
+
swarmMode: 'parallel',
|
|
28
|
+
maxBranches: 3,
|
|
29
|
+
rationale: 'Research se beneficia de paralelismo leve por padrão.'
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
if (task.intent === IntentClassifier_1.TaskIntent.ENGINEERING_BUILD) {
|
|
33
|
+
return {
|
|
34
|
+
executionMode: 'balanced',
|
|
35
|
+
swarmMode: 'light',
|
|
36
|
+
maxBranches: 2,
|
|
37
|
+
rationale: 'Build complexo pede review, mas não consensus pesado por padrão.'
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
executionMode: 'economical',
|
|
42
|
+
swarmMode: 'none',
|
|
43
|
+
maxBranches: 1,
|
|
44
|
+
rationale: 'Tarefa simples segue rota econômica.'
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
exports.ExecutionModePolicy = ExecutionModePolicy;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ExecutionRouter = void 0;
|
|
4
|
+
class ExecutionRouter {
|
|
5
|
+
route(intent) {
|
|
6
|
+
return intent.mode === 'service' ? 'service' : 'task';
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
exports.ExecutionRouter = ExecutionRouter;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createExecutionState = createExecutionState;
|
|
4
|
+
function createExecutionState(taskId, goal, userId) {
|
|
5
|
+
const now = new Date().toISOString();
|
|
6
|
+
return {
|
|
7
|
+
taskId,
|
|
8
|
+
goal,
|
|
9
|
+
userId,
|
|
10
|
+
status: 'running',
|
|
11
|
+
plan: [],
|
|
12
|
+
successCriteria: [],
|
|
13
|
+
attempts: [],
|
|
14
|
+
reviewFindings: [],
|
|
15
|
+
artifacts: [],
|
|
16
|
+
governanceEvents: [],
|
|
17
|
+
createdAt: now,
|
|
18
|
+
updatedAt: now
|
|
19
|
+
};
|
|
20
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.ExecutorHealth = void 0;
|
|
37
|
+
const fs = __importStar(require("fs"));
|
|
38
|
+
const path = __importStar(require("path"));
|
|
39
|
+
class ExecutorHealth {
|
|
40
|
+
healthFile;
|
|
41
|
+
constructor() {
|
|
42
|
+
this.healthFile = path.join(process.cwd(), '.artifacts', 'executor-health.json');
|
|
43
|
+
const dir = path.dirname(this.healthFile);
|
|
44
|
+
if (!fs.existsSync(dir))
|
|
45
|
+
fs.mkdirSync(dir, { recursive: true });
|
|
46
|
+
}
|
|
47
|
+
getAll() {
|
|
48
|
+
if (!fs.existsSync(this.healthFile))
|
|
49
|
+
return {};
|
|
50
|
+
try {
|
|
51
|
+
return JSON.parse(fs.readFileSync(this.healthFile, 'utf-8'));
|
|
52
|
+
}
|
|
53
|
+
catch {
|
|
54
|
+
return {};
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
get(executor) {
|
|
58
|
+
return this.getAll()[executor] || null;
|
|
59
|
+
}
|
|
60
|
+
set(executor, available, reason) {
|
|
61
|
+
const current = this.getAll();
|
|
62
|
+
current[executor] = {
|
|
63
|
+
executor,
|
|
64
|
+
available,
|
|
65
|
+
reason,
|
|
66
|
+
category: this.classify(reason, available),
|
|
67
|
+
updatedAt: new Date().toISOString()
|
|
68
|
+
};
|
|
69
|
+
fs.writeFileSync(this.healthFile, JSON.stringify(current, null, 2), 'utf-8');
|
|
70
|
+
}
|
|
71
|
+
classify(reason, available) {
|
|
72
|
+
if (available)
|
|
73
|
+
return 'ok';
|
|
74
|
+
const normalized = (reason || '').toLowerCase();
|
|
75
|
+
if (normalized.includes('quota') || normalized.includes('429') || normalized.includes('capacity'))
|
|
76
|
+
return 'quota';
|
|
77
|
+
if (normalized.includes('command not found') || normalized.includes('not found'))
|
|
78
|
+
return 'cli_missing';
|
|
79
|
+
if (normalized.includes('auth') || normalized.includes('login') || normalized.includes('unauthorized'))
|
|
80
|
+
return 'auth';
|
|
81
|
+
if (normalized.includes('fallback'))
|
|
82
|
+
return 'fallback';
|
|
83
|
+
return 'runtime_error';
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
exports.ExecutorHealth = ExecutorHealth;
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ExternalCatalogRegistry = void 0;
|
|
4
|
+
const ToolsetGuard_1 = require("./toolset/ToolsetGuard");
|
|
5
|
+
class ExternalCatalogRegistry {
|
|
6
|
+
list() {
|
|
7
|
+
return [
|
|
8
|
+
{ id: 'skills-sh', type: 'skills', url: 'https://skills.sh/', trust: 'reference', notes: 'Skill discovery reference' },
|
|
9
|
+
{ id: 'clawhub', type: 'skills', url: 'https://clawhub.ai/', trust: 'reference', notes: 'Skill/agent references' },
|
|
10
|
+
{ id: 'mcpmarket', type: 'mcps', url: 'https://mcpmarket.com/', trust: 'reference', notes: 'MCP catalog reference' },
|
|
11
|
+
{ id: 'mcpservers', type: 'mcps', url: 'https://mcpservers.org/', trust: 'reference', notes: 'MCP catalog reference' },
|
|
12
|
+
{ id: 'github', type: 'skills', url: 'https://github.com/', trust: 'import-allowed', notes: 'Allowlisted import host with guard scan' }
|
|
13
|
+
];
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Initiate an import from an external catalog source.
|
|
17
|
+
*
|
|
18
|
+
* Story 5.4 — OpenLife v1.3 Agent OS Integration.
|
|
19
|
+
*
|
|
20
|
+
* Hard-gated by trust='import-allowed'. Reference-only sources are
|
|
21
|
+
* refused. The actual download/scan/install path goes through
|
|
22
|
+
* SecurityDownloadGuard — this method validates the policy decision
|
|
23
|
+
* only; the caller wires the actual fetch.
|
|
24
|
+
*
|
|
25
|
+
* Returns a structured ImportResult; never throws.
|
|
26
|
+
*/
|
|
27
|
+
import(sourceId, packId) {
|
|
28
|
+
if (!sourceId || !packId) {
|
|
29
|
+
return { ok: false, error: 'invalid_arguments' };
|
|
30
|
+
}
|
|
31
|
+
const source = this.list().find((s) => s.id === sourceId);
|
|
32
|
+
if (!source) {
|
|
33
|
+
return { ok: false, error: 'source_not_found', sourceId };
|
|
34
|
+
}
|
|
35
|
+
if (source.trust !== 'import-allowed') {
|
|
36
|
+
return {
|
|
37
|
+
ok: false,
|
|
38
|
+
error: 'source_is_reference_only',
|
|
39
|
+
sourceId,
|
|
40
|
+
trust: source.trust,
|
|
41
|
+
notes: `Source '${sourceId}' is reference-only. Use the URL manually and bring vetted manifests into .catalog/.`,
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
// Policy decision OK. v1.4: if `url` opt provided, run the
|
|
45
|
+
// download+scan pipeline; else return policy-only OK (caller will
|
|
46
|
+
// do the fetch).
|
|
47
|
+
return {
|
|
48
|
+
ok: true,
|
|
49
|
+
sourceId,
|
|
50
|
+
packId,
|
|
51
|
+
trust: source.trust,
|
|
52
|
+
notes: 'Policy allows import. Use importAndFetch() for the real download+scan pipeline.',
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Story 9.2 — wires ExternalCatalogRegistry.import policy decision to
|
|
57
|
+
* SecurityDownloadGuard.downloadAndScan. Single-method "do the right
|
|
58
|
+
* thing" entry for CLI handlers.
|
|
59
|
+
*
|
|
60
|
+
* Returns the same ImportResult shape augmented with downloadedTo
|
|
61
|
+
* when successful. Never throws.
|
|
62
|
+
*/
|
|
63
|
+
async importAndFetch(sourceId, packId, url, targetDir) {
|
|
64
|
+
(0, ToolsetGuard_1.assertToolsetAllowed)('mcp', 'ExternalCatalogRegistry.importAndFetch');
|
|
65
|
+
const policy = this.import(sourceId, packId);
|
|
66
|
+
if (!policy.ok)
|
|
67
|
+
return policy;
|
|
68
|
+
// Lazy require to avoid circular dependencies.
|
|
69
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
70
|
+
const { SecurityDownloadGuard } = require('./SecurityDownloadGuard');
|
|
71
|
+
const guard = new SecurityDownloadGuard();
|
|
72
|
+
const r = await guard.downloadAndScan(url, targetDir);
|
|
73
|
+
if (!r.ok) {
|
|
74
|
+
return { ok: false, sourceId, packId, error: 'download_or_scan_failed', notes: r.errors.join(';') };
|
|
75
|
+
}
|
|
76
|
+
return {
|
|
77
|
+
...policy,
|
|
78
|
+
downloadedTo: r.downloadedTo,
|
|
79
|
+
warnings: r.warnings,
|
|
80
|
+
};
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
exports.ExternalCatalogRegistry = ExternalCatalogRegistry;
|