LICENSE
README.md
cli.py
pyproject.toml
realize_api/__init__.py
realize_api/dependencies.py
realize_api/error_handlers.py
realize_api/main.py
realize_api/middleware.py
realize_api/response.py
realize_api/security_middleware.py
realize_api/routes/__init__.py
realize_api/routes/activity.py
realize_api/routes/agents_v2.py
realize_api/routes/approvals.py
realize_api/routes/auth.py
realize_api/routes/chat.py
realize_api/routes/dashboard.py
realize_api/routes/devmode.py
realize_api/routes/dreams.py
realize_api/routes/evolution.py
realize_api/routes/extensions.py
realize_api/routes/fabric.py
realize_api/routes/health.py
realize_api/routes/integrations.py
realize_api/routes/mcp.py
realize_api/routes/missions.py
realize_api/routes/route_helpers.py
realize_api/routes/routing.py
realize_api/routes/security.py
realize_api/routes/settings.py
realize_api/routes/settings_llm.py
realize_api/routes/settings_memory.py
realize_api/routes/settings_reports.py
realize_api/routes/settings_security.py
realize_api/routes/settings_skills.py
realize_api/routes/settings_tools.py
realize_api/routes/settings_trust.py
realize_api/routes/setup.py
realize_api/routes/storage_settings.py
realize_api/routes/systems.py
realize_api/routes/venture_agents.py
realize_api/routes/venture_kb.py
realize_api/routes/venture_shared.py
realize_api/routes/ventures.py
realize_api/routes/webhooks.py
realize_api/routes/workflows.py
realize_core/__init__.py
realize_core/base_handler.py
realize_core/cli.py
realize_core/cli_main.py
realize_core/config.py
realize_core/init.py
realize_core/scaffold.py
realize_core/setup_wizard.py
realize_core/activity/__init__.py
realize_core/activity/bus.py
realize_core/activity/logger.py
realize_core/activity/store.py
realize_core/agents/__init__.py
realize_core/agents/activation.py
realize_core/agents/base.py
realize_core/agents/guardrails.py
realize_core/agents/handoff.py
realize_core/agents/loader.py
realize_core/agents/persona.py
realize_core/agents/personas.py
realize_core/agents/pipeline.py
realize_core/agents/registry.py
realize_core/agents/schema.py
realize_core/channels/__init__.py
realize_core/channels/api.py
realize_core/channels/base.py
realize_core/channels/scheduler.py
realize_core/channels/telegram.py
realize_core/channels/web.py
realize_core/channels/webhooks.py
realize_core/channels/whatsapp.py
realize_core/cli_app/__init__.py
realize_core/cli_app/formatters.py
realize_core/cli_app/http_client.py
realize_core/cli_app/profiles.py
realize_core/cli_app/state.py
realize_core/cli_app/commands/__init__.py
realize_core/cli_app/commands/ask.py
realize_core/cli_app/commands/audit.py
realize_core/cli_app/commands/bot.py
realize_core/cli_app/commands/chat.py
realize_core/cli_app/commands/config.py
realize_core/cli_app/commands/devmode.py
realize_core/cli_app/commands/doctor.py
realize_core/cli_app/commands/evolution.py
realize_core/cli_app/commands/fabric.py
realize_core/cli_app/commands/index.py
realize_core/cli_app/commands/init.py
realize_core/cli_app/commands/kb.py
realize_core/cli_app/commands/mcp.py
realize_core/cli_app/commands/repl.py
realize_core/cli_app/commands/serve.py
realize_core/cli_app/commands/setup.py
realize_core/cli_app/commands/skill.py
realize_core/cli_app/commands/status.py
realize_core/cli_app/commands/venture.py
realize_core/cli_app/commands/version.py
realize_core/cli_app/commands/workflow.py
realize_core/db/__init__.py
realize_core/db/migrations.py
realize_core/db/schema.py
realize_core/devmode/__init__.py
realize_core/devmode/audit.py
realize_core/devmode/context_generator.py
realize_core/devmode/devmode_config.yaml
realize_core/devmode/git_safety.py
realize_core/devmode/health_check.py
realize_core/devmode/protection.py
realize_core/devmode/scaffolder.py
realize_core/dreaming/__init__.py
realize_core/dreaming/curator.py
realize_core/dreaming/inbox.py
realize_core/dreaming/policy.py
realize_core/dreaming/reflex.py
realize_core/eval/__init__.py
realize_core/eval/harness.py
realize_core/eval/suites/agency_eval.yaml
realize_core/eval/suites/saas_eval.yaml
realize_core/evolution/__init__.py
realize_core/evolution/analytics.py
realize_core/evolution/engine.py
realize_core/evolution/gap_detector.py
realize_core/evolution/handler.py
realize_core/evolution/nightly_eval.py
realize_core/evolution/prompt_refiner.py
realize_core/evolution/skill_suggester.py
realize_core/evolution/tracker.py
realize_core/extensions/__init__.py
realize_core/extensions/base.py
realize_core/extensions/cron.py
realize_core/extensions/hooks.py
realize_core/extensions/loader.py
realize_core/extensions/registry.py
realize_core/fabric/__init__.py
realize_core/fabric/crud.py
realize_core/fabric/entity.py
realize_core/fabric/event_log.py
realize_core/fabric/event_types.py
realize_core/fabric/id_gen.py
realize_core/fabric/parser.py
realize_core/fabric/refs.py
realize_core/fabric/soul.py
realize_core/fabric/synapse.py
realize_core/fabric/synapse_db.py
realize_core/fabric/tags.py
realize_core/fabric/validator.py
realize_core/fabric/writer.py
realize_core/governance/__init__.py
realize_core/governance/gates.py
realize_core/governance/trust_ladder.py
realize_core/ingestion/__init__.py
realize_core/ingestion/extractor.py
realize_core/kb/__init__.py
realize_core/kb/indexer.py
realize_core/llm/__init__.py
realize_core/llm/base_provider.py
realize_core/llm/benchmark_cache.py
realize_core/llm/classifier.py
realize_core/llm/claude_client.py
realize_core/llm/gemini_client.py
realize_core/llm/litellm_provider.py
realize_core/llm/provider_capabilities.yaml
realize_core/llm/registry.py
realize_core/llm/router.py
realize_core/llm/routing_engine.py
realize_core/llm/providers/__init__.py
realize_core/llm/providers/claude_provider.py
realize_core/llm/providers/gemini_provider.py
realize_core/llm/providers/ollama_provider.py
realize_core/llm/providers/openai_provider.py
realize_core/mcp_server/__init__.py
realize_core/mcp_server/auth.py
realize_core/mcp_server/config.py
realize_core/mcp_server/mount.py
realize_core/mcp_server/registry.py
realize_core/mcp_server/server.py
realize_core/mcp_server/tools/__init__.py
realize_core/mcp_server/tools/admin_tools.py
realize_core/mcp_server/tools/chat_tools.py
realize_core/mcp_server/tools/kb_tools.py
realize_core/mcp_server/tools/ops_tools.py
realize_core/media/__init__.py
realize_core/memory/__init__.py
realize_core/memory/consolidator.py
realize_core/memory/conversation.py
realize_core/memory/preference_learner.py
realize_core/memory/store.py
realize_core/migration/__init__.py
realize_core/migration/engine.py
realize_core/migration/versions/001_baseline.py
realize_core/migration/versions/002_v5_tables.py
realize_core/migration/versions/003_storage_sync_and_indexes.py
realize_core/migration/versions/004_approval_requests.py
realize_core/migration/versions/005_messaging_tables.py
realize_core/migration/versions/006_user_sessions.py
realize_core/migration/versions/__init__.py
realize_core/missions/__init__.py
realize_core/missions/engine.py
realize_core/missions/state.py
realize_core/optimizer/__init__.py
realize_core/optimizer/base.py
realize_core/optimizer/engine.py
realize_core/optimizer/metrics.py
realize_core/optimizer/tracker.py
realize_core/pipeline/__init__.py
realize_core/pipeline/creative.py
realize_core/pipeline/session.py
realize_core/plugins/__init__.py
realize_core/plugins/loader.py
realize_core/plugins/venture_io.py
realize_core/prompt/__init__.py
realize_core/prompt/brand.py
realize_core/prompt/brief.py
realize_core/prompt/builder.py
realize_core/prompt/goal.py
realize_core/runtimes/__init__.py
realize_core/runtimes/contract.py
realize_core/runtimes/events.py
realize_core/runtimes/internal.py
realize_core/runtimes/registry.py
realize_core/scheduler/__init__.py
realize_core/scheduler/heartbeat.py
realize_core/scheduler/hierarchy.py
realize_core/scheduler/lifecycle.py
realize_core/scheduler/reports.py
realize_core/security/__init__.py
realize_core/security/audit.py
realize_core/security/injection.py
realize_core/security/jwt_auth.py
realize_core/security/rbac.py
realize_core/security/sanitizer.py
realize_core/security/scanner.py
realize_core/security/session_store.py
realize_core/security/users.py
realize_core/skills/__init__.py
realize_core/skills/base.py
realize_core/skills/creator.py
realize_core/skills/detector.py
realize_core/skills/executor.py
realize_core/skills/library.py
realize_core/skills/md_loader.py
realize_core/skills/semantic.py
realize_core/skills/dev_workflows/architecture-review.yaml
realize_core/skills/dev_workflows/code-review.yaml
realize_core/skills/dev_workflows/dev-planning.yaml
realize_core/skills/dev_workflows/dev-story.yaml
realize_core/storage/__init__.py
realize_core/storage/base.py
realize_core/storage/factory.py
realize_core/storage/local.py
realize_core/storage/s3.py
realize_core/storage/sync.py
realize_core/templates/__init__.py
realize_core/templates/marketplace.py
realize_core/tools/__init__.py
realize_core/tools/approval.py
realize_core/tools/automation.py
realize_core/tools/base_tool.py
realize_core/tools/browser.py
realize_core/tools/doc_generator.py
realize_core/tools/gating.py
realize_core/tools/google_auth.py
realize_core/tools/google_sheets.py
realize_core/tools/google_workspace.py
realize_core/tools/gws_base.py
realize_core/tools/gws_cli_tool.py
realize_core/tools/mcp.py
realize_core/tools/messaging.py
realize_core/tools/pm_tools.py
realize_core/tools/social.py
realize_core/tools/stripe_tools.py
realize_core/tools/telephony.py
realize_core/tools/tool_registry.py
realize_core/tools/voice.py
realize_core/tools/web.py
realize_core/tools/web_tool.py
realize_core/utils/__init__.py
realize_core/utils/cost_tracker.py
realize_core/utils/humanizer.py
realize_core/utils/rate_limiter.py
realize_core/workflows/__init__.py
realize_lite/CLAUDE.md
realize_lite/README.md
realize_lite/realize-os.yaml
realize_lite/setup-guide.md
realize_lite/shared/identity.md
realize_lite/shared/user-preferences.md
realize_lite/shared/venture-worksheet.md
realize_lite/shared/methods/README.md
realize_lite/shared/methods/competitive-analysis.md
realize_lite/shared/methods/content-repurposing.md
realize_lite/shared/methods/decision-framework.md
realize_lite/systems/my-business-1/A-agents/_README.md
realize_lite/systems/my-business-1/A-agents/analyst.md
realize_lite/systems/my-business-1/A-agents/orchestrator.md
realize_lite/systems/my-business-1/A-agents/reviewer.md
realize_lite/systems/my-business-1/A-agents/writer.md
realize_lite/systems/my-business-1/B-brain/_index.md
realize_lite/systems/my-business-1/B-brain/domain-knowledge.md
realize_lite/systems/my-business-1/B-brain/market-notes.md
realize_lite/systems/my-business-1/C-creations/README.md
realize_lite/systems/my-business-1/C-creations/_README.md
realize_lite/systems/my-business-1/F-foundations/venture-identity.md
realize_lite/systems/my-business-1/F-foundations/venture-voice.md
realize_lite/systems/my-business-1/I-insights/learning-log.md
realize_lite/systems/my-business-1/R-routines/state-map.md
realize_lite/systems/my-business-1/R-routines/skills/client-proposal.yaml
realize_lite/systems/my-business-1/R-routines/skills/content-pipeline.yaml
realize_lite/systems/my-business-1/R-routines/skills/email-campaign.yaml
realize_lite/systems/my-business-1/R-routines/skills/market-research.yaml
realize_lite/systems/my-business-1/R-routines/skills/research-workflow.yaml
realize_lite/systems/my-business-1/R-routines/skills/social-media.yaml
realize_lite/systems/my-business-1/R-routines/skills/weekly-review.yaml
realize_lite/systems/my-business-2/A-agents/_README.md
realize_lite/systems/my-business-2/A-agents/analyst.md
realize_lite/systems/my-business-2/A-agents/orchestrator.md
realize_lite/systems/my-business-2/A-agents/reviewer.md
realize_lite/systems/my-business-2/A-agents/writer.md
realize_lite/systems/my-business-2/B-brain/domain-knowledge.md
realize_lite/systems/my-business-2/B-brain/market-notes.md
realize_lite/systems/my-business-2/C-creations/README.md
realize_lite/systems/my-business-2/F-foundations/venture-identity.md
realize_lite/systems/my-business-2/F-foundations/venture-voice.md
realize_lite/systems/my-business-2/I-insights/learning-log.md
realize_lite/systems/my-business-2/R-routines/state-map.md
realize_lite/systems/my-business-2/R-routines/skills/client-proposal.yaml
realize_lite/systems/my-business-2/R-routines/skills/content-pipeline.yaml
realize_lite/systems/my-business-2/R-routines/skills/email-campaign.yaml
realize_lite/systems/my-business-2/R-routines/skills/research-workflow.yaml
realize_lite/systems/my-business-2/R-routines/skills/social-media.yaml
realize_lite/systems/my-business-2/R-routines/skills/weekly-review.yaml
realize_lite/systems/my-business-3/A-agents/_README.md
realize_lite/systems/my-business-3/A-agents/analyst.md
realize_lite/systems/my-business-3/A-agents/orchestrator.md
realize_lite/systems/my-business-3/A-agents/reviewer.md
realize_lite/systems/my-business-3/A-agents/writer.md
realize_lite/systems/my-business-3/B-brain/domain-knowledge.md
realize_lite/systems/my-business-3/B-brain/market-notes.md
realize_lite/systems/my-business-3/C-creations/README.md
realize_lite/systems/my-business-3/F-foundations/venture-identity.md
realize_lite/systems/my-business-3/F-foundations/venture-voice.md
realize_lite/systems/my-business-3/I-insights/learning-log.md
realize_lite/systems/my-business-3/R-routines/state-map.md
realize_lite/systems/my-business-3/R-routines/skills/client-proposal.yaml
realize_lite/systems/my-business-3/R-routines/skills/content-pipeline.yaml
realize_lite/systems/my-business-3/R-routines/skills/email-campaign.yaml
realize_lite/systems/my-business-3/R-routines/skills/research-workflow.yaml
realize_lite/systems/my-business-3/R-routines/skills/social-media.yaml
realize_lite/systems/my-business-3/R-routines/skills/weekly-review.yaml
realize_os.egg-info/PKG-INFO
realize_os.egg-info/SOURCES.txt
realize_os.egg-info/dependency_links.txt
realize_os.egg-info/entry_points.txt
realize_os.egg-info/requires.txt
realize_os.egg-info/top_level.txt
templates/__init__.py
templates/accounting.yaml
templates/agency.yaml
templates/architecture-firm.yaml
templates/coaching.yaml
templates/consulting.yaml
templates/ecommerce.yaml
templates/freelance.yaml
templates/portfolio.yaml
templates/property-management.yaml
templates/real-estate-developer.yaml
templates/real-estate.yaml
templates/saas.yaml
templates/goals/agency-GOAL.md
templates/goals/saas-GOAL.md
templates/personas/agency-exec-assistant.yaml
templates/personas/consulting-strategist.yaml
templates/personas/saas-growth-analyst.yaml
templates/real-estate/A-agents/_README.md
templates/real-estate/A-agents/deal-analyst.md
templates/real-estate/A-agents/listing-specialist.md
templates/real-estate/A-agents/market-analyst.md
templates/real-estate/A-agents/operations.md
templates/real-estate/A-agents/orchestrator.md
templates/real-estate/A-agents/reviewer.md
templates/real-estate/A-agents/writer.md
templates/real-estate/B-brain/_index.md
templates/real-estate/B-brain/market-overview.md
templates/real-estate/B-brain/terminology.md
templates/real-estate/B-brain/italy/buying-process.md
templates/real-estate/B-brain/italy/tax-overview.md
templates/real-estate/B-brain/italy/useful-entities.md
templates/real-estate/B-brain/portugal/buying-process.md
templates/real-estate/B-brain/portugal/portal-guide.md
templates/real-estate/B-brain/portugal/tax-overview.md
templates/real-estate/B-brain/portugal/useful-entities.md
templates/real-estate/B-brain/spain/buying-process.md
templates/real-estate/B-brain/spain/tax-overview.md
templates/real-estate/B-brain/spain/useful-entities.md
templates/real-estate/C-creations/_README.md
templates/real-estate/F-foundations/venture-identity.md
templates/real-estate/F-foundations/venture-voice.md
templates/real-estate/I-insights/learning-log.md
templates/real-estate/R-routines/state-map.md
templates/real-estate/R-routines/skills/client-report.yaml
templates/real-estate/R-routines/skills/deal-evaluation.yaml
templates/real-estate/R-routines/skills/listing-creation.yaml
templates/real-estate/R-routines/skills/market-analysis.yaml
templates/real-estate/R-routines/skills/property-research.yaml
templates/real-estate/R-routines/skills/social-content.yaml
tests/test_activity_logger.py
tests/test_agent_guardrails.py
tests/test_agent_handoff.py
tests/test_agent_integration.py
tests/test_agent_loader.py
tests/test_agent_persona.py
tests/test_agent_pipeline.py
tests/test_api_integration.py
tests/test_api_routes.py
tests/test_api_routes_v2.py
tests/test_approval_tool.py
tests/test_auth_middleware.py
tests/test_base_handler.py
tests/test_base_provider.py
tests/test_benchmark_cache.py
tests/test_brand_profile.py
tests/test_channels.py
tests/test_classifier.py
tests/test_cli.py
tests/test_cli_commands.py
tests/test_cli_operator.py
tests/test_cli_story8.py
tests/test_config.py
tests/test_creative_pipeline.py
tests/test_data_layer_audit.py
tests/test_db_schema.py
tests/test_devmode_audit.py
tests/test_docker_config.py
tests/test_dreaming.py
tests/test_eval_harness.py
tests/test_evolution_api.py
tests/test_evolution_engine.py
tests/test_fabric.py
tests/test_goal_injection.py
tests/test_governance.py
tests/test_hardening_phase2.py
tests/test_hierarchy.py
tests/test_ingestion_components.py
tests/test_install_package.py
tests/test_interfaces.py
tests/test_kb_indexer.py
tests/test_lifecycle.py
tests/test_litellm_provider.py
tests/test_llm_router.py
tests/test_mcp_server.py
tests/test_mcp_tools_kb.py
tests/test_mcp_tools_ops.py
tests/test_media.py
tests/test_memory_utils.py
tests/test_messaging.py
tests/test_migration_engine.py
tests/test_missions.py
tests/test_optimizer.py
tests/test_plugins.py
tests/test_product_invariants.py
tests/test_prompt_builder.py
tests/test_registry.py
tests/test_routing_engine.py
tests/test_runtimes.py
tests/test_scaffold.py
tests/test_scheduler.py
tests/test_security.py
tests/test_security_hardening.py
tests/test_security_sprint4.py
tests/test_session_brief.py
tests/test_setup_wizard.py
tests/test_skill_detector.py
tests/test_skill_executor.py
tests/test_skill_md_loader.py
tests/test_skill_semantic.py
tests/test_sprint2_tools.py
tests/test_sprint3_extensions.py
tests/test_storage_backend.py
tests/test_synapse.py
tests/test_template_marketplace.py
tests/test_tool_gating.py
tests/test_tool_sdk.py
tests/test_tools_integration.py
tests/test_workflows.py