scribe-mcp 2.2__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.
- scribe_mcp-2.2/LICENSE +46 -0
- scribe_mcp-2.2/PKG-INFO +998 -0
- scribe_mcp-2.2/README.md +926 -0
- scribe_mcp-2.2/pyproject.toml +56 -0
- scribe_mcp-2.2/setup.cfg +4 -0
- scribe_mcp-2.2/src/scribe_mcp/__init__.py +11 -0
- scribe_mcp-2.2/src/scribe_mcp/__main__.py +31 -0
- scribe_mcp-2.2/src/scribe_mcp/bridges/__init__.py +46 -0
- scribe_mcp-2.2/src/scribe_mcp/bridges/api.py +204 -0
- scribe_mcp-2.2/src/scribe_mcp/bridges/examples/__init__.py +10 -0
- scribe_mcp-2.2/src/scribe_mcp/bridges/examples/hello_world_plugin.py +177 -0
- scribe_mcp-2.2/src/scribe_mcp/bridges/health.py +338 -0
- scribe_mcp-2.2/src/scribe_mcp/bridges/hooks.py +210 -0
- scribe_mcp-2.2/src/scribe_mcp/bridges/manifest.py +278 -0
- scribe_mcp-2.2/src/scribe_mcp/bridges/plugin.py +208 -0
- scribe_mcp-2.2/src/scribe_mcp/bridges/policy.py +115 -0
- scribe_mcp-2.2/src/scribe_mcp/bridges/registry.py +355 -0
- scribe_mcp-2.2/src/scribe_mcp/bridges/security.py +101 -0
- scribe_mcp-2.2/src/scribe_mcp/bridges/tools.py +196 -0
- scribe_mcp-2.2/src/scribe_mcp/cli/__init__.py +4 -0
- scribe_mcp-2.2/src/scribe_mcp/cli/main.py +358 -0
- scribe_mcp-2.2/src/scribe_mcp/cli/session_store.py +113 -0
- scribe_mcp-2.2/src/scribe_mcp/config/__init__.py +5 -0
- scribe_mcp-2.2/src/scribe_mcp/config/boundary_rules_schema.json +71 -0
- scribe_mcp-2.2/src/scribe_mcp/config/display_config.py +254 -0
- scribe_mcp-2.2/src/scribe_mcp/config/global_log_config.json +57 -0
- scribe_mcp-2.2/src/scribe_mcp/config/log_config.json +32 -0
- scribe_mcp-2.2/src/scribe_mcp/config/log_config.py +124 -0
- scribe_mcp-2.2/src/scribe_mcp/config/logging.py +48 -0
- scribe_mcp-2.2/src/scribe_mcp/config/mcp_config.json +12 -0
- scribe_mcp-2.2/src/scribe_mcp/config/paths.py +143 -0
- scribe_mcp-2.2/src/scribe_mcp/config/reminder_config.json +79 -0
- scribe_mcp-2.2/src/scribe_mcp/config/reminder_rules.json +196 -0
- scribe_mcp-2.2/src/scribe_mcp/config/repo_config.py +381 -0
- scribe_mcp-2.2/src/scribe_mcp/config/scribe_config_template.yaml +65 -0
- scribe_mcp-2.2/src/scribe_mcp/config/settings.py +236 -0
- scribe_mcp-2.2/src/scribe_mcp/config/vector_config.py +208 -0
- scribe_mcp-2.2/src/scribe_mcp/db/__init__.py +4 -0
- scribe_mcp-2.2/src/scribe_mcp/db/init.sql +210 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/__init__.py +1 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/actions/__init__.py +19 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/actions/append.py +14 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/actions/batch.py +73 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/actions/create.py +80 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/actions/edit.py +336 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/actions/query.py +332 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/actions/search.py +208 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/actions/status.py +14 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/change_logger.py +508 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/change_rollback.py +639 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/cli.py +208 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/conflict_resolver.py +463 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/diff_visualizer.py +492 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/file_watcher.py +384 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/healing.py +252 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/indexing.py +295 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/integrity_verifier.py +508 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/manager.py +2980 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/performance_monitor.py +554 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/preflight.py +86 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/runtime.py +576 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/special_create.py +583 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/special_indexes.py +430 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/sync_manager.py +523 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/utils.py +198 -0
- scribe_mcp-2.2/src/scribe_mcp/doc_management/validation.py +52 -0
- scribe_mcp-2.2/src/scribe_mcp/plugins/__init__.py +2 -0
- scribe_mcp-2.2/src/scribe_mcp/plugins/registry.py +541 -0
- scribe_mcp-2.2/src/scribe_mcp/plugins/vector_indexer.json +53 -0
- scribe_mcp-2.2/src/scribe_mcp/plugins/vector_indexer.py +996 -0
- scribe_mcp-2.2/src/scribe_mcp/py.typed +1 -0
- scribe_mcp-2.2/src/scribe_mcp/reminders.py +418 -0
- scribe_mcp-2.2/src/scribe_mcp/scripts/__init__.py +0 -0
- scribe_mcp-2.2/src/scribe_mcp/scripts/backfill_log_type.py +118 -0
- scribe_mcp-2.2/src/scribe_mcp/scripts/check_vector_index.py +104 -0
- scribe_mcp-2.2/src/scribe_mcp/scripts/migrate_database.py +314 -0
- scribe_mcp-2.2/src/scribe_mcp/scripts/reindex_docs.py +49 -0
- scribe_mcp-2.2/src/scribe_mcp/scripts/reindex_vector.py +586 -0
- scribe_mcp-2.2/src/scribe_mcp/scripts/scribe.py +362 -0
- scribe_mcp-2.2/src/scribe_mcp/scripts/scribe_admin.py +571 -0
- scribe_mcp-2.2/src/scribe_mcp/scripts/scribe_cli.py +431 -0
- scribe_mcp-2.2/src/scribe_mcp/scripts/scribe_probe.py +404 -0
- scribe_mcp-2.2/src/scribe_mcp/scripts/test_mcp_server.py +168 -0
- scribe_mcp-2.2/src/scribe_mcp/scripts/verify_migration.py +117 -0
- scribe_mcp-2.2/src/scribe_mcp/security/__init__.py +2 -0
- scribe_mcp-2.2/src/scribe_mcp/security/sandbox.py +364 -0
- scribe_mcp-2.2/src/scribe_mcp/server.py +908 -0
- scribe_mcp-2.2/src/scribe_mcp/shared/__init__.py +3 -0
- scribe_mcp-2.2/src/scribe_mcp/shared/base_logging_tool.py +139 -0
- scribe_mcp-2.2/src/scribe_mcp/shared/execution_context.py +244 -0
- scribe_mcp-2.2/src/scribe_mcp/shared/log_enums.py +193 -0
- scribe_mcp-2.2/src/scribe_mcp/shared/logging_utils.py +732 -0
- scribe_mcp-2.2/src/scribe_mcp/shared/project_registry.py +716 -0
- scribe_mcp-2.2/src/scribe_mcp/shared/project_utils.py +153 -0
- scribe_mcp-2.2/src/scribe_mcp/shared/session_utils.py +80 -0
- scribe_mcp-2.2/src/scribe_mcp/shared/tool_runtime.py +395 -0
- scribe_mcp-2.2/src/scribe_mcp/state/__init__.py +6 -0
- scribe_mcp-2.2/src/scribe_mcp/state/agent_identity.py +260 -0
- scribe_mcp-2.2/src/scribe_mcp/state/agent_manager.py +526 -0
- scribe_mcp-2.2/src/scribe_mcp/state/manager.py +407 -0
- scribe_mcp-2.2/src/scribe_mcp/storage/__init__.py +30 -0
- scribe_mcp-2.2/src/scribe_mcp/storage/base.py +400 -0
- scribe_mcp-2.2/src/scribe_mcp/storage/models.py +210 -0
- scribe_mcp-2.2/src/scribe_mcp/storage/pool.py +409 -0
- scribe_mcp-2.2/src/scribe_mcp/storage/postgres.py +260 -0
- scribe_mcp-2.2/src/scribe_mcp/storage/sqlite/__init__.py +433 -0
- scribe_mcp-2.2/src/scribe_mcp/storage/sqlite/compat_migrations.py +200 -0
- scribe_mcp-2.2/src/scribe_mcp/storage/sqlite/documents.py +60 -0
- scribe_mcp-2.2/src/scribe_mcp/storage/sqlite/domain_facade.py +547 -0
- scribe_mcp-2.2/src/scribe_mcp/storage/sqlite/entries.py +451 -0
- scribe_mcp-2.2/src/scribe_mcp/storage/sqlite/internals.py +259 -0
- scribe_mcp-2.2/src/scribe_mcp/storage/sqlite/migrations.py +308 -0
- scribe_mcp-2.2/src/scribe_mcp/storage/sqlite/planning.py +308 -0
- scribe_mcp-2.2/src/scribe_mcp/storage/sqlite/projects.py +251 -0
- scribe_mcp-2.2/src/scribe_mcp/storage/sqlite/schema.py +491 -0
- scribe_mcp-2.2/src/scribe_mcp/storage/sqlite/sessions.py +449 -0
- scribe_mcp-2.2/src/scribe_mcp/storage/sqlite/telemetry.py +398 -0
- scribe_mcp-2.2/src/scribe_mcp/storage/sqlite/telemetry_support.py +275 -0
- scribe_mcp-2.2/src/scribe_mcp/template_engine/__init__.py +11 -0
- scribe_mcp-2.2/src/scribe_mcp/template_engine/cli.py +160 -0
- scribe_mcp-2.2/src/scribe_mcp/template_engine/engine.py +593 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/__init__.py +194 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/__pycache__/__init__.cpython-311.pyc +0 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/custom/project_header.md +51 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/documents/AGENT_REPORT_CARD_TEMPLATE.md +158 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/documents/ARCHITECTURE_GUIDE_TEMPLATE.md +124 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/documents/BUG_LOG_TEMPLATE.md +76 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/documents/BUG_REPORT_TEMPLATE.md +78 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/documents/CHECKLIST_TEMPLATE.md +59 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/documents/DOC_LOG_TEMPLATE.md +48 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/documents/GLOBAL_PROGRESS_LOG_TEMPLATE.md +87 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/documents/PHASE_PLAN_TEMPLATE.md +97 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/documents/PROGRESS_LOG_TEMPLATE.md +38 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/documents/RESEARCH_REPORT_TEMPLATE.md +66 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/documents/REVIEW_REPORT_TEMPLATE.md +135 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/documents/SECURITY_LOG_TEMPLATE.md +60 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/documents/base_document.md +85 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/documents/base_log.md +61 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/fragments/api_endpoints.md +26 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/fragments/directory_structure.md +43 -0
- scribe_mcp-2.2/src/scribe_mcp/templates/fragments/testing_strategy.md +50 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/__init__.py +39 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/agent_project_utils.py +192 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/append_entry.py +2189 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/base/__init__.py +34 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/base/base_tool.py +150 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/base/parameter_normalizer.py +163 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/base/tool_metadata.py +482 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/base/tool_result.py +89 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/config/append_entry_config.py +602 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/config/query_entries_config.py +590 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/config/rotate_log_config.py +494 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/constants.py +11 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/delete_project.py +238 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/doctor.py +113 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/edit_file.py +388 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/generate_doc_templates.py +597 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/get_project.py +649 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/health_check.py +315 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/list_projects.py +734 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/manage_docs.py +244 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/manage_docs_validation.py +287 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/project_utils.py +254 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/query_entries.py +2204 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/read_file.py +2553 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/read_recent.py +591 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/rotate_log.py +2132 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/search.py +919 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/sentinel_tools.py +710 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/set_project.py +963 -0
- scribe_mcp-2.2/src/scribe_mcp/tools/vector_search.py +419 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/__init__.py +26 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/audit.py +403 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/bulk_processor.py +585 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/config_manager.py +1504 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/context_safety.py +293 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/diff_compiler.py +24 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/entry_limit.py +151 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/error_handler.py +1517 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/estimator.py +768 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/files.py +864 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/formatters/__init__.py +37 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/formatters/base.py +323 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/formatters/dispatcher.py +470 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/formatters/entry.py +743 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/formatters/file.py +767 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/formatters/project.py +1022 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/formatters/ui.py +427 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/frontmatter.py +125 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/integrity.py +264 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/logs.py +94 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/parameter_validator.py +1538 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/path_suggestions.py +249 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/path_utils.py +107 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/reminder_engine.py +606 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/reminder_monitoring.py +523 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/reminder_validator.py +285 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/response.py +1365 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/rotation_state.py +532 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/search.py +40 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/sentinel_logs.py +182 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/slug.py +88 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/time.py +80 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/tokens.py +360 -0
- scribe_mcp-2.2/src/scribe_mcp/utils/tool_logger.py +208 -0
- scribe_mcp-2.2/src/scribe_mcp.egg-info/PKG-INFO +998 -0
- scribe_mcp-2.2/src/scribe_mcp.egg-info/SOURCES.txt +356 -0
- scribe_mcp-2.2/src/scribe_mcp.egg-info/dependency_links.txt +1 -0
- scribe_mcp-2.2/src/scribe_mcp.egg-info/entry_points.txt +4 -0
- scribe_mcp-2.2/src/scribe_mcp.egg-info/requires.txt +16 -0
- scribe_mcp-2.2/src/scribe_mcp.egg-info/top_level.txt +1 -0
- scribe_mcp-2.2/tests/test_agent_identity_and_resumption.py +248 -0
- scribe_mcp-2.2/tests/test_agent_manager.py +160 -0
- scribe_mcp-2.2/tests/test_all_tools_phase5.py +46 -0
- scribe_mcp-2.2/tests/test_append_entry_config.py +715 -0
- scribe_mcp-2.2/tests/test_append_entry_integration.py +204 -0
- scribe_mcp-2.2/tests/test_append_entry_priority.py +258 -0
- scribe_mcp-2.2/tests/test_append_entry_tee_routing.py +76 -0
- scribe_mcp-2.2/tests/test_audit_trails.py +256 -0
- scribe_mcp-2.2/tests/test_auto_registration.py +313 -0
- scribe_mcp-2.2/tests/test_auto_registration_production.py +133 -0
- scribe_mcp-2.2/tests/test_auto_registration_real.py +169 -0
- scribe_mcp-2.2/tests/test_backup_integration.py +87 -0
- scribe_mcp-2.2/tests/test_base_formatter.py +454 -0
- scribe_mcp-2.2/tests/test_base_logging_tool.py +124 -0
- scribe_mcp-2.2/tests/test_bridge_registry.py +1209 -0
- scribe_mcp-2.2/tests/test_bridge_system.py +574 -0
- scribe_mcp-2.2/tests/test_bulk_processor_detect_bulk_mode.py +23 -0
- scribe_mcp-2.2/tests/test_bulletproof_corrector_enhancements.py +464 -0
- scribe_mcp-2.2/tests/test_bulletproof_fallback_manager.py +649 -0
- scribe_mcp-2.2/tests/test_bulletproof_integration.py +292 -0
- scribe_mcp-2.2/tests/test_cleanup_old_entries.py +272 -0
- scribe_mcp-2.2/tests/test_config_manager.py +391 -0
- scribe_mcp-2.2/tests/test_conflict_scenarios.py +263 -0
- scribe_mcp-2.2/tests/test_connection_isolation_fix.py +197 -0
- scribe_mcp-2.2/tests/test_connection_pool.py +366 -0
- scribe_mcp-2.2/tests/test_database_migration.py +360 -0
- scribe_mcp-2.2/tests/test_db_activation.py +517 -0
- scribe_mcp-2.2/tests/test_db_routing.py +84 -0
- scribe_mcp-2.2/tests/test_diff_compiler.py +18 -0
- scribe_mcp-2.2/tests/test_dispatcher.py +697 -0
- scribe_mcp-2.2/tests/test_doc_management.py +1148 -0
- scribe_mcp-2.2/tests/test_doc_management_basic.py +569 -0
- scribe_mcp-2.2/tests/test_dual_parameter_integration.py +174 -0
- scribe_mcp-2.2/tests/test_dual_parameter_logic.py +246 -0
- scribe_mcp-2.2/tests/test_dual_parameter_simple.py +156 -0
- scribe_mcp-2.2/tests/test_dual_parameter_support.py +212 -0
- scribe_mcp-2.2/tests/test_edit_file.py +133 -0
- scribe_mcp-2.2/tests/test_enhanced_append_entry.py +458 -0
- scribe_mcp-2.2/tests/test_entry_formatter.py +1049 -0
- scribe_mcp-2.2/tests/test_entry_limit.py +297 -0
- scribe_mcp-2.2/tests/test_error_enrichment_simple.py +289 -0
- scribe_mcp-2.2/tests/test_error_handler.py +515 -0
- scribe_mcp-2.2/tests/test_estimator.py +623 -0
- scribe_mcp-2.2/tests/test_exception_healer.py +681 -0
- scribe_mcp-2.2/tests/test_execution_context.py +232 -0
- scribe_mcp-2.2/tests/test_failure_priority.py +280 -0
- scribe_mcp-2.2/tests/test_fallback_path_fix_simple.py +92 -0
- scribe_mcp-2.2/tests/test_file_formatter.py +1071 -0
- scribe_mcp-2.2/tests/test_format_fixes.py +291 -0
- scribe_mcp-2.2/tests/test_frontmatter.py +272 -0
- scribe_mcp-2.2/tests/test_function_decomposition_integration.py +466 -0
- scribe_mcp-2.2/tests/test_gen_001_baseline_hash_recorded.py +189 -0
- scribe_mcp-2.2/tests/test_generate_doc_templates_target_dir.py +31 -0
- scribe_mcp-2.2/tests/test_get_project_formatter.py +422 -0
- scribe_mcp-2.2/tests/test_get_project_integration.py +254 -0
- scribe_mcp-2.2/tests/test_get_project_log_counts.py +29 -0
- scribe_mcp-2.2/tests/test_get_project_sitrep.py +397 -0
- scribe_mcp-2.2/tests/test_global_optimization_utils.py +308 -0
- scribe_mcp-2.2/tests/test_global_scribe.py +231 -0
- scribe_mcp-2.2/tests/test_health_check.py +125 -0
- scribe_mcp-2.2/tests/test_integration_phase5.py +596 -0
- scribe_mcp-2.2/tests/test_jinja2_engine.py +119 -0
- scribe_mcp-2.2/tests/test_last_known_project_hint.py +31 -0
- scribe_mcp-2.2/tests/test_list_projects_formatters.py +481 -0
- scribe_mcp-2.2/tests/test_list_projects_integration.py +380 -0
- scribe_mcp-2.2/tests/test_list_projects_registry_integration.py +44 -0
- scribe_mcp-2.2/tests/test_list_projects_sitrep.py +448 -0
- scribe_mcp-2.2/tests/test_log_enums.py +301 -0
- scribe_mcp-2.2/tests/test_logging_utils.py +351 -0
- scribe_mcp-2.2/tests/test_manage_docs_actions_post_fix.py +325 -0
- scribe_mcp-2.2/tests/test_manage_docs_checklist_helper.py +173 -0
- scribe_mcp-2.2/tests/test_manage_docs_chunking.py +29 -0
- scribe_mcp-2.2/tests/test_manage_docs_create_doc.py +284 -0
- scribe_mcp-2.2/tests/test_manage_docs_generate_toc.py +147 -0
- scribe_mcp-2.2/tests/test_manage_docs_index_updates.py +166 -0
- scribe_mcp-2.2/tests/test_manage_docs_normalization.py +57 -0
- scribe_mcp-2.2/tests/test_manage_docs_patch_range.py +645 -0
- scribe_mcp-2.2/tests/test_manage_docs_reminders.py +153 -0
- scribe_mcp-2.2/tests/test_manage_docs_semantic_limits.py +35 -0
- scribe_mcp-2.2/tests/test_manage_docs_structured_edit.py +330 -0
- scribe_mcp-2.2/tests/test_manage_docs_validate_crosslinks.py +77 -0
- scribe_mcp-2.2/tests/test_mcp_tools_enhancements.py +432 -0
- scribe_mcp-2.2/tests/test_migration_priority_columns.py +240 -0
- scribe_mcp-2.2/tests/test_multi_repo_file_ops.py +34 -0
- scribe_mcp-2.2/tests/test_parameter_validator.py +529 -0
- scribe_mcp-2.2/tests/test_path_resolution_debug.py +70 -0
- scribe_mcp-2.2/tests/test_path_suggestions.py +357 -0
- scribe_mcp-2.2/tests/test_performance.py +459 -0
- scribe_mcp-2.2/tests/test_phase3_state_manager.py +142 -0
- scribe_mcp-2.2/tests/test_plugin_registry_runtime.py +39 -0
- scribe_mcp-2.2/tests/test_preflight_backup.py +132 -0
- scribe_mcp-2.2/tests/test_project_registry.py +262 -0
- scribe_mcp-2.2/tests/test_project_state_detection.py +318 -0
- scribe_mcp-2.2/tests/test_query_entries_config.py +495 -0
- scribe_mcp-2.2/tests/test_query_entries_db.py +375 -0
- scribe_mcp-2.2/tests/test_query_entries_explicit_project_resolution.py +85 -0
- scribe_mcp-2.2/tests/test_query_entries_fields_parameter.py +43 -0
- scribe_mcp-2.2/tests/test_query_entries_message_filter_regression.py +45 -0
- scribe_mcp-2.2/tests/test_query_integration.py +327 -0
- scribe_mcp-2.2/tests/test_query_performance.py +175 -0
- scribe_mcp-2.2/tests/test_query_priority_filters.py +266 -0
- scribe_mcp-2.2/tests/test_read_file_dependencies.py +1722 -0
- scribe_mcp-2.2/tests/test_read_file_enhancements.py +269 -0
- scribe_mcp-2.2/tests/test_read_file_phase4_bugs.py +177 -0
- scribe_mcp-2.2/tests/test_read_file_readable.py +419 -0
- scribe_mcp-2.2/tests/test_read_file_tool.py +279 -0
- scribe_mcp-2.2/tests/test_read_recent_limit.py +128 -0
- scribe_mcp-2.2/tests/test_read_search_error_integration.py +309 -0
- scribe_mcp-2.2/tests/test_reminder_hash_session.py +231 -0
- scribe_mcp-2.2/tests/test_reminder_history_schema.py +271 -0
- scribe_mcp-2.2/tests/test_reminder_storage.py +403 -0
- scribe_mcp-2.2/tests/test_reminder_time_variables.py +33 -0
- scribe_mcp-2.2/tests/test_response_formatter_helpers.py +354 -0
- scribe_mcp-2.2/tests/test_response_formatter_readable.py +1224 -0
- scribe_mcp-2.2/tests/test_rotate_log_config.py +505 -0
- scribe_mcp-2.2/tests/test_rotation_utils.py +463 -0
- scribe_mcp-2.2/tests/test_sandbox_bypass.py +255 -0
- scribe_mcp-2.2/tests/test_schema_fix.py +137 -0
- scribe_mcp-2.2/tests/test_search_pagination.py +313 -0
- scribe_mcp-2.2/tests/test_search_tool.py +365 -0
- scribe_mcp-2.2/tests/test_session_identity_integration.py +191 -0
- scribe_mcp-2.2/tests/test_session_integration.py +175 -0
- scribe_mcp-2.2/tests/test_session_isolation.py +450 -0
- scribe_mcp-2.2/tests/test_session_project_cache.py +47 -0
- scribe_mcp-2.2/tests/test_set_project.py +297 -0
- scribe_mcp-2.2/tests/test_set_project_formatters.py +423 -0
- scribe_mcp-2.2/tests/test_set_project_integration.py +163 -0
- scribe_mcp-2.2/tests/test_set_project_sitrep.py +481 -0
- scribe_mcp-2.2/tests/test_slug.py +131 -0
- scribe_mcp-2.2/tests/test_sqlite_internals.py +132 -0
- scribe_mcp-2.2/tests/test_template_engine_manage_docs.py +741 -0
- scribe_mcp-2.2/tests/test_template_filter.py +107 -0
- scribe_mcp-2.2/tests/test_token_count.py +105 -0
- scribe_mcp-2.2/tests/test_token_optimization.py +102 -0
- scribe_mcp-2.2/tests/test_tool_calls_schema.py +282 -0
- scribe_mcp-2.2/tests/test_tool_logger.py +496 -0
- scribe_mcp-2.2/tests/test_tools.py +680 -0
- scribe_mcp-2.2/tests/test_ui_formatter.py +331 -0
- scribe_mcp-2.2/tests/test_utils.py +118 -0
- scribe_mcp-2.2/tests/test_vector_complete_integration.py +430 -0
- scribe_mcp-2.2/tests/test_vector_entry_ids.py +200 -0
- scribe_mcp-2.2/tests/test_vector_indexer.py +517 -0
- scribe_mcp-2.2/tests/test_vector_indexer_torchvision_guard.py +52 -0
- scribe_mcp-2.2/tests/test_vector_integration.py +568 -0
- scribe_mcp-2.2/tests/test_vector_performance.py +500 -0
- scribe_mcp-2.2/tests/test_vector_search_tools.py +452 -0
- scribe_mcp-2.2/tests/test_versioning_behavior.py +96 -0
scribe_mcp-2.2/LICENSE
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
## Scribe MCP License (Community + Small Business License)
|
|
2
|
+
|
|
3
|
+
**Version 1.0 — December 2025**
|
|
4
|
+
Copyright © 2025 CortaLabs
|
|
5
|
+
|
|
6
|
+
### 1. **Permissions**
|
|
7
|
+
|
|
8
|
+
You are free to:
|
|
9
|
+
|
|
10
|
+
* Use, modify, and distribute this software for **personal**, **research**, **educational**, **open-source**, or **non-commercial** purposes.
|
|
11
|
+
* Use this software **commercially** if your organization meets **all** the following:
|
|
12
|
+
|
|
13
|
+
* Fewer than **25 employees**, and
|
|
14
|
+
* Less than **$1,000,000 USD annual revenue**, and
|
|
15
|
+
* Your use does **not** involve selling, hosting, or packaging Scribe MCP or derivative works as part of a paid product or service.
|
|
16
|
+
|
|
17
|
+
### 2. **Restrictions**
|
|
18
|
+
|
|
19
|
+
You **may not**:
|
|
20
|
+
|
|
21
|
+
* Use this software as part of a **commercial service or product** if your organization exceeds the employee or revenue limits listed above.
|
|
22
|
+
* Sell, license, or otherwise monetize any version of Scribe MCP or derivative works without a separate commercial agreement.
|
|
23
|
+
* Remove or alter licensing notices.
|
|
24
|
+
|
|
25
|
+
### 3. **Enterprise Licensing**
|
|
26
|
+
|
|
27
|
+
If your organization:
|
|
28
|
+
|
|
29
|
+
* exceeds the small-business limits, or
|
|
30
|
+
* intends to use Scribe MCP in a paid SaaS/product, or
|
|
31
|
+
* requires redistribution rights, proprietary embedding, or long-term support,
|
|
32
|
+
|
|
33
|
+
then you must obtain a **commercial license** from:
|
|
34
|
+
|
|
35
|
+
```
|
|
36
|
+
CortaLabs — licensing@cortalabs.com
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### 4. **No Warranty**
|
|
40
|
+
|
|
41
|
+
The software is provided “as-is” without warranty of any kind.
|
|
42
|
+
|
|
43
|
+
### 5. **License Compatibility**
|
|
44
|
+
|
|
45
|
+
This license is **source-available** but **not OSI-open-source**.
|
|
46
|
+
You may **fork**, **modify**, and **extend** Scribe MCP, but you may not remove the noncommercial restrictions for others.
|