This is page 3 of 21. Use http://codebase.md/sparesparrow/mcp-project-orchestrator?lines=false&page={x} to view the full context.
# Directory Structure
```
├── .cursorrules
├── .env.example
├── .github
│ └── workflows
│ ├── build.yml
│ ├── ci-cd.yml
│ ├── ci.yml
│ ├── deploy.yml
│ ├── ecosystem-monitor.yml
│ ├── fan-out-orchestrator.yml
│ └── release.yml
├── .gitignore
├── .pre-commit-config.yaml
├── AUTOMOTIVE_CAMERA_SYSTEM_SUMMARY.md
├── automotive-camera-system
│ ├── docs
│ │ └── IMPLEMENTACE_CS.md
│ └── README.md
├── AWS_MCP_IMPLEMENTATION_SUMMARY.md
├── AWS_MCP_QUICKSTART.md
├── AWS_SIP_TRUNK_DEPLOYMENT_COMPLETE.md
├── aws-sip-trunk
│ ├── .gitignore
│ ├── config
│ │ ├── extensions.conf.j2
│ │ └── pjsip.conf.j2
│ ├── DEPLOYMENT_SUMMARY.md
│ ├── docs
│ │ ├── DEPLOYMENT.md
│ │ └── TROUBLESHOOTING.md
│ ├── PROJECT_INDEX.md
│ ├── pyproject.toml
│ ├── QUICKSTART.md
│ ├── README.md
│ ├── scripts
│ │ ├── deploy-asterisk-aws.sh
│ │ └── user-data.sh
│ ├── terraform
│ │ ├── ec2.tf
│ │ ├── main.tf
│ │ ├── monitoring.tf
│ │ ├── networking.tf
│ │ ├── outputs.tf
│ │ ├── storage.tf
│ │ ├── terraform.tfvars.example
│ │ └── variables.tf
│ ├── tests
│ │ └── test_sip_connectivity.py
│ └── VERIFICATION_CHECKLIST.md
├── CLAUDE.md
├── component_templates.json
├── conanfile.py
├── config
│ ├── default.json
│ └── project_orchestration.json
├── Containerfile
├── cursor-templates
│ └── openssl
│ ├── linux-dev.mdc.jinja2
│ └── shared.mdc.jinja2
├── data
│ └── prompts
│ └── templates
│ ├── advanced-multi-server-template.json
│ ├── analysis-assistant.json
│ ├── analyze-mermaid-diagram.json
│ ├── architecture-design-assistant.json
│ ├── code-diagram-documentation-creator.json
│ ├── code-refactoring-assistant.json
│ ├── code-review-assistant.json
│ ├── collaborative-development.json
│ ├── consolidated-interfaces-template.json
│ ├── could-you-interpret-the-assumed-applicat.json
│ ├── data-analysis-template.json
│ ├── database-query-assistant.json
│ ├── debugging-assistant.json
│ ├── development-system-prompt-zcna0.json
│ ├── development-system-prompt.json
│ ├── development-workflow.json
│ ├── docker-compose-prompt-combiner.json
│ ├── docker-containerization-guide.json
│ ├── docker-mcp-servers-orchestration.json
│ ├── foresight-assistant.json
│ ├── generate-different-types-of-questions-ab.json
│ ├── generate-mermaid-diagram.json
│ ├── image-1-describe-the-icon-in-one-sen.json
│ ├── initialize-project-setup-for-a-new-micro.json
│ ├── install-dependencies-build-run-test.json
│ ├── mcp-code-generator.json
│ ├── mcp-integration-assistant.json
│ ├── mcp-resources-explorer.json
│ ├── mcp-resources-integration.json
│ ├── mcp-server-configurator.json
│ ├── mcp-server-dev-prompt-combiner.json
│ ├── mcp-server-integration-template.json
│ ├── mcp-template-system.json
│ ├── mermaid-analysis-expert.json
│ ├── mermaid-class-diagram-generator.json
│ ├── mermaid-diagram-generator.json
│ ├── mermaid-diagram-modifier.json
│ ├── modify-mermaid-diagram.json
│ ├── monorepo-migration-guide.json
│ ├── multi-resource-context.json
│ ├── project-analysis-assistant.json
│ ├── prompt-combiner-interface.json
│ ├── prompt-templates.json
│ ├── repository-explorer.json
│ ├── research-assistant.json
│ ├── sequential-data-analysis.json
│ ├── solid-code-analysis-visualizer.json
│ ├── task-list-helper-8ithy.json
│ ├── template-based-mcp-integration.json
│ ├── templates.json
│ ├── test-prompt.json
│ └── you-are-limited-to-respond-yes-or-no-onl.json
├── docs
│ ├── AWS_MCP.md
│ ├── AWS.md
│ ├── CONAN.md
│ └── integration.md
├── elevenlabs-agents
│ ├── agent-prompts.json
│ └── README.md
├── IMPLEMENTATION_STATUS.md
├── integration_plan.md
├── LICENSE
├── MANIFEST.in
├── mcp-project-orchestrator
│ └── openssl
│ ├── .github
│ │ └── workflows
│ │ └── validate-cursor-config.yml
│ ├── conanfile.py
│ ├── CURSOR_DEPLOYMENT_POLISH.md
│ ├── cursor-rules
│ │ ├── mcp.json.jinja2
│ │ ├── prompts
│ │ │ ├── fips-compliance.md.jinja2
│ │ │ ├── openssl-coding-standards.md.jinja2
│ │ │ └── pr-review.md.jinja2
│ │ └── rules
│ │ ├── ci-linux.mdc.jinja2
│ │ ├── linux-dev.mdc.jinja2
│ │ ├── macos-dev.mdc.jinja2
│ │ ├── shared.mdc.jinja2
│ │ └── windows-dev.mdc.jinja2
│ ├── docs
│ │ └── cursor-configuration-management.md
│ ├── examples
│ │ └── example-workspace
│ │ ├── .cursor
│ │ │ ├── mcp.json
│ │ │ └── rules
│ │ │ ├── linux-dev.mdc
│ │ │ └── shared.mdc
│ │ ├── .gitignore
│ │ ├── CMakeLists.txt
│ │ ├── conanfile.py
│ │ ├── profiles
│ │ │ ├── linux-gcc-debug.profile
│ │ │ └── linux-gcc-release.profile
│ │ ├── README.md
│ │ └── src
│ │ ├── crypto_utils.cpp
│ │ ├── crypto_utils.h
│ │ └── main.cpp
│ ├── IMPLEMENTATION_SUMMARY.md
│ ├── mcp_orchestrator
│ │ ├── __init__.py
│ │ ├── cli.py
│ │ ├── conan_integration.py
│ │ ├── cursor_config.py
│ │ ├── cursor_deployer.py
│ │ ├── deploy_cursor.py
│ │ ├── env_config.py
│ │ ├── platform_detector.py
│ │ └── yaml_validator.py
│ ├── openssl-cursor-example-workspace-20251014_121133.zip
│ ├── pyproject.toml
│ ├── README.md
│ ├── requirements.txt
│ ├── scripts
│ │ └── create_example_workspace.py
│ ├── setup.py
│ ├── test_deployment.py
│ └── tests
│ ├── __init__.py
│ ├── test_cursor_deployer.py
│ └── test_template_validation.py
├── printcast-agent
│ ├── .env.example
│ ├── config
│ │ └── asterisk
│ │ └── extensions.conf
│ ├── Containerfile
│ ├── docker-compose.yml
│ ├── pyproject.toml
│ ├── README.md
│ ├── scripts
│ │ └── docker-entrypoint.sh
│ ├── src
│ │ ├── integrations
│ │ │ ├── __init__.py
│ │ │ ├── asterisk.py
│ │ │ ├── content.py
│ │ │ ├── delivery.py
│ │ │ ├── elevenlabs.py
│ │ │ └── printing.py
│ │ ├── mcp_server
│ │ │ ├── __init__.py
│ │ │ ├── main.py
│ │ │ └── server.py
│ │ └── orchestration
│ │ ├── __init__.py
│ │ └── workflow.py
│ └── tests
│ └── test_mcp_server.py
├── project_orchestration.json
├── project_templates.json
├── pyproject.toml
├── README.md
├── REFACTORING_COMPLETED.md
├── REFACTORING_RECOMMENDATIONS.md
├── requirements.txt
├── scripts
│ ├── archive
│ │ ├── init_claude_test.sh
│ │ ├── init_postgres.sh
│ │ ├── start_mcp_servers.sh
│ │ └── test_claude_desktop.sh
│ ├── consolidate_mermaid.py
│ ├── consolidate_prompts.py
│ ├── consolidate_resources.py
│ ├── consolidate_templates.py
│ ├── INSTRUCTIONS.md
│ ├── README.md
│ ├── setup_aws_mcp.sh
│ ├── setup_mcp.sh
│ ├── setup_orchestrator.sh
│ ├── setup_project.py
│ └── test_mcp.sh
├── src
│ └── mcp_project_orchestrator
│ ├── __init__.py
│ ├── __main__.py
│ ├── aws_mcp.py
│ ├── cli
│ │ └── __init__.py
│ ├── cli.py
│ ├── commands
│ │ └── openssl_cli.py
│ ├── core
│ │ ├── __init__.py
│ │ ├── base.py
│ │ ├── config.py
│ │ ├── exceptions.py
│ │ ├── fastmcp.py
│ │ ├── logging.py
│ │ └── managers.py
│ ├── cursor_deployer.py
│ ├── ecosystem_monitor.py
│ ├── fan_out_orchestrator.py
│ ├── fastmcp.py
│ ├── mcp-py
│ │ ├── AggregateVersions.py
│ │ ├── CustomBashTool.py
│ │ ├── FileAnnotator.py
│ │ ├── mcp-client.py
│ │ ├── mcp-server.py
│ │ ├── MermaidDiagramGenerator.py
│ │ ├── NamingAgent.py
│ │ └── solid-analyzer-agent.py
│ ├── mermaid
│ │ ├── __init__.py
│ │ ├── generator.py
│ │ ├── mermaid_orchestrator.py
│ │ ├── renderer.py
│ │ ├── templates
│ │ │ ├── AbstractFactory-diagram.json
│ │ │ ├── Adapter-diagram.json
│ │ │ ├── Analyze_Mermaid_Diagram.json
│ │ │ ├── Builder-diagram.json
│ │ │ ├── Chain-diagram.json
│ │ │ ├── Code_Diagram_Documentation_Creator.json
│ │ │ ├── Command-diagram.json
│ │ │ ├── Decorator-diagram.json
│ │ │ ├── Facade-diagram.json
│ │ │ ├── Factory-diagram.json
│ │ │ ├── flowchart
│ │ │ │ ├── AbstractFactory-diagram.json
│ │ │ │ ├── Adapter-diagram.json
│ │ │ │ ├── Analyze_Mermaid_Diagram.json
│ │ │ │ ├── Builder-diagram.json
│ │ │ │ ├── Chain-diagram.json
│ │ │ │ ├── Code_Diagram_Documentation_Creator.json
│ │ │ │ ├── Command-diagram.json
│ │ │ │ ├── Decorator-diagram.json
│ │ │ │ ├── Facade-diagram.json
│ │ │ │ ├── Factory-diagram.json
│ │ │ │ ├── Generate_Mermaid_Diagram.json
│ │ │ │ ├── generated_diagram.json
│ │ │ │ ├── integration.json
│ │ │ │ ├── Iterator-diagram.json
│ │ │ │ ├── Mediator-diagram.json
│ │ │ │ ├── Memento-diagram.json
│ │ │ │ ├── Mermaid_Analysis_Expert.json
│ │ │ │ ├── Mermaid_Class_Diagram_Generator.json
│ │ │ │ ├── Mermaid_Diagram_Generator.json
│ │ │ │ ├── Mermaid_Diagram_Modifier.json
│ │ │ │ ├── Modify_Mermaid_Diagram.json
│ │ │ │ ├── Observer-diagram.json
│ │ │ │ ├── Prototype-diagram.json
│ │ │ │ ├── Proxy-diagram.json
│ │ │ │ ├── README.json
│ │ │ │ ├── Singleton-diagram.json
│ │ │ │ ├── State-diagram.json
│ │ │ │ ├── Strategy-diagram.json
│ │ │ │ ├── TemplateMethod-diagram.json
│ │ │ │ ├── theme_dark.json
│ │ │ │ ├── theme_default.json
│ │ │ │ ├── theme_pastel.json
│ │ │ │ ├── theme_vibrant.json
│ │ │ │ └── Visitor-diagram.json
│ │ │ ├── Generate_Mermaid_Diagram.json
│ │ │ ├── generated_diagram.json
│ │ │ ├── index.json
│ │ │ ├── integration.json
│ │ │ ├── Iterator-diagram.json
│ │ │ ├── Mediator-diagram.json
│ │ │ ├── Memento-diagram.json
│ │ │ ├── Mermaid_Analysis_Expert.json
│ │ │ ├── Mermaid_Class_Diagram_Generator.json
│ │ │ ├── Mermaid_Diagram_Generator.json
│ │ │ ├── Mermaid_Diagram_Modifier.json
│ │ │ ├── Modify_Mermaid_Diagram.json
│ │ │ ├── Observer-diagram.json
│ │ │ ├── Prototype-diagram.json
│ │ │ ├── Proxy-diagram.json
│ │ │ ├── README.json
│ │ │ ├── Singleton-diagram.json
│ │ │ ├── State-diagram.json
│ │ │ ├── Strategy-diagram.json
│ │ │ ├── TemplateMethod-diagram.json
│ │ │ ├── theme_dark.json
│ │ │ ├── theme_default.json
│ │ │ ├── theme_pastel.json
│ │ │ ├── theme_vibrant.json
│ │ │ └── Visitor-diagram.json
│ │ └── types.py
│ ├── project_orchestration.py
│ ├── prompt_manager
│ │ ├── __init__.py
│ │ ├── loader.py
│ │ ├── manager.py
│ │ └── template.py
│ ├── prompts
│ │ ├── __dirname.json
│ │ ├── __image_1___describe_the_icon_in_one_sen___.json
│ │ ├── __init__.py
│ │ ├── __type.json
│ │ ├── _.json
│ │ ├── _DEFAULT_OPEN_DELIMITER.json
│ │ ├── _emojiRegex.json
│ │ ├── _UUID_CHARS.json
│ │ ├── a.json
│ │ ├── A.json
│ │ ├── Aa.json
│ │ ├── aAnnotationPadding.json
│ │ ├── absoluteThresholdGroup.json
│ │ ├── add.json
│ │ ├── ADDITIONAL_PROPERTY_FLAG.json
│ │ ├── Advanced_Multi-Server_Integration_Template.json
│ │ ├── allOptionsList.json
│ │ ├── analysis
│ │ │ ├── Data_Analysis_Template.json
│ │ │ ├── index.json
│ │ │ ├── Mermaid_Analysis_Expert.json
│ │ │ ├── Sequential_Data_Analysis_with_MCP_Integration.json
│ │ │ └── SOLID_Code_Analysis_Visualizer.json
│ │ ├── Analysis_Assistant.json
│ │ ├── Analyze_Mermaid_Diagram.json
│ │ ├── ANDROID_EVERGREEN_FIRST.json
│ │ ├── ANSI_ESCAPE_BELL.json
│ │ ├── architecture
│ │ │ ├── index.json
│ │ │ └── PromptCombiner_Interface.json
│ │ ├── Architecture_Design_Assistant.json
│ │ ├── argsTag.json
│ │ ├── ARROW.json
│ │ ├── assistant
│ │ │ ├── Analysis_Assistant.json
│ │ │ ├── Architecture_Design_Assistant.json
│ │ │ ├── Code_Refactoring_Assistant.json
│ │ │ ├── Code_Review_Assistant.json
│ │ │ ├── Database_Query_Assistant.json
│ │ │ ├── Debugging_Assistant.json
│ │ │ ├── Foresight_Assistant.json
│ │ │ ├── index.json
│ │ │ ├── MCP_Integration_Assistant.json
│ │ │ ├── Project_Analysis_Assistant.json
│ │ │ └── Research_Assistant.json
│ │ ├── astralRange.json
│ │ ├── at.json
│ │ ├── authorization_endpoint.json
│ │ ├── b.json
│ │ ├── BABELIGNORE_FILENAME.json
│ │ ├── BACKSLASH.json
│ │ ├── backupId.json
│ │ ├── BANG.json
│ │ ├── BASE64_MAP.json
│ │ ├── baseFlags.json
│ │ ├── Basic_Template.json
│ │ ├── bgModel.json
│ │ ├── bignum.json
│ │ ├── blockKeywordsStr.json
│ │ ├── BOMChar.json
│ │ ├── boundary.json
│ │ ├── brackets.json
│ │ ├── BROWSER_VAR.json
│ │ ├── bt.json
│ │ ├── BUILTIN.json
│ │ ├── BULLET.json
│ │ ├── c.json
│ │ ├── C.json
│ │ ├── CACHE_VERSION.json
│ │ ├── cacheControl.json
│ │ ├── cacheProp.json
│ │ ├── category.py
│ │ ├── CHANGE_EVENT.json
│ │ ├── CHAR_CODE_0.json
│ │ ├── chars.json
│ │ ├── cjsPattern.json
│ │ ├── cKeywords.json
│ │ ├── classForPercent.json
│ │ ├── classStr.json
│ │ ├── clientFirstMessageBare.json
│ │ ├── cmd.json
│ │ ├── Code_Diagram_Documentation_Creator.json
│ │ ├── Code_Refactoring_Assistant.json
│ │ ├── Code_Review_Assistant.json
│ │ ├── code.json
│ │ ├── coding
│ │ │ ├── __dirname.json
│ │ │ ├── _.json
│ │ │ ├── _DEFAULT_OPEN_DELIMITER.json
│ │ │ ├── _emojiRegex.json
│ │ │ ├── _UUID_CHARS.json
│ │ │ ├── a.json
│ │ │ ├── A.json
│ │ │ ├── aAnnotationPadding.json
│ │ │ ├── absoluteThresholdGroup.json
│ │ │ ├── add.json
│ │ │ ├── ADDITIONAL_PROPERTY_FLAG.json
│ │ │ ├── allOptionsList.json
│ │ │ ├── ANDROID_EVERGREEN_FIRST.json
│ │ │ ├── ANSI_ESCAPE_BELL.json
│ │ │ ├── argsTag.json
│ │ │ ├── ARROW.json
│ │ │ ├── astralRange.json
│ │ │ ├── at.json
│ │ │ ├── authorization_endpoint.json
│ │ │ ├── BABELIGNORE_FILENAME.json
│ │ │ ├── BACKSLASH.json
│ │ │ ├── BANG.json
│ │ │ ├── BASE64_MAP.json
│ │ │ ├── baseFlags.json
│ │ │ ├── bgModel.json
│ │ │ ├── bignum.json
│ │ │ ├── blockKeywordsStr.json
│ │ │ ├── BOMChar.json
│ │ │ ├── boundary.json
│ │ │ ├── brackets.json
│ │ │ ├── BROWSER_VAR.json
│ │ │ ├── bt.json
│ │ │ ├── BUILTIN.json
│ │ │ ├── BULLET.json
│ │ │ ├── c.json
│ │ │ ├── C.json
│ │ │ ├── CACHE_VERSION.json
│ │ │ ├── cacheControl.json
│ │ │ ├── cacheProp.json
│ │ │ ├── CHANGE_EVENT.json
│ │ │ ├── CHAR_CODE_0.json
│ │ │ ├── chars.json
│ │ │ ├── cjsPattern.json
│ │ │ ├── cKeywords.json
│ │ │ ├── classForPercent.json
│ │ │ ├── classStr.json
│ │ │ ├── clientFirstMessageBare.json
│ │ │ ├── cmd.json
│ │ │ ├── code.json
│ │ │ ├── colorCode.json
│ │ │ ├── comma.json
│ │ │ ├── command.json
│ │ │ ├── configJsContent.json
│ │ │ ├── connectionString.json
│ │ │ ├── cssClassStr.json
│ │ │ ├── currentBoundaryParse.json
│ │ │ ├── d.json
│ │ │ ├── data.json
│ │ │ ├── DATA.json
│ │ │ ├── dataWebpackPrefix.json
│ │ │ ├── debug.json
│ │ │ ├── decodeStateVectorV2.json
│ │ │ ├── DEFAULT_DELIMITER.json
│ │ │ ├── DEFAULT_DIAGRAM_DIRECTION.json
│ │ │ ├── DEFAULT_JS_PATTERN.json
│ │ │ ├── DEFAULT_LOG_TARGET.json
│ │ │ ├── defaultHelpOpt.json
│ │ │ ├── defaultHost.json
│ │ │ ├── deferY18nLookupPrefix.json
│ │ │ ├── DELIM.json
│ │ │ ├── delimiter.json
│ │ │ ├── DEPRECATION.json
│ │ │ ├── destMain.json
│ │ │ ├── DID_NOT_THROW.json
│ │ │ ├── direction.json
│ │ │ ├── displayValue.json
│ │ │ ├── DNS.json
│ │ │ ├── doc.json
│ │ │ ├── DOCUMENTATION_NOTE.json
│ │ │ ├── DOT.json
│ │ │ ├── DOTS.json
│ │ │ ├── dummyCompoundId.json
│ │ │ ├── e.json
│ │ │ ├── E.json
│ │ │ ├── earlyHintsLink.json
│ │ │ ├── elide.json
│ │ │ ├── EMPTY.json
│ │ │ ├── end.json
│ │ │ ├── endpoint.json
│ │ │ ├── environment.json
│ │ │ ├── ERR_CODE.json
│ │ │ ├── errMessage.json
│ │ │ ├── errMsg.json
│ │ │ ├── ERROR_MESSAGE.json
│ │ │ ├── error.json
│ │ │ ├── ERROR.json
│ │ │ ├── ERRORCLASS.json
│ │ │ ├── errorMessage.json
│ │ │ ├── es6Default.json
│ │ │ ├── ESC.json
│ │ │ ├── Escapable.json
│ │ │ ├── escapedChar.json
│ │ │ ├── escapeFuncStr.json
│ │ │ ├── escSlash.json
│ │ │ ├── ev.json
│ │ │ ├── event.json
│ │ │ ├── execaMessage.json
│ │ │ ├── EXPECTED_LABEL.json
│ │ │ ├── expected.json
│ │ │ ├── expectedString.json
│ │ │ ├── expression1.json
│ │ │ ├── EXTENSION.json
│ │ │ ├── f.json
│ │ │ ├── FAIL_TEXT.json
│ │ │ ├── FILE_BROWSER_FACTORY.json
│ │ │ ├── fill.json
│ │ │ ├── findPackageJson.json
│ │ │ ├── fnKey.json
│ │ │ ├── FORMAT.json
│ │ │ ├── formatted.json
│ │ │ ├── from.json
│ │ │ ├── fullpaths.json
│ │ │ ├── FUNC_ERROR_TEXT.json
│ │ │ ├── GenStateSuspendedStart.json
│ │ │ ├── GENSYNC_EXPECTED_START.json
│ │ │ ├── gutter.json
│ │ │ ├── h.json
│ │ │ ├── handlerFuncName.json
│ │ │ ├── HASH_UNDEFINED.json
│ │ │ ├── head.json
│ │ │ ├── helpMessage.json
│ │ │ ├── HINT_ARG.json
│ │ │ ├── HOOK_RETURNED_NOTHING_ERROR_MESSAGE.json
│ │ │ ├── i.json
│ │ │ ├── id.json
│ │ │ ├── identifier.json
│ │ │ ├── Identifier.json
│ │ │ ├── INDENT.json
│ │ │ ├── indentation.json
│ │ │ ├── index.json
│ │ │ ├── INDIRECTION_FRAGMENT.json
│ │ │ ├── input.json
│ │ │ ├── inputText.json
│ │ │ ├── insert.json
│ │ │ ├── insertPromptQuery.json
│ │ │ ├── INSPECT_MAX_BYTES.json
│ │ │ ├── intToCharMap.json
│ │ │ ├── IS_ITERABLE_SENTINEL.json
│ │ │ ├── IS_KEYED_SENTINEL.json
│ │ │ ├── isConfigType.json
│ │ │ ├── isoSentinel.json
│ │ │ ├── isSourceNode.json
│ │ │ ├── j.json
│ │ │ ├── JAKE_CMD.json
│ │ │ ├── JEST_GLOBAL_NAME.json
│ │ │ ├── JEST_GLOBALS_MODULE_NAME.json
│ │ │ ├── JSON_SYNTAX_CHAR.json
│ │ │ ├── json.json
│ │ │ ├── jsonType.json
│ │ │ ├── jupyter_namespaceObject.json
│ │ │ ├── JUPYTERLAB_DOCMANAGER_PLUGIN_ID.json
│ │ │ ├── k.json
│ │ │ ├── KERNEL_STATUS_ERROR_CLASS.json
│ │ │ ├── key.json
│ │ │ ├── l.json
│ │ │ ├── labelId.json
│ │ │ ├── LATEST_PROTOCOL_VERSION.json
│ │ │ ├── LETTERDASHNUMBER.json
│ │ │ ├── LF.json
│ │ │ ├── LIMIT_REPLACE_NODE.json
│ │ │ ├── logTime.json
│ │ │ ├── lstatkey.json
│ │ │ ├── lt.json
│ │ │ ├── m.json
│ │ │ ├── maliciousPayload.json
│ │ │ ├── mask.json
│ │ │ ├── match.json
│ │ │ ├── matchingDelim.json
│ │ │ ├── MAXIMUM_MESSAGE_SIZE.json
│ │ │ ├── mdcContent.json
│ │ │ ├── MERMAID_DOM_ID_PREFIX.json
│ │ │ ├── message.json
│ │ │ ├── messages.json
│ │ │ ├── meth.json
│ │ │ ├── minimatch.json
│ │ │ ├── MOCK_CONSTRUCTOR_NAME.json
│ │ │ ├── MOCKS_PATTERN.json
│ │ │ ├── moduleDirectory.json
│ │ │ ├── msg.json
│ │ │ ├── mtr.json
│ │ │ ├── multipartType.json
│ │ │ ├── n.json
│ │ │ ├── N.json
│ │ │ ├── name.json
│ │ │ ├── NATIVE_PLATFORM.json
│ │ │ ├── newUrl.json
│ │ │ ├── NM.json
│ │ │ ├── NO_ARGUMENTS.json
│ │ │ ├── NO_DIFF_MESSAGE.json
│ │ │ ├── NODE_MODULES.json
│ │ │ ├── nodeInternalPrefix.json
│ │ │ ├── nonASCIIidentifierStartChars.json
│ │ │ ├── nonKey.json
│ │ │ ├── NOT_A_DOT.json
│ │ │ ├── notCharacterOrDash.json
│ │ │ ├── notebookURL.json
│ │ │ ├── notSelector.json
│ │ │ ├── nullTag.json
│ │ │ ├── num.json
│ │ │ ├── NUMBER.json
│ │ │ ├── o.json
│ │ │ ├── O.json
│ │ │ ├── octChar.json
│ │ │ ├── octetStreamType.json
│ │ │ ├── operators.json
│ │ │ ├── out.json
│ │ │ ├── OUTSIDE_JEST_VM_PROTOCOL.json
│ │ │ ├── override.json
│ │ │ ├── p.json
│ │ │ ├── PACKAGE_FILENAME.json
│ │ │ ├── PACKAGE_JSON.json
│ │ │ ├── packageVersion.json
│ │ │ ├── paddedNumber.json
│ │ │ ├── page.json
│ │ │ ├── parseClass.json
│ │ │ ├── path.json
│ │ │ ├── pathExt.json
│ │ │ ├── pattern.json
│ │ │ ├── PatternBoolean.json
│ │ │ ├── pBuiltins.json
│ │ │ ├── pFloatForm.json
│ │ │ ├── pkg.json
│ │ │ ├── PLUGIN_ID_DOC_MANAGER.json
│ │ │ ├── plusChar.json
│ │ │ ├── PN_CHARS.json
│ │ │ ├── point.json
│ │ │ ├── prefix.json
│ │ │ ├── PRETTY_PLACEHOLDER.json
│ │ │ ├── property_prefix.json
│ │ │ ├── pubkey256.json
│ │ │ ├── Q.json
│ │ │ ├── qmark.json
│ │ │ ├── QO.json
│ │ │ ├── query.json
│ │ │ ├── querystringType.json
│ │ │ ├── queryText.json
│ │ │ ├── r.json
│ │ │ ├── R.json
│ │ │ ├── rangeStart.json
│ │ │ ├── re.json
│ │ │ ├── reI.json
│ │ │ ├── REQUIRED_FIELD_SYMBOL.json
│ │ │ ├── reserve.json
│ │ │ ├── resolvedDestination.json
│ │ │ ├── resolverDir.json
│ │ │ ├── responseType.json
│ │ │ ├── result.json
│ │ │ ├── ROOT_DESCRIBE_BLOCK_NAME.json
│ │ │ ├── ROOT_NAMESPACE_NAME.json
│ │ │ ├── ROOT_TASK_NAME.json
│ │ │ ├── route.json
│ │ │ ├── RUNNING_TEXT.json
│ │ │ ├── s.json
│ │ │ ├── SCHEMA_PATH.json
│ │ │ ├── se.json
│ │ │ ├── SEARCHABLE_CLASS.json
│ │ │ ├── secret.json
│ │ │ ├── selector.json
│ │ │ ├── SEMVER_SPEC_VERSION.json
│ │ │ ├── sensitiveHeaders.json
│ │ │ ├── sep.json
│ │ │ ├── separator.json
│ │ │ ├── SHAPE_STATE.json
│ │ │ ├── shape.json
│ │ │ ├── SHARED.json
│ │ │ ├── short.json
│ │ │ ├── side.json
│ │ │ ├── SNAPSHOT_VERSION.json
│ │ │ ├── SOURCE_MAPPING_PREFIX.json
│ │ │ ├── source.json
│ │ │ ├── sourceMapContent.json
│ │ │ ├── SPACE_SYMBOL.json
│ │ │ ├── SPACE.json
│ │ │ ├── sqlKeywords.json
│ │ │ ├── sranges.json
│ │ │ ├── st.json
│ │ │ ├── ST.json
│ │ │ ├── stack.json
│ │ │ ├── START_HIDING.json
│ │ │ ├── START_OF_LINE.json
│ │ │ ├── startNoTraversal.json
│ │ │ ├── STATES.json
│ │ │ ├── stats.json
│ │ │ ├── statSync.json
│ │ │ ├── storageStatus.json
│ │ │ ├── storageType.json
│ │ │ ├── str.json
│ │ │ ├── stringifiedObject.json
│ │ │ ├── stringPath.json
│ │ │ ├── stringResult.json
│ │ │ ├── stringTag.json
│ │ │ ├── strValue.json
│ │ │ ├── style.json
│ │ │ ├── SUB_NAME.json
│ │ │ ├── subkey.json
│ │ │ ├── SUBPROTOCOL.json
│ │ │ ├── SUITE_NAME.json
│ │ │ ├── symbolPattern.json
│ │ │ ├── symbolTag.json
│ │ │ ├── t.json
│ │ │ ├── T.json
│ │ │ ├── templateDir.json
│ │ │ ├── tempName.json
│ │ │ ├── text.json
│ │ │ ├── time.json
│ │ │ ├── titleSeparator.json
│ │ │ ├── tmpl.json
│ │ │ ├── tn.json
│ │ │ ├── toValue.json
│ │ │ ├── transform.json
│ │ │ ├── trustProxyDefaultSymbol.json
│ │ │ ├── typeArgumentsKey.json
│ │ │ ├── typeKey.json
│ │ │ ├── typeMessage.json
│ │ │ ├── typesRegistryPackageName.json
│ │ │ ├── u.json
│ │ │ ├── UNDEFINED.json
│ │ │ ├── unit.json
│ │ │ ├── UNMATCHED_SURROGATE_PAIR_REPLACE.json
│ │ │ ├── ur.json
│ │ │ ├── USAGE.json
│ │ │ ├── value.json
│ │ │ ├── Vr.json
│ │ │ ├── watchmanURL.json
│ │ │ ├── webkit.json
│ │ │ ├── xhtml.json
│ │ │ ├── XP_DEFAULT_PATHEXT.json
│ │ │ └── y.json
│ │ ├── Collaborative_Development_with_MCP_Integration.json
│ │ ├── colorCode.json
│ │ ├── comma.json
│ │ ├── command.json
│ │ ├── completionShTemplate.json
│ │ ├── configJsContent.json
│ │ ├── connectionString.json
│ │ ├── Consolidated_TypeScript_Interfaces_Template.json
│ │ ├── Could_you_interpret_the_assumed_applicat___.json
│ │ ├── cssClassStr.json
│ │ ├── currentBoundaryParse.json
│ │ ├── d.json
│ │ ├── Data_Analysis_Template.json
│ │ ├── data.json
│ │ ├── DATA.json
│ │ ├── Database_Query_Assistant.json
│ │ ├── dataWebpackPrefix.json
│ │ ├── debug.json
│ │ ├── Debugging_Assistant.json
│ │ ├── decodeStateVectorV2.json
│ │ ├── DEFAULT_DELIMITER.json
│ │ ├── DEFAULT_DIAGRAM_DIRECTION.json
│ │ ├── DEFAULT_INDENT.json
│ │ ├── DEFAULT_JS_PATTERN.json
│ │ ├── DEFAULT_LOG_TARGET.json
│ │ ├── defaultHelpOpt.json
│ │ ├── defaultHost.json
│ │ ├── deferY18nLookupPrefix.json
│ │ ├── DELIM.json
│ │ ├── delimiter.json
│ │ ├── DEPRECATION.json
│ │ ├── DESCENDING.json
│ │ ├── destMain.json
│ │ ├── development
│ │ │ ├── Collaborative_Development_with_MCP_Integration.json
│ │ │ ├── Consolidated_TypeScript_Interfaces_Template.json
│ │ │ ├── Development_Workflow.json
│ │ │ ├── index.json
│ │ │ ├── MCP_Server_Development_Prompt_Combiner.json
│ │ │ └── Monorepo_Migration_and_Code_Organization_Guide.json
│ │ ├── Development_System_Prompt.json
│ │ ├── Development_Workflow.json
│ │ ├── devops
│ │ │ ├── Docker_Compose_Prompt_Combiner.json
│ │ │ ├── Docker_Containerization_Guide.json
│ │ │ └── index.json
│ │ ├── DID_NOT_THROW.json
│ │ ├── direction.json
│ │ ├── displayValue.json
│ │ ├── DNS.json
│ │ ├── doc.json
│ │ ├── Docker_Compose_Prompt_Combiner.json
│ │ ├── Docker_Containerization_Guide.json
│ │ ├── Docker_MCP_Servers_Orchestration_Guide.json
│ │ ├── DOCUMENTATION_NOTE.json
│ │ ├── DOT.json
│ │ ├── DOTS.json
│ │ ├── dummyCompoundId.json
│ │ ├── e.json
│ │ ├── E.json
│ │ ├── earlyHintsLink.json
│ │ ├── elide.json
│ │ ├── EMPTY.json
│ │ ├── encoded.json
│ │ ├── end.json
│ │ ├── endpoint.json
│ │ ├── environment.json
│ │ ├── ERR_CODE.json
│ │ ├── errMessage.json
│ │ ├── errMsg.json
│ │ ├── ERROR_MESSAGE.json
│ │ ├── error.json
│ │ ├── ERROR.json
│ │ ├── ERRORCLASS.json
│ │ ├── errorMessage.json
│ │ ├── es6Default.json
│ │ ├── ESC.json
│ │ ├── Escapable.json
│ │ ├── escapedChar.json
│ │ ├── escapeFuncStr.json
│ │ ├── escSlash.json
│ │ ├── ev.json
│ │ ├── event.json
│ │ ├── execaMessage.json
│ │ ├── EXPECTED_LABEL.json
│ │ ├── expected.json
│ │ ├── expectedString.json
│ │ ├── expression1.json
│ │ ├── EXTENSION.json
│ │ ├── f.json
│ │ ├── FAIL_TEXT.json
│ │ ├── FILE_BROWSER_FACTORY.json
│ │ ├── fill.json
│ │ ├── findPackageJson.json
│ │ ├── fnKey.json
│ │ ├── Foresight_Assistant.json
│ │ ├── FORMAT.json
│ │ ├── formatted.json
│ │ ├── from.json
│ │ ├── fullpaths.json
│ │ ├── FUNC_ERROR_TEXT.json
│ │ ├── general
│ │ │ └── index.json
│ │ ├── Generate_different_types_of_questions_ab___.json
│ │ ├── Generate_Mermaid_Diagram.json
│ │ ├── GenStateSuspendedStart.json
│ │ ├── GENSYNC_EXPECTED_START.json
│ │ ├── GitHub_Repository_Explorer.json
│ │ ├── gutter.json
│ │ ├── h.json
│ │ ├── handlerFuncName.json
│ │ ├── HASH_UNDEFINED.json
│ │ ├── head.json
│ │ ├── helpMessage.json
│ │ ├── HINT_ARG.json
│ │ ├── HOOK_RETURNED_NOTHING_ERROR_MESSAGE.json
│ │ ├── i.json
│ │ ├── id.json
│ │ ├── identifier.json
│ │ ├── Identifier.json
│ │ ├── INDENT.json
│ │ ├── indentation.json
│ │ ├── index.json
│ │ ├── INDIRECTION_FRAGMENT.json
│ │ ├── Initialize_project_setup_for_a_new_micro___.json
│ │ ├── input.json
│ │ ├── inputText.json
│ │ ├── insert.json
│ │ ├── insertPromptQuery.json
│ │ ├── INSPECT_MAX_BYTES.json
│ │ ├── install_dependencies__build__run__test____.json
│ │ ├── intToCharMap.json
│ │ ├── IS_ITERABLE_SENTINEL.json
│ │ ├── IS_KEYED_SENTINEL.json
│ │ ├── isConfigType.json
│ │ ├── isoSentinel.json
│ │ ├── isSourceNode.json
│ │ ├── j.json
│ │ ├── J.json
│ │ ├── JAKE_CMD.json
│ │ ├── JEST_GLOBAL_NAME.json
│ │ ├── JEST_GLOBALS_MODULE_NAME.json
│ │ ├── JSON_SYNTAX_CHAR.json
│ │ ├── json.json
│ │ ├── jsonType.json
│ │ ├── jupyter_namespaceObject.json
│ │ ├── JUPYTERLAB_DOCMANAGER_PLUGIN_ID.json
│ │ ├── k.json
│ │ ├── KERNEL_STATUS_ERROR_CLASS.json
│ │ ├── key.json
│ │ ├── l.json
│ │ ├── labelId.json
│ │ ├── LATEST_PROTOCOL_VERSION.json
│ │ ├── LETTERDASHNUMBER.json
│ │ ├── LF.json
│ │ ├── LIMIT_REPLACE_NODE.json
│ │ ├── LINE_FEED.json
│ │ ├── logTime.json
│ │ ├── lstatkey.json
│ │ ├── lt.json
│ │ ├── m.json
│ │ ├── maliciousPayload.json
│ │ ├── manager.py
│ │ ├── marker.json
│ │ ├── mask.json
│ │ ├── match.json
│ │ ├── matchingDelim.json
│ │ ├── MAXIMUM_MESSAGE_SIZE.json
│ │ ├── MCP_Integration_Assistant.json
│ │ ├── MCP_Resources_Explorer.json
│ │ ├── MCP_Resources_Integration_Guide.json
│ │ ├── MCP_Server_Development_Prompt_Combiner.json
│ │ ├── MCP_Server_Integration_Guide.json
│ │ ├── mcp-code-generator.json
│ │ ├── mdcContent.json
│ │ ├── Mermaid_Analysis_Expert.json
│ │ ├── Mermaid_Class_Diagram_Generator.json
│ │ ├── Mermaid_Diagram_Generator.json
│ │ ├── Mermaid_Diagram_Modifier.json
│ │ ├── MERMAID_DOM_ID_PREFIX.json
│ │ ├── message.json
│ │ ├── messages.json
│ │ ├── meth.json
│ │ ├── minimatch.json
│ │ ├── MOBILE_QUERY.json
│ │ ├── MOCK_CONSTRUCTOR_NAME.json
│ │ ├── MOCKS_PATTERN.json
│ │ ├── Modify_Mermaid_Diagram.json
│ │ ├── moduleDirectory.json
│ │ ├── Monorepo_Migration_and_Code_Organization_Guide.json
│ │ ├── msg.json
│ │ ├── mtr.json
│ │ ├── Multi-Resource_Context_Assistant.json
│ │ ├── multipartType.json
│ │ ├── n.json
│ │ ├── N.json
│ │ ├── name.json
│ │ ├── NATIVE_PLATFORM.json
│ │ ├── newUrl.json
│ │ ├── NM.json
│ │ ├── NO_ARGUMENTS.json
│ │ ├── NO_DIFF_MESSAGE.json
│ │ ├── NODE_MODULES.json
│ │ ├── nodeInternalPrefix.json
│ │ ├── nonASCIIidentifierStartChars.json
│ │ ├── nonKey.json
│ │ ├── NOT_A_DOT.json
│ │ ├── notCharacterOrDash.json
│ │ ├── notebookURL.json
│ │ ├── notSelector.json
│ │ ├── nullTag.json
│ │ ├── num.json
│ │ ├── NUMBER.json
│ │ ├── o.json
│ │ ├── O.json
│ │ ├── octChar.json
│ │ ├── octetStreamType.json
│ │ ├── operators.json
│ │ ├── other
│ │ │ ├── __image_1___describe_the_icon_in_one_sen___.json
│ │ │ ├── __type.json
│ │ │ ├── Advanced_Multi-Server_Integration_Template.json
│ │ │ ├── Analyze_Mermaid_Diagram.json
│ │ │ ├── Basic_Template.json
│ │ │ ├── Code_Diagram_Documentation_Creator.json
│ │ │ ├── Collaborative_Development_with_MCP_Integration.json
│ │ │ ├── completionShTemplate.json
│ │ │ ├── Could_you_interpret_the_assumed_applicat___.json
│ │ │ ├── DEFAULT_INDENT.json
│ │ │ ├── Docker_MCP_Servers_Orchestration_Guide.json
│ │ │ ├── Generate_different_types_of_questions_ab___.json
│ │ │ ├── Generate_Mermaid_Diagram.json
│ │ │ ├── GitHub_Repository_Explorer.json
│ │ │ ├── index.json
│ │ │ ├── Initialize_project_setup_for_a_new_micro___.json
│ │ │ ├── install_dependencies__build__run__test____.json
│ │ │ ├── LINE_FEED.json
│ │ │ ├── MCP_Resources_Explorer.json
│ │ │ ├── MCP_Resources_Integration_Guide.json
│ │ │ ├── MCP_Server_Integration_Guide.json
│ │ │ ├── mcp-code-generator.json
│ │ │ ├── Mermaid_Class_Diagram_Generator.json
│ │ │ ├── Mermaid_Diagram_Generator.json
│ │ │ ├── Mermaid_Diagram_Modifier.json
│ │ │ ├── Modify_Mermaid_Diagram.json
│ │ │ ├── Multi-Resource_Context_Assistant.json
│ │ │ ├── output.json
│ │ │ ├── sseUrl.json
│ │ │ ├── string.json
│ │ │ ├── Task_List_Helper.json
│ │ │ ├── Template-Based_MCP_Integration.json
│ │ │ ├── Test_Prompt.json
│ │ │ ├── type.json
│ │ │ ├── VERSION.json
│ │ │ ├── WIN_SLASH.json
│ │ │ └── You_are_limited_to_respond_Yes_or_No_onl___.json
│ │ ├── out.json
│ │ ├── output.json
│ │ ├── OUTSIDE_JEST_VM_PROTOCOL.json
│ │ ├── override.json
│ │ ├── p.json
│ │ ├── PACKAGE_FILENAME.json
│ │ ├── PACKAGE_JSON.json
│ │ ├── packageVersion.json
│ │ ├── paddedNumber.json
│ │ ├── page.json
│ │ ├── parseClass.json
│ │ ├── PATH_NODE_MODULES.json
│ │ ├── path.json
│ │ ├── pathExt.json
│ │ ├── pattern.json
│ │ ├── PatternBoolean.json
│ │ ├── pBuiltins.json
│ │ ├── pFloatForm.json
│ │ ├── pkg.json
│ │ ├── PLUGIN_ID_DOC_MANAGER.json
│ │ ├── plusChar.json
│ │ ├── PN_CHARS.json
│ │ ├── point.json
│ │ ├── prefix.json
│ │ ├── PRETTY_PLACEHOLDER.json
│ │ ├── Project_Analysis_Assistant.json
│ │ ├── ProjectsUpdatedInBackgroundEvent.json
│ │ ├── PromptCombiner_Interface.json
│ │ ├── promptId.json
│ │ ├── property_prefix.json
│ │ ├── pubkey256.json
│ │ ├── Q.json
│ │ ├── qmark.json
│ │ ├── QO.json
│ │ ├── query.json
│ │ ├── querystringType.json
│ │ ├── queryText.json
│ │ ├── r.json
│ │ ├── R.json
│ │ ├── rangeStart.json
│ │ ├── re.json
│ │ ├── reI.json
│ │ ├── REQUIRED_FIELD_SYMBOL.json
│ │ ├── Research_Assistant.json
│ │ ├── reserve.json
│ │ ├── resolvedDestination.json
│ │ ├── resolverDir.json
│ │ ├── responseType.json
│ │ ├── result.json
│ │ ├── ROOT_DESCRIBE_BLOCK_NAME.json
│ │ ├── ROOT_NAMESPACE_NAME.json
│ │ ├── ROOT_TASK_NAME.json
│ │ ├── route.json
│ │ ├── RUNNING_TEXT.json
│ │ ├── RXstyle.json
│ │ ├── s.json
│ │ ├── SCHEMA_PATH.json
│ │ ├── schemaQuery.json
│ │ ├── se.json
│ │ ├── SEARCHABLE_CLASS.json
│ │ ├── secret.json
│ │ ├── selector.json
│ │ ├── SEMVER_SPEC_VERSION.json
│ │ ├── sensitiveHeaders.json
│ │ ├── sep.json
│ │ ├── separator.json
│ │ ├── Sequential_Data_Analysis_with_MCP_Integration.json
│ │ ├── SHAPE_STATE.json
│ │ ├── shape.json
│ │ ├── SHARED.json
│ │ ├── short.json
│ │ ├── side.json
│ │ ├── SNAPSHOT_VERSION.json
│ │ ├── SOLID_Code_Analysis_Visualizer.json
│ │ ├── SOURCE_MAPPING_PREFIX.json
│ │ ├── source.json
│ │ ├── sourceMapContent.json
│ │ ├── SPACE_SYMBOL.json
│ │ ├── SPACE.json
│ │ ├── sqlKeywords.json
│ │ ├── sranges.json
│ │ ├── sseUrl.json
│ │ ├── st.json
│ │ ├── ST.json
│ │ ├── stack.json
│ │ ├── START_HIDING.json
│ │ ├── START_OF_LINE.json
│ │ ├── startNoTraversal.json
│ │ ├── STATES.json
│ │ ├── stats.json
│ │ ├── statSync.json
│ │ ├── status.json
│ │ ├── storageStatus.json
│ │ ├── storageType.json
│ │ ├── str.json
│ │ ├── string.json
│ │ ├── stringifiedObject.json
│ │ ├── stringPath.json
│ │ ├── stringResult.json
│ │ ├── stringTag.json
│ │ ├── strValue.json
│ │ ├── style.json
│ │ ├── SUB_NAME.json
│ │ ├── subkey.json
│ │ ├── SUBPROTOCOL.json
│ │ ├── SUITE_NAME.json
│ │ ├── symbolPattern.json
│ │ ├── symbolTag.json
│ │ ├── system
│ │ │ ├── Aa.json
│ │ │ ├── b.json
│ │ │ ├── Development_System_Prompt.json
│ │ │ ├── index.json
│ │ │ ├── marker.json
│ │ │ ├── PATH_NODE_MODULES.json
│ │ │ ├── ProjectsUpdatedInBackgroundEvent.json
│ │ │ ├── RXstyle.json
│ │ │ ├── status.json
│ │ │ └── versionMajorMinor.json
│ │ ├── t.json
│ │ ├── T.json
│ │ ├── Task_List_Helper.json
│ │ ├── Template-Based_MCP_Integration.json
│ │ ├── template.py
│ │ ├── templateDir.json
│ │ ├── tempName.json
│ │ ├── Test_Prompt.json
│ │ ├── text.json
│ │ ├── time.json
│ │ ├── titleSeparator.json
│ │ ├── tmpl.json
│ │ ├── tn.json
│ │ ├── TOPBAR_FACTORY.json
│ │ ├── toValue.json
│ │ ├── transform.json
│ │ ├── trustProxyDefaultSymbol.json
│ │ ├── txt.json
│ │ ├── type.json
│ │ ├── typeArgumentsKey.json
│ │ ├── typeKey.json
│ │ ├── typeMessage.json
│ │ ├── typesRegistryPackageName.json
│ │ ├── u.json
│ │ ├── UNDEFINED.json
│ │ ├── unit.json
│ │ ├── UNMATCHED_SURROGATE_PAIR_REPLACE.json
│ │ ├── ur.json
│ │ ├── usage.json
│ │ ├── USAGE.json
│ │ ├── user
│ │ │ ├── backupId.json
│ │ │ ├── DESCENDING.json
│ │ │ ├── encoded.json
│ │ │ ├── index.json
│ │ │ ├── J.json
│ │ │ ├── MOBILE_QUERY.json
│ │ │ ├── promptId.json
│ │ │ ├── schemaQuery.json
│ │ │ ├── TOPBAR_FACTORY.json
│ │ │ ├── txt.json
│ │ │ └── usage.json
│ │ ├── value.json
│ │ ├── VERSION.json
│ │ ├── version.py
│ │ ├── versionMajorMinor.json
│ │ ├── Vr.json
│ │ ├── watchmanURL.json
│ │ ├── webkit.json
│ │ ├── WIN_SLASH.json
│ │ ├── xhtml.json
│ │ ├── XP_DEFAULT_PATHEXT.json
│ │ ├── y.json
│ │ └── You_are_limited_to_respond_Yes_or_No_onl___.json
│ ├── resources
│ │ ├── __init__.py
│ │ ├── code_examples
│ │ │ └── index.json
│ │ ├── config
│ │ │ └── index.json
│ │ ├── documentation
│ │ │ └── index.json
│ │ ├── images
│ │ │ └── index.json
│ │ ├── index.json
│ │ └── other
│ │ └── index.json
│ ├── server.py
│ ├── templates
│ │ ├── __init__.py
│ │ ├── AbstractFactory.json
│ │ ├── Adapter.json
│ │ ├── base.py
│ │ ├── Builder.json
│ │ ├── Chain.json
│ │ ├── Command.json
│ │ ├── component
│ │ │ ├── AbstractFactory.json
│ │ │ ├── Adapter.json
│ │ │ ├── Builder.json
│ │ │ ├── Chain.json
│ │ │ ├── Command.json
│ │ │ ├── Decorator.json
│ │ │ ├── Facade.json
│ │ │ ├── Factory.json
│ │ │ ├── Iterator.json
│ │ │ ├── Mediator.json
│ │ │ ├── Memento.json
│ │ │ ├── Observer.json
│ │ │ ├── Prototype.json
│ │ │ ├── Proxy.json
│ │ │ ├── Singleton.json
│ │ │ ├── State.json
│ │ │ ├── Strategy.json
│ │ │ ├── TemplateMethod.json
│ │ │ └── Visitor.json
│ │ ├── component.py
│ │ ├── Decorator.json
│ │ ├── Facade.json
│ │ ├── Factory.json
│ │ ├── index.json
│ │ ├── Iterator.json
│ │ ├── manager.py
│ │ ├── Mediator.json
│ │ ├── Memento.json
│ │ ├── Observer.json
│ │ ├── project.py
│ │ ├── Prototype.json
│ │ ├── Proxy.json
│ │ ├── renderer.py
│ │ ├── Singleton.json
│ │ ├── State.json
│ │ ├── Strategy.json
│ │ ├── template_manager.py
│ │ ├── TemplateMethod.json
│ │ ├── types.py
│ │ └── Visitor.json
│ └── utils
│ └── __init__.py
├── SUMMARY.md
├── TASK_COMPLETION_SUMMARY.md
├── templates
│ └── openssl
│ ├── files
│ │ ├── CMakeLists.txt.jinja2
│ │ ├── conanfile.py.jinja2
│ │ ├── main.cpp.jinja2
│ │ └── README.md.jinja2
│ ├── openssl-consumer.json
│ └── template.json
├── test_openssl_integration.sh
├── test_package
│ └── conanfile.py
└── tests
├── __init__.py
├── conftest.py
├── integration
│ ├── test_core_integration.py
│ ├── test_mermaid_integration.py
│ ├── test_prompt_manager_integration.py
│ └── test_server_integration.py
├── test_aws_mcp.py
├── test_base_classes.py
├── test_config.py
├── test_exceptions.py
├── test_mermaid.py
├── test_prompts.py
└── test_templates.py
```
# Files
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/DOT.json:
--------------------------------------------------------------------------------
```json
{
"name": "DOT",
"description": "Prompt template extracted from enhanceUnexpectedTokenMessage.js",
"type": "prompt",
"category": "coding",
"content": " \\u2022 ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@jest/transform/build/enhanceUnexpectedTokenMessage.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/IS_ITERABLE_SENTINEL.json:
--------------------------------------------------------------------------------
```json
{
"name": "IS_ITERABLE_SENTINEL",
"description": "Prompt template extracted from Immutable.js",
"type": "prompt",
"category": "coding",
"content": "@@__IMMUTABLE_ITERABLE__@@",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/pretty-format/build/plugins/Immutable.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/re.json:
--------------------------------------------------------------------------------
```json
{
"name": "re",
"description": "Prompt template extracted from 9311.46cc03d7b667d8413fec.js",
"type": "prompt",
"category": "coding",
"content": "!\\",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/9311.46cc03d7b667d8413fec.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/st.json:
--------------------------------------------------------------------------------
```json
{
"name": "ST",
"description": "Prompt template extracted from index.js",
"type": "prompt",
"category": "coding",
"content": "(?:\\\\u0007|\\\\u001B\\\\u005C|\\\\u009C)",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@isaacs/cliui/node_modules/ansi-regex/index.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/ST.json:
--------------------------------------------------------------------------------
```json
{
"name": "ST",
"description": "Prompt template extracted from index.js",
"type": "prompt",
"category": "coding",
"content": "(?:\\\\u0007|\\\\u001B\\\\u005C|\\\\u009C)",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@isaacs/cliui/node_modules/ansi-regex/index.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/IS_KEYED_SENTINEL.json:
--------------------------------------------------------------------------------
```json
{
"name": "IS_KEYED_SENTINEL",
"description": "Prompt template extracted from immutableUtils.js",
"type": "prompt",
"category": "coding",
"content": "@@__IMMUTABLE_KEYED__@@",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@jest/expect-utils/build/immutableUtils.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/t.json:
--------------------------------------------------------------------------------
```json
{
"name": "T",
"description": "Prompt template extracted from 1909.7487a09fefbe7f9eabb6.js",
"type": "prompt",
"category": "coding",
"content": "bspr_",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/1909.7487a09fefbe7f9eabb6.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/T.json:
--------------------------------------------------------------------------------
```json
{
"name": "T",
"description": "Prompt template extracted from 1909.7487a09fefbe7f9eabb6.js",
"type": "prompt",
"category": "coding",
"content": "bspr_",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/1909.7487a09fefbe7f9eabb6.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/IS_KEYED_SENTINEL.json:
--------------------------------------------------------------------------------
```json
{
"name": "IS_KEYED_SENTINEL",
"description": "Prompt template extracted from immutableUtils.js",
"type": "prompt",
"category": "coding",
"content": "@@__IMMUTABLE_KEYED__@@",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@jest/expect-utils/build/immutableUtils.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/t.json:
--------------------------------------------------------------------------------
```json
{
"name": "T",
"description": "Prompt template extracted from 1909.7487a09fefbe7f9eabb6.js",
"type": "prompt",
"category": "coding",
"content": "bspr_",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/1909.7487a09fefbe7f9eabb6.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/T.json:
--------------------------------------------------------------------------------
```json
{
"name": "T",
"description": "Prompt template extracted from 1909.7487a09fefbe7f9eabb6.js",
"type": "prompt",
"category": "coding",
"content": "bspr_",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/1909.7487a09fefbe7f9eabb6.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/b.json:
--------------------------------------------------------------------------------
```json
{
"name": "b",
"description": "Prompt template extracted from 3330.a6d6a93bb012ea4f3589.js",
"type": "prompt",
"category": "system",
"content": "global",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/3330.a6d6a93bb012ea4f3589.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/h.json:
--------------------------------------------------------------------------------
```json
{
"name": "h",
"description": "Prompt template extracted from 6170.65d899f43342f1e34bf1.js",
"type": "prompt",
"category": "coding",
"content": "([{}])",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/6170.65d899f43342f1e34bf1.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/u.json:
--------------------------------------------------------------------------------
```json
{
"name": "u",
"description": "Prompt template extracted from 8258.c8c00e66a0bef38665f4.js",
"type": "prompt",
"category": "coding",
"content": "CDATA[",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/8258.c8c00e66a0bef38665f4.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/y.json:
--------------------------------------------------------------------------------
```json
{
"name": "y",
"description": "Prompt template extracted from 8368.c75a4b32ae45ec88465d.js",
"type": "prompt",
"category": "coding",
"content": "([{}])",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/8368.c75a4b32ae45ec88465d.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/h.json:
--------------------------------------------------------------------------------
```json
{
"name": "h",
"description": "Prompt template extracted from 6170.65d899f43342f1e34bf1.js",
"type": "prompt",
"category": "coding",
"content": "([{}])",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/6170.65d899f43342f1e34bf1.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/system/b.json:
--------------------------------------------------------------------------------
```json
{
"name": "b",
"description": "Prompt template extracted from 3330.a6d6a93bb012ea4f3589.js",
"type": "prompt",
"category": "system",
"content": "global",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/3330.a6d6a93bb012ea4f3589.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/u.json:
--------------------------------------------------------------------------------
```json
{
"name": "u",
"description": "Prompt template extracted from 8258.c8c00e66a0bef38665f4.js",
"type": "prompt",
"category": "coding",
"content": "CDATA[",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/8258.c8c00e66a0bef38665f4.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/y.json:
--------------------------------------------------------------------------------
```json
{
"name": "y",
"description": "Prompt template extracted from 8368.c75a4b32ae45ec88465d.js",
"type": "prompt",
"category": "coding",
"content": "([{}])",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/8368.c75a4b32ae45ec88465d.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/cli.py:
--------------------------------------------------------------------------------
```python
"""Main CLI entry point for MCP Project Orchestrator."""
import click
from .commands.openssl_cli import create_openssl_project, deploy_cursor
@click.group()
def cli():
"""MCP Project Orchestrator CLI"""
pass
# Add OpenSSL commands
cli.add_command(create_openssl_project)
cli.add_command(deploy_cursor)
def main():
"""Entry point"""
cli()
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/n.json:
--------------------------------------------------------------------------------
```json
{
"name": "N",
"description": "Prompt template extracted from 8217.801fbb0b549a74238760.js",
"type": "prompt",
"category": "coding",
"content": "builtin",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/8217.801fbb0b549a74238760.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/N.json:
--------------------------------------------------------------------------------
```json
{
"name": "N",
"description": "Prompt template extracted from 8217.801fbb0b549a74238760.js",
"type": "prompt",
"category": "coding",
"content": "builtin",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/8217.801fbb0b549a74238760.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/nodeInternalPrefix.json:
--------------------------------------------------------------------------------
```json
{
"name": "nodeInternalPrefix",
"description": "Prompt template extracted from import-meta-resolve.js",
"type": "prompt",
"category": "coding",
"content": "__node_internal_",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/core/lib/vendor/import-meta-resolve.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/o.json:
--------------------------------------------------------------------------------
```json
{
"name": "O",
"description": "Prompt template extracted from 1495.13603dd823bbf5eb08b3.js",
"type": "prompt",
"category": "coding",
"content": "</${i}>",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/1495.13603dd823bbf5eb08b3.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/O.json:
--------------------------------------------------------------------------------
```json
{
"name": "O",
"description": "Prompt template extracted from 1495.13603dd823bbf5eb08b3.js",
"type": "prompt",
"category": "coding",
"content": "</${i}>",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/1495.13603dd823bbf5eb08b3.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/p.json:
--------------------------------------------------------------------------------
```json
{
"name": "p",
"description": "Prompt template extracted from 1986.26029e99ef54a5652df8.js",
"type": "prompt",
"category": "coding",
"content": "comment",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/1986.26029e99ef54a5652df8.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/n.json:
--------------------------------------------------------------------------------
```json
{
"name": "N",
"description": "Prompt template extracted from 8217.801fbb0b549a74238760.js",
"type": "prompt",
"category": "coding",
"content": "builtin",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/8217.801fbb0b549a74238760.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/N.json:
--------------------------------------------------------------------------------
```json
{
"name": "N",
"description": "Prompt template extracted from 8217.801fbb0b549a74238760.js",
"type": "prompt",
"category": "coding",
"content": "builtin",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/8217.801fbb0b549a74238760.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/nodeInternalPrefix.json:
--------------------------------------------------------------------------------
```json
{
"name": "nodeInternalPrefix",
"description": "Prompt template extracted from import-meta-resolve.js",
"type": "prompt",
"category": "coding",
"content": "__node_internal_",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/core/lib/vendor/import-meta-resolve.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/o.json:
--------------------------------------------------------------------------------
```json
{
"name": "O",
"description": "Prompt template extracted from 1495.13603dd823bbf5eb08b3.js",
"type": "prompt",
"category": "coding",
"content": "</${i}>",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/1495.13603dd823bbf5eb08b3.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/O.json:
--------------------------------------------------------------------------------
```json
{
"name": "O",
"description": "Prompt template extracted from 1495.13603dd823bbf5eb08b3.js",
"type": "prompt",
"category": "coding",
"content": "</${i}>",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/1495.13603dd823bbf5eb08b3.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/p.json:
--------------------------------------------------------------------------------
```json
{
"name": "p",
"description": "Prompt template extracted from 1986.26029e99ef54a5652df8.js",
"type": "prompt",
"category": "coding",
"content": "comment",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/1986.26029e99ef54a5652df8.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/txt.json:
--------------------------------------------------------------------------------
```json
{
"name": "txt",
"description": "Prompt template extracted from outbound-serializer.test.js",
"type": "prompt",
"category": "user",
"content": "select * from boom",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/pg-protocol/dist/outbound-serializer.test.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/user/txt.json:
--------------------------------------------------------------------------------
```json
{
"name": "txt",
"description": "Prompt template extracted from outbound-serializer.test.js",
"type": "prompt",
"category": "user",
"content": "select * from boom",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/pg-protocol/dist/outbound-serializer.test.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/messages.json:
--------------------------------------------------------------------------------
```json
{
"name": "messages",
"description": "Prompt template extracted from activeFiltersMessage.js",
"type": "prompt",
"category": "coding",
"content": "\\n${_chalk().default.bold(",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@jest/core/build/lib/activeFiltersMessage.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/trustProxyDefaultSymbol.json:
--------------------------------------------------------------------------------
```json
{
"name": "trustProxyDefaultSymbol",
"description": "Prompt template extracted from application.js",
"type": "prompt",
"category": "coding",
"content": "@@symbol:trust_proxy_default",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/express/lib/application.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/messages.json:
--------------------------------------------------------------------------------
```json
{
"name": "messages",
"description": "Prompt template extracted from activeFiltersMessage.js",
"type": "prompt",
"category": "coding",
"content": "\\n${_chalk().default.bold(",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@jest/core/build/lib/activeFiltersMessage.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/trustProxyDefaultSymbol.json:
--------------------------------------------------------------------------------
```json
{
"name": "trustProxyDefaultSymbol",
"description": "Prompt template extracted from application.js",
"type": "prompt",
"category": "coding",
"content": "@@symbol:trust_proxy_default",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/express/lib/application.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/data.json:
--------------------------------------------------------------------------------
```json
{
"name": "DATA",
"description": "Prompt template extracted from ipv4.js",
"type": "prompt",
"category": "coding",
"content": "127.0.0.1",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/zod-to-json-schema/dist-test/cjs/node_modules/zod/lib/benchmarks/ipv4.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/DATA.json:
--------------------------------------------------------------------------------
```json
{
"name": "DATA",
"description": "Prompt template extracted from ipv4.js",
"type": "prompt",
"category": "coding",
"content": "127.0.0.1",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/zod-to-json-schema/dist-test/cjs/node_modules/zod/lib/benchmarks/ipv4.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/msg.json:
--------------------------------------------------------------------------------
```json
{
"name": "msg",
"description": "Prompt template extracted from websocket.js",
"type": "prompt",
"category": "coding",
"content": "WebSocket was closed before the connection was established",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/ws/lib/websocket.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/NM.json:
--------------------------------------------------------------------------------
```json
{
"name": "NM",
"description": "Prompt template extracted from index.js",
"type": "prompt",
"category": "coding",
"content": "${node_path_1.sep}node_modules${node_path_1.sep}",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/package-json-from-dist/dist/commonjs/index.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/stack.json:
--------------------------------------------------------------------------------
```json
{
"name": "stack",
"description": "Prompt template extracted from fake-timers-src.js",
"type": "prompt",
"category": "coding",
"content": "${infiniteLoopError}\\n${job.type || ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@sinonjs/fake-timers/src/fake-timers-src.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/data.json:
--------------------------------------------------------------------------------
```json
{
"name": "DATA",
"description": "Prompt template extracted from ipv4.js",
"type": "prompt",
"category": "coding",
"content": "127.0.0.1",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/zod-to-json-schema/dist-test/cjs/node_modules/zod/lib/benchmarks/ipv4.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/DATA.json:
--------------------------------------------------------------------------------
```json
{
"name": "DATA",
"description": "Prompt template extracted from ipv4.js",
"type": "prompt",
"category": "coding",
"content": "127.0.0.1",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/zod-to-json-schema/dist-test/cjs/node_modules/zod/lib/benchmarks/ipv4.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/msg.json:
--------------------------------------------------------------------------------
```json
{
"name": "msg",
"description": "Prompt template extracted from websocket.js",
"type": "prompt",
"category": "coding",
"content": "WebSocket was closed before the connection was established",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/ws/lib/websocket.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/NM.json:
--------------------------------------------------------------------------------
```json
{
"name": "NM",
"description": "Prompt template extracted from index.js",
"type": "prompt",
"category": "coding",
"content": "${node_path_1.sep}node_modules${node_path_1.sep}",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/package-json-from-dist/dist/commonjs/index.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/stack.json:
--------------------------------------------------------------------------------
```json
{
"name": "stack",
"description": "Prompt template extracted from fake-timers-src.js",
"type": "prompt",
"category": "coding",
"content": "${infiniteLoopError}\\n${job.type || ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@sinonjs/fake-timers/src/fake-timers-src.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/_UUID_CHARS.json:
--------------------------------------------------------------------------------
```json
{
"name": "_UUID_CHARS",
"description": "Prompt template extracted from index.js",
"type": "prompt",
"category": "coding",
"content": "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/jake/lib/utils/index.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/bt.json:
--------------------------------------------------------------------------------
```json
{
"name": "bt",
"description": "Prompt template extracted from 5090.404be96d8a6eae1e719a.js",
"type": "prompt",
"category": "coding",
"content": "ArrowDown",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/5090.404be96d8a6eae1e719a.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/_UUID_CHARS.json:
--------------------------------------------------------------------------------
```json
{
"name": "_UUID_CHARS",
"description": "Prompt template extracted from index.js",
"type": "prompt",
"category": "coding",
"content": "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/jake/lib/utils/index.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/bt.json:
--------------------------------------------------------------------------------
```json
{
"name": "bt",
"description": "Prompt template extracted from 5090.404be96d8a6eae1e719a.js",
"type": "prompt",
"category": "coding",
"content": "ArrowDown",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/5090.404be96d8a6eae1e719a.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/Q.json:
--------------------------------------------------------------------------------
```json
{
"name": "Q",
"description": "Prompt template extracted from 6372.25d926454a35e061a88b.js",
"type": "prompt",
"category": "coding",
"content": "descending",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/6372.25d926454a35e061a88b.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/ProjectsUpdatedInBackgroundEvent.json:
--------------------------------------------------------------------------------
```json
{
"name": "ProjectsUpdatedInBackgroundEvent",
"description": "Prompt template extracted from typescript.d.ts",
"type": "prompt",
"category": "system",
"content": "projectsUpdatedInBackground",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/typescript/lib/typescript.d.ts",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/Q.json:
--------------------------------------------------------------------------------
```json
{
"name": "Q",
"description": "Prompt template extracted from 6372.25d926454a35e061a88b.js",
"type": "prompt",
"category": "coding",
"content": "descending",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/6372.25d926454a35e061a88b.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/system/ProjectsUpdatedInBackgroundEvent.json:
--------------------------------------------------------------------------------
```json
{
"name": "ProjectsUpdatedInBackgroundEvent",
"description": "Prompt template extracted from typescript.d.ts",
"type": "prompt",
"category": "system",
"content": "projectsUpdatedInBackground",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/typescript/lib/typescript.d.ts",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/GenStateSuspendedStart.json:
--------------------------------------------------------------------------------
```json
{
"name": "GenStateSuspendedStart",
"description": "Prompt template extracted from regeneratorRuntime.js",
"type": "prompt",
"category": "coding",
"content": "suspendedStart",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/queryText.json:
--------------------------------------------------------------------------------
```json
{
"name": "queryText",
"description": "Prompt template extracted from sizing.js",
"type": "prompt",
"category": "coding",
"content": "SELECT COUNT(*) as counts FROM pg_stat_activity WHERE ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/pg-pool/test/sizing.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/SOURCE_MAPPING_PREFIX.json:
--------------------------------------------------------------------------------
```json
{
"name": "SOURCE_MAPPING_PREFIX",
"description": "Prompt template extracted from compiler-utils.d.ts",
"type": "prompt",
"category": "coding",
"content": "sourceMappingURL=",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/ts-jest/dist/legacy/compiler/compiler-utils.d.ts",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/START_HIDING.json:
--------------------------------------------------------------------------------
```json
{
"name": "START_HIDING",
"description": "Prompt template extracted from rewrite-stack-trace.js",
"type": "prompt",
"category": "coding",
"content": "startHiding - secret - don",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/GenStateSuspendedStart.json:
--------------------------------------------------------------------------------
```json
{
"name": "GenStateSuspendedStart",
"description": "Prompt template extracted from regeneratorRuntime.js",
"type": "prompt",
"category": "coding",
"content": "suspendedStart",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/queryText.json:
--------------------------------------------------------------------------------
```json
{
"name": "queryText",
"description": "Prompt template extracted from sizing.js",
"type": "prompt",
"category": "coding",
"content": "SELECT COUNT(*) as counts FROM pg_stat_activity WHERE ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/pg-pool/test/sizing.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/SOURCE_MAPPING_PREFIX.json:
--------------------------------------------------------------------------------
```json
{
"name": "SOURCE_MAPPING_PREFIX",
"description": "Prompt template extracted from compiler-utils.d.ts",
"type": "prompt",
"category": "coding",
"content": "sourceMappingURL=",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/ts-jest/dist/legacy/compiler/compiler-utils.d.ts",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/START_HIDING.json:
--------------------------------------------------------------------------------
```json
{
"name": "START_HIDING",
"description": "Prompt template extracted from rewrite-stack-trace.js",
"type": "prompt",
"category": "coding",
"content": "startHiding - secret - don",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/se.json:
--------------------------------------------------------------------------------
```json
{
"name": "se",
"description": "Prompt template extracted from 7990.fc875753fcfcc9b4eebc.js",
"type": "prompt",
"category": "coding",
"content": "vega-themes",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/7990.fc875753fcfcc9b4eebc.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/tn.json:
--------------------------------------------------------------------------------
```json
{
"name": "tn",
"description": "Prompt template extracted from 29.540aeb3a13cb59106872.js",
"type": "prompt",
"category": "coding",
"content": "[object String]",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/29.540aeb3a13cb59106872.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/se.json:
--------------------------------------------------------------------------------
```json
{
"name": "se",
"description": "Prompt template extracted from 7990.fc875753fcfcc9b4eebc.js",
"type": "prompt",
"category": "coding",
"content": "vega-themes",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/7990.fc875753fcfcc9b4eebc.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/tn.json:
--------------------------------------------------------------------------------
```json
{
"name": "tn",
"description": "Prompt template extracted from 29.540aeb3a13cb59106872.js",
"type": "prompt",
"category": "coding",
"content": "[object String]",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/29.540aeb3a13cb59106872.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/es6Default.json:
--------------------------------------------------------------------------------
```json
{
"name": "es6Default",
"description": "Prompt template extracted from import-injector.js",
"type": "prompt",
"category": "coding",
"content": "${importedSource}$es6Default",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/helper-module-imports/lib/import-injector.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/es6Default.json:
--------------------------------------------------------------------------------
```json
{
"name": "es6Default",
"description": "Prompt template extracted from import-injector.js",
"type": "prompt",
"category": "coding",
"content": "${importedSource}$es6Default",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/helper-module-imports/lib/import-injector.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/authorization_endpoint.json:
--------------------------------------------------------------------------------
```json
{
"name": "authorization_endpoint",
"description": "Prompt template extracted from router.js",
"type": "prompt",
"category": "coding",
"content": "/authorize",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/authorization_endpoint.json:
--------------------------------------------------------------------------------
```json
{
"name": "authorization_endpoint",
"description": "Prompt template extracted from router.js",
"type": "prompt",
"category": "coding",
"content": "/authorize",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/m.json:
--------------------------------------------------------------------------------
```json
{
"name": "m",
"description": "Prompt template extracted from walker.js",
"type": "prompt",
"category": "coding",
"content": "cannot ignore child matches, ignore lacks add() method.",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/rimraf/node_modules/glob/dist/esm/walker.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/m.json:
--------------------------------------------------------------------------------
```json
{
"name": "m",
"description": "Prompt template extracted from walker.js",
"type": "prompt",
"category": "coding",
"content": "cannot ignore child matches, ignore lacks add() method.",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/rimraf/node_modules/glob/dist/esm/walker.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/promptId.json:
--------------------------------------------------------------------------------
```json
{
"name": "promptId",
"description": "Prompt template extracted from postgres-adapter.integration.test.ts",
"type": "prompt",
"category": "user",
"content": "update-test-${Date.now()}",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/tests/integration/postgres-adapter.integration.test.ts",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/user/promptId.json:
--------------------------------------------------------------------------------
```json
{
"name": "promptId",
"description": "Prompt template extracted from postgres-adapter.integration.test.ts",
"type": "prompt",
"category": "user",
"content": "update-test-${Date.now()}",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/tests/integration/postgres-adapter.integration.test.ts",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/BROWSER_VAR.json:
--------------------------------------------------------------------------------
```json
{
"name": "BROWSER_VAR",
"description": "Prompt template extracted from browser-test.js",
"type": "prompt",
"category": "coding",
"content": "JLAB_BROWSER_TYPE",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/jupyterlab/browser-test.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/BROWSER_VAR.json:
--------------------------------------------------------------------------------
```json
{
"name": "BROWSER_VAR",
"description": "Prompt template extracted from browser-test.js",
"type": "prompt",
"category": "coding",
"content": "JLAB_BROWSER_TYPE",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/jupyterlab/browser-test.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/DOCUMENTATION_NOTE.json:
--------------------------------------------------------------------------------
```json
{
"name": "DOCUMENTATION_NOTE",
"description": "Prompt template extracted from validateCLIOptions.js",
"type": "prompt",
"category": "coding",
"content": " ${_chalk().default.bold(\n ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-validate/build/validateCLIOptions.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/DOCUMENTATION_NOTE.json:
--------------------------------------------------------------------------------
```json
{
"name": "DOCUMENTATION_NOTE",
"description": "Prompt template extracted from validateCLIOptions.js",
"type": "prompt",
"category": "coding",
"content": " ${_chalk().default.bold(\n ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-validate/build/validateCLIOptions.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/printcast-agent/src/orchestration/__init__.py:
--------------------------------------------------------------------------------
```python
"""
Workflow orchestration for PrintCast Agent.
This package handles the coordination of all services to execute
complete voice-to-print workflows.
"""
from .workflow import WorkflowOrchestrator
from .state_machine import WorkflowStateMachine
from .tasks import TaskExecutor
__all__ = [
"WorkflowOrchestrator",
"WorkflowStateMachine",
"TaskExecutor",
]
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/tempName.json:
--------------------------------------------------------------------------------
```json
{
"name": "tempName",
"description": "Prompt template extracted from visitor.js",
"type": "prompt",
"category": "coding",
"content": "${this.varName}_temp",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument/src/visitor.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/tempName.json:
--------------------------------------------------------------------------------
```json
{
"name": "tempName",
"description": "Prompt template extracted from visitor.js",
"type": "prompt",
"category": "coding",
"content": "${this.varName}_temp",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument/src/visitor.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/short.json:
--------------------------------------------------------------------------------
```json
{
"name": "short",
"description": "Prompt template extracted from primitives.js",
"type": "prompt",
"category": "coding",
"content": "short",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/zod-to-json-schema/dist-test/cjs/node_modules/zod/lib/benchmarks/primitives.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/SUITE_NAME.json:
--------------------------------------------------------------------------------
```json
{
"name": "SUITE_NAME",
"description": "Prompt template extracted from string.js",
"type": "prompt",
"category": "coding",
"content": "z.string",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/zod-to-json-schema/dist-test/cjs/node_modules/zod/lib/benchmarks/string.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/short.json:
--------------------------------------------------------------------------------
```json
{
"name": "short",
"description": "Prompt template extracted from primitives.js",
"type": "prompt",
"category": "coding",
"content": "short",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/zod-to-json-schema/dist-test/cjs/node_modules/zod/lib/benchmarks/primitives.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/SUITE_NAME.json:
--------------------------------------------------------------------------------
```json
{
"name": "SUITE_NAME",
"description": "Prompt template extracted from string.js",
"type": "prompt",
"category": "coding",
"content": "z.string",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/zod-to-json-schema/dist-test/cjs/node_modules/zod/lib/benchmarks/string.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/__init__.py:
--------------------------------------------------------------------------------
```python
"""
Mermaid diagram generation for the MCP Project Orchestrator.
This module provides diagram generation and rendering capabilities.
"""
from .generator import MermaidGenerator
from .renderer import MermaidRenderer
from .types import DiagramType, DiagramMetadata
__all__ = [
"MermaidGenerator",
"MermaidRenderer",
"DiagramType",
"DiagramMetadata",
]
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/Aa.json:
--------------------------------------------------------------------------------
```json
{
"name": "Aa",
"description": "Prompt template extracted from 2576.b98b7b23adeec4cb6932.js",
"type": "prompt",
"category": "system",
"content": "data-jp-theme-name",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/2576.b98b7b23adeec4cb6932.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/connectionString.json:
--------------------------------------------------------------------------------
```json
{
"name": "connectionString",
"description": "Prompt template extracted from connection-strings.js",
"type": "prompt",
"category": "coding",
"content": "postgres://foo:bar@baz:1234/xur",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/pg-pool/test/connection-strings.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/connectionString.json:
--------------------------------------------------------------------------------
```json
{
"name": "connectionString",
"description": "Prompt template extracted from connection-strings.js",
"type": "prompt",
"category": "coding",
"content": "postgres://foo:bar@baz:1234/xur",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/pg-pool/test/connection-strings.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/system/Aa.json:
--------------------------------------------------------------------------------
```json
{
"name": "Aa",
"description": "Prompt template extracted from 2576.b98b7b23adeec4cb6932.js",
"type": "prompt",
"category": "system",
"content": "data-jp-theme-name",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/2576.b98b7b23adeec4cb6932.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/absoluteThresholdGroup.json:
--------------------------------------------------------------------------------
```json
{
"name": "absoluteThresholdGroup",
"description": "Prompt template extracted from CoverageReporter.js",
"type": "prompt",
"category": "coding",
"content": "${resolvedThresholdGroup}${suffix}",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@jest/reporters/build/CoverageReporter.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/absoluteThresholdGroup.json:
--------------------------------------------------------------------------------
```json
{
"name": "absoluteThresholdGroup",
"description": "Prompt template extracted from CoverageReporter.js",
"type": "prompt",
"category": "coding",
"content": "${resolvedThresholdGroup}${suffix}",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@jest/reporters/build/CoverageReporter.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/mdcContent.json:
--------------------------------------------------------------------------------
```json
{
"name": "mdcContent",
"description": "Prompt template extracted from adapters.unit.test.ts",
"type": "prompt",
"category": "coding",
"content": "---\nname: MDC Test\ndescription: A test prompt from MDC\nglobs: [",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/tests/unit/adapters.unit.test.ts",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/mdcContent.json:
--------------------------------------------------------------------------------
```json
{
"name": "mdcContent",
"description": "Prompt template extracted from adapters.unit.test.ts",
"type": "prompt",
"category": "coding",
"content": "---\nname: MDC Test\ndescription: A test prompt from MDC\nglobs: [",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/tests/unit/adapters.unit.test.ts",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/stats.json:
--------------------------------------------------------------------------------
```json
{
"name": "stats",
"description": "Prompt template extracted from FailedTestsInteractiveMode.js",
"type": "prompt",
"category": "coding",
"content": "${(0, _jestUtil().pluralize)(\n ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@jest/core/build/FailedTestsInteractiveMode.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/stats.json:
--------------------------------------------------------------------------------
```json
{
"name": "stats",
"description": "Prompt template extracted from FailedTestsInteractiveMode.js",
"type": "prompt",
"category": "coding",
"content": "${(0, _jestUtil().pluralize)(\n ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@jest/core/build/FailedTestsInteractiveMode.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/typeArgumentsKey.json:
--------------------------------------------------------------------------------
```json
{
"name": "typeArgumentsKey",
"description": "Prompt template extracted from removeTypeDuplicates.js",
"type": "prompt",
"category": "coding",
"content": "typeParameters",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/typeArgumentsKey.json:
--------------------------------------------------------------------------------
```json
{
"name": "typeArgumentsKey",
"description": "Prompt template extracted from removeTypeDuplicates.js",
"type": "prompt",
"category": "coding",
"content": "typeParameters",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/ERROR_MESSAGE.json:
--------------------------------------------------------------------------------
```json
{
"name": "ERROR_MESSAGE",
"description": "Prompt template extracted from implementation.js",
"type": "prompt",
"category": "coding",
"content": "Function.prototype.bind called on incompatible ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/function-bind/implementation.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/mtr.json:
--------------------------------------------------------------------------------
```json
{
"name": "mtr",
"description": "Prompt template extracted from 7154.1ab03d07151bbd0aad06.js",
"type": "prompt",
"category": "coding",
"content": "mtr",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7154.1ab03d07151bbd0aad06.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/watchmanURL.json:
--------------------------------------------------------------------------------
```json
{
"name": "watchmanURL",
"description": "Prompt template extracted from watchman.js",
"type": "prompt",
"category": "coding",
"content": "https://facebook.github.io/watchman/docs/troubleshooting",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-haste-map/build/crawlers/watchman.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/ERROR_MESSAGE.json:
--------------------------------------------------------------------------------
```json
{
"name": "ERROR_MESSAGE",
"description": "Prompt template extracted from implementation.js",
"type": "prompt",
"category": "coding",
"content": "Function.prototype.bind called on incompatible ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/function-bind/implementation.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/mtr.json:
--------------------------------------------------------------------------------
```json
{
"name": "mtr",
"description": "Prompt template extracted from 7154.1ab03d07151bbd0aad06.js",
"type": "prompt",
"category": "coding",
"content": "mtr",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7154.1ab03d07151bbd0aad06.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/watchmanURL.json:
--------------------------------------------------------------------------------
```json
{
"name": "watchmanURL",
"description": "Prompt template extracted from watchman.js",
"type": "prompt",
"category": "coding",
"content": "https://facebook.github.io/watchman/docs/troubleshooting",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-haste-map/build/crawlers/watchman.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/gutter.json:
--------------------------------------------------------------------------------
```json
{
"name": "gutter",
"description": "Prompt template extracted from 4926.70b91208fd35ee838d65.js",
"type": "prompt",
"category": "coding",
"content": " ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/4926.70b91208fd35ee838d65.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/side.json:
--------------------------------------------------------------------------------
```json
{
"name": "side",
"description": "Prompt template extracted from 9799.606ec31deee27f6716b0.js",
"type": "prompt",
"category": "coding",
"content": "top",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/9799.606ec31deee27f6716b0.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/gutter.json:
--------------------------------------------------------------------------------
```json
{
"name": "gutter",
"description": "Prompt template extracted from 4926.70b91208fd35ee838d65.js",
"type": "prompt",
"category": "coding",
"content": " ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/4926.70b91208fd35ee838d65.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/side.json:
--------------------------------------------------------------------------------
```json
{
"name": "side",
"description": "Prompt template extracted from 9799.606ec31deee27f6716b0.js",
"type": "prompt",
"category": "coding",
"content": "top",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/9799.606ec31deee27f6716b0.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/__dirname.json:
--------------------------------------------------------------------------------
```json
{
"name": "__dirname",
"description": "Prompt template extracted from 792.050c0efb8da8e633f900.js",
"type": "prompt",
"category": "coding",
"content": "/",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/792.050c0efb8da8e633f900.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/at.json:
--------------------------------------------------------------------------------
```json
{
"name": "at",
"description": "Prompt template extracted from 700.f3db1bd22341e0bf0b74.js",
"type": "prompt",
"category": "coding",
"content": "http://www.w3.org/1999/xhtml",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/700.f3db1bd22341e0bf0b74.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/__dirname.json:
--------------------------------------------------------------------------------
```json
{
"name": "__dirname",
"description": "Prompt template extracted from 792.050c0efb8da8e633f900.js",
"type": "prompt",
"category": "coding",
"content": "/",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/792.050c0efb8da8e633f900.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/at.json:
--------------------------------------------------------------------------------
```json
{
"name": "at",
"description": "Prompt template extracted from 700.f3db1bd22341e0bf0b74.js",
"type": "prompt",
"category": "coding",
"content": "http://www.w3.org/1999/xhtml",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/700.f3db1bd22341e0bf0b74.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/fill.json:
--------------------------------------------------------------------------------
```json
{
"name": "fill",
"description": "Prompt template extracted from 4035.f4b13866b60b1af40230.js",
"type": "prompt",
"category": "coding",
"content": "#CCC",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/4035.f4b13866b60b1af40230.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/from.json:
--------------------------------------------------------------------------------
```json
{
"name": "from",
"description": "Prompt template extracted from 2343.76b08c834d1f3e6c0655.js",
"type": "prompt",
"category": "coding",
"content": "from",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2343.76b08c834d1f3e6c0655.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/fill.json:
--------------------------------------------------------------------------------
```json
{
"name": "fill",
"description": "Prompt template extracted from 4035.f4b13866b60b1af40230.js",
"type": "prompt",
"category": "coding",
"content": "#CCC",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/4035.f4b13866b60b1af40230.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/from.json:
--------------------------------------------------------------------------------
```json
{
"name": "from",
"description": "Prompt template extracted from 2343.76b08c834d1f3e6c0655.js",
"type": "prompt",
"category": "coding",
"content": "from",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2343.76b08c834d1f3e6c0655.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/direction.json:
--------------------------------------------------------------------------------
```json
{
"name": "direction",
"description": "Prompt template extracted from 261.7c7a6b6d904fd35115a3.js",
"type": "prompt",
"category": "coding",
"content": "LR",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/261.7c7a6b6d904fd35115a3.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/route.json:
--------------------------------------------------------------------------------
```json
{
"name": "route",
"description": "Prompt template extracted from 1650.8d7f95fed9378b01c97b.js",
"type": "prompt",
"category": "coding",
"content": "edit",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1650.8d7f95fed9378b01c97b.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/shape.json:
--------------------------------------------------------------------------------
```json
{
"name": "shape",
"description": "Prompt template extracted from 8443.214c35b34c68e0bcfa22.js",
"type": "prompt",
"category": "coding",
"content": "M 0,",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/8443.214c35b34c68e0bcfa22.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/sourceMapContent.json:
--------------------------------------------------------------------------------
```json
{
"name": "sourceMapContent",
"description": "Prompt template extracted from compiler-utils.js",
"type": "prompt",
"category": "coding",
"content": "data:application/json;charset=utf-8;base64,",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/ts-jest/dist/legacy/compiler/compiler-utils.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/direction.json:
--------------------------------------------------------------------------------
```json
{
"name": "direction",
"description": "Prompt template extracted from 261.7c7a6b6d904fd35115a3.js",
"type": "prompt",
"category": "coding",
"content": "LR",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/261.7c7a6b6d904fd35115a3.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/route.json:
--------------------------------------------------------------------------------
```json
{
"name": "route",
"description": "Prompt template extracted from 1650.8d7f95fed9378b01c97b.js",
"type": "prompt",
"category": "coding",
"content": "edit",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1650.8d7f95fed9378b01c97b.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/shape.json:
--------------------------------------------------------------------------------
```json
{
"name": "shape",
"description": "Prompt template extracted from 8443.214c35b34c68e0bcfa22.js",
"type": "prompt",
"category": "coding",
"content": "M 0,",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/8443.214c35b34c68e0bcfa22.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/sourceMapContent.json:
--------------------------------------------------------------------------------
```json
{
"name": "sourceMapContent",
"description": "Prompt template extracted from compiler-utils.js",
"type": "prompt",
"category": "coding",
"content": "data:application/json;charset=utf-8;base64,",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/ts-jest/dist/legacy/compiler/compiler-utils.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/delimiter.json:
--------------------------------------------------------------------------------
```json
{
"name": "delimiter",
"description": "Prompt template extracted from 7796.ea7106c833e81e2e6a6d.js",
"type": "prompt",
"category": "coding",
"content": "-",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7796.ea7106c833e81e2e6a6d.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/helpMessage.json:
--------------------------------------------------------------------------------
```json
{
"name": "helpMessage",
"description": "Prompt template extracted from missing-plugin-helper.js",
"type": "prompt",
"category": "coding",
"content": "Support for the experimental syntax ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/labelId.json:
--------------------------------------------------------------------------------
```json
{
"name": "labelId",
"description": "Prompt template extracted from 7097.43efeed14ea8a19c9342.js",
"type": "prompt",
"category": "coding",
"content": "rel",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7097.43efeed14ea8a19c9342.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/delimiter.json:
--------------------------------------------------------------------------------
```json
{
"name": "delimiter",
"description": "Prompt template extracted from 7796.ea7106c833e81e2e6a6d.js",
"type": "prompt",
"category": "coding",
"content": "-",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7796.ea7106c833e81e2e6a6d.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/helpMessage.json:
--------------------------------------------------------------------------------
```json
{
"name": "helpMessage",
"description": "Prompt template extracted from missing-plugin-helper.js",
"type": "prompt",
"category": "coding",
"content": "Support for the experimental syntax ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/labelId.json:
--------------------------------------------------------------------------------
```json
{
"name": "labelId",
"description": "Prompt template extracted from 7097.43efeed14ea8a19c9342.js",
"type": "prompt",
"category": "coding",
"content": "rel",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7097.43efeed14ea8a19c9342.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/BASE64_MAP.json:
--------------------------------------------------------------------------------
```json
{
"name": "BASE64_MAP",
"description": "Prompt template extracted from binary.js",
"type": "prompt",
"category": "coding",
"content": "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\\n\\r",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/js-yaml/lib/js-yaml/type/binary.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/baseFlags.json:
--------------------------------------------------------------------------------
```json
{
"name": "baseFlags",
"description": "Prompt template extracted from 5261.570ec78f80a112aa7d5d.js",
"type": "prompt",
"category": "coding",
"content": "gm",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5261.570ec78f80a112aa7d5d.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/BASE64_MAP.json:
--------------------------------------------------------------------------------
```json
{
"name": "BASE64_MAP",
"description": "Prompt template extracted from binary.js",
"type": "prompt",
"category": "coding",
"content": "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\\n\\r",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/js-yaml/lib/js-yaml/type/binary.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/baseFlags.json:
--------------------------------------------------------------------------------
```json
{
"name": "baseFlags",
"description": "Prompt template extracted from 5261.570ec78f80a112aa7d5d.js",
"type": "prompt",
"category": "coding",
"content": "gm",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5261.570ec78f80a112aa7d5d.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/style.json:
--------------------------------------------------------------------------------
```json
{
"name": "style",
"description": "Prompt template extracted from 3420.693f6432957cbf2699c5.js",
"type": "prompt",
"category": "coding",
"content": "string",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/3420.693f6432957cbf2699c5.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/style.json:
--------------------------------------------------------------------------------
```json
{
"name": "style",
"description": "Prompt template extracted from 3420.693f6432957cbf2699c5.js",
"type": "prompt",
"category": "coding",
"content": "string",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/3420.693f6432957cbf2699c5.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/cssClassStr.json:
--------------------------------------------------------------------------------
```json
{
"name": "cssClassStr",
"description": "Prompt template extracted from 1388.826f4dbe3aadaef0ba1f.js",
"type": "prompt",
"category": "coding",
"content": " ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1388.826f4dbe3aadaef0ba1f.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/elide.json:
--------------------------------------------------------------------------------
```json
{
"name": "elide",
"description": "Prompt template extracted from 8929.b5b29c25d0b317812054.js",
"type": "prompt",
"category": "coding",
"content": "\\u2026",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/8929.b5b29c25d0b317812054.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/Escapable.json:
--------------------------------------------------------------------------------
```json
{
"name": "Escapable",
"description": "Prompt template extracted from 6271.a83a0f2aa464d0c1bbf5.js",
"type": "prompt",
"category": "coding",
"content": "!\\",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/6271.a83a0f2aa464d0c1bbf5.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/cssClassStr.json:
--------------------------------------------------------------------------------
```json
{
"name": "cssClassStr",
"description": "Prompt template extracted from 1388.826f4dbe3aadaef0ba1f.js",
"type": "prompt",
"category": "coding",
"content": " ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1388.826f4dbe3aadaef0ba1f.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/elide.json:
--------------------------------------------------------------------------------
```json
{
"name": "elide",
"description": "Prompt template extracted from 8929.b5b29c25d0b317812054.js",
"type": "prompt",
"category": "coding",
"content": "\\u2026",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/8929.b5b29c25d0b317812054.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/Escapable.json:
--------------------------------------------------------------------------------
```json
{
"name": "Escapable",
"description": "Prompt template extracted from 6271.a83a0f2aa464d0c1bbf5.js",
"type": "prompt",
"category": "coding",
"content": "!\\",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/6271.a83a0f2aa464d0c1bbf5.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/backupId.json:
--------------------------------------------------------------------------------
```json
{
"name": "backupId",
"description": "Prompt template extracted from adapters.js",
"type": "prompt",
"category": "user",
"content": "file_backup_${new Date().toISOString().replace(/[:.]/g, ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/@sparesparrow/mcp-prompts/dist/adapters.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/out.json:
--------------------------------------------------------------------------------
```json
{
"name": "out",
"description": "Prompt template extracted from 306.dd9ffcf982b0c863872b.js",
"type": "prompt",
"category": "coding",
"content": "digraph {\\n",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/306.dd9ffcf982b0c863872b.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/selector.json:
--------------------------------------------------------------------------------
```json
{
"name": "selector",
"description": "Prompt template extracted from 2065.e9b5d8d0a8bec3304454.js",
"type": "prompt",
"category": "coding",
"content": "mjx-c",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2065.e9b5d8d0a8bec3304454.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/out.json:
--------------------------------------------------------------------------------
```json
{
"name": "out",
"description": "Prompt template extracted from 306.dd9ffcf982b0c863872b.js",
"type": "prompt",
"category": "coding",
"content": "digraph {\\n",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/306.dd9ffcf982b0c863872b.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/selector.json:
--------------------------------------------------------------------------------
```json
{
"name": "selector",
"description": "Prompt template extracted from 2065.e9b5d8d0a8bec3304454.js",
"type": "prompt",
"category": "coding",
"content": "mjx-c",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2065.e9b5d8d0a8bec3304454.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/user/backupId.json:
--------------------------------------------------------------------------------
```json
{
"name": "backupId",
"description": "Prompt template extracted from adapters.js",
"type": "prompt",
"category": "user",
"content": "file_backup_${new Date().toISOString().replace(/[:.]/g, ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/@sparesparrow/mcp-prompts/dist/adapters.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/brackets.json:
--------------------------------------------------------------------------------
```json
{
"name": "brackets",
"description": "Prompt template extracted from 1601.4154c4f9ed460feae33b.js",
"type": "prompt",
"category": "coding",
"content": "([{}])",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1601.4154c4f9ed460feae33b.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/BUILTIN.json:
--------------------------------------------------------------------------------
```json
{
"name": "BUILTIN",
"description": "Prompt template extracted from 8979.cafa00ee6b2e82b39a17.js",
"type": "prompt",
"category": "coding",
"content": "builtin",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/8979.cafa00ee6b2e82b39a17.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/brackets.json:
--------------------------------------------------------------------------------
```json
{
"name": "brackets",
"description": "Prompt template extracted from 1601.4154c4f9ed460feae33b.js",
"type": "prompt",
"category": "coding",
"content": "([{}])",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1601.4154c4f9ed460feae33b.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/BUILTIN.json:
--------------------------------------------------------------------------------
```json
{
"name": "BUILTIN",
"description": "Prompt template extracted from 8979.cafa00ee6b2e82b39a17.js",
"type": "prompt",
"category": "coding",
"content": "builtin",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/8979.cafa00ee6b2e82b39a17.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/other/Test_Prompt.json:
--------------------------------------------------------------------------------
```json
{
"name": "Test Prompt",
"description": "A test prompt",
"type": "prompt",
"category": "other",
"content": "This is a test prompt for {{variable}}",
"variables": {
"variable": {
"description": "Test variable",
"default_value": "testing"
}
},
"metadata": {
"source": "/home/sparrow/mcp/data/prompts/test-prompt.json",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/Test_Prompt.json:
--------------------------------------------------------------------------------
```json
{
"name": "Test Prompt",
"description": "A test prompt",
"type": "prompt",
"category": "other",
"content": "This is a test prompt for {{variable}}",
"variables": {
"variable": {
"description": "Test variable",
"default_value": "testing"
}
},
"metadata": {
"source": "/home/sparrow/mcp/data/prompts/test-prompt.json",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/__image_1___describe_the_icon_in_one_sen___.json:
--------------------------------------------------------------------------------
```json
{
"name": "<|image_1|>\ndescribe the icon in one sen...",
"description": "<|image_1|>\ndescribe the icon in one sentence",
"type": "prompt",
"category": "other",
"content": "<|image_1|>\ndescribe the icon in one sentence",
"variables": {},
"metadata": {
"source": "/home/sparrow/mcp/data/prompts/image-1-describe-the-icon-in-one-sen.json",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/classStr.json:
--------------------------------------------------------------------------------
```json
{
"name": "classStr",
"description": "Prompt template extracted from 7153.e0fe24c9b8309e3171da.js",
"type": "prompt",
"category": "coding",
"content": "default",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7153.e0fe24c9b8309e3171da.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/classStr.json:
--------------------------------------------------------------------------------
```json
{
"name": "classStr",
"description": "Prompt template extracted from 7153.e0fe24c9b8309e3171da.js",
"type": "prompt",
"category": "coding",
"content": "default",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7153.e0fe24c9b8309e3171da.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/ERRORCLASS.json:
--------------------------------------------------------------------------------
```json
{
"name": "ERRORCLASS",
"description": "Prompt template extracted from 2871.46ec88c6997ef947f39f.js",
"type": "prompt",
"category": "coding",
"content": "error",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2871.46ec88c6997ef947f39f.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/reserve.json:
--------------------------------------------------------------------------------
```json
{
"name": "reserve",
"description": "Prompt template extracted from 2702.bc49dbd258cca77aeea4.js",
"type": "prompt",
"category": "coding",
"content": "><+-.,[]",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2702.bc49dbd258cca77aeea4.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/SHAPE_STATE.json:
--------------------------------------------------------------------------------
```json
{
"name": "SHAPE_STATE",
"description": "Prompt template extracted from 3154.60f9b1fbaa33b00df058.js",
"type": "prompt",
"category": "coding",
"content": "rect",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/3154.60f9b1fbaa33b00df058.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/ERRORCLASS.json:
--------------------------------------------------------------------------------
```json
{
"name": "ERRORCLASS",
"description": "Prompt template extracted from 2871.46ec88c6997ef947f39f.js",
"type": "prompt",
"category": "coding",
"content": "error",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2871.46ec88c6997ef947f39f.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/other/__image_1___describe_the_icon_in_one_sen___.json:
--------------------------------------------------------------------------------
```json
{
"name": "<|image_1|>\ndescribe the icon in one sen...",
"description": "<|image_1|>\ndescribe the icon in one sentence",
"type": "prompt",
"category": "other",
"content": "<|image_1|>\ndescribe the icon in one sentence",
"variables": {},
"metadata": {
"source": "/home/sparrow/mcp/data/prompts/image-1-describe-the-icon-in-one-sen.json",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/reserve.json:
--------------------------------------------------------------------------------
```json
{
"name": "reserve",
"description": "Prompt template extracted from 2702.bc49dbd258cca77aeea4.js",
"type": "prompt",
"category": "coding",
"content": "><+-.,[]",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2702.bc49dbd258cca77aeea4.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/SHAPE_STATE.json:
--------------------------------------------------------------------------------
```json
{
"name": "SHAPE_STATE",
"description": "Prompt template extracted from 3154.60f9b1fbaa33b00df058.js",
"type": "prompt",
"category": "coding",
"content": "rect",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/3154.60f9b1fbaa33b00df058.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/displayValue.json:
--------------------------------------------------------------------------------
```json
{
"name": "displayValue",
"description": "Prompt template extracted from 2241.465ada7a1ff712139f9e.js",
"type": "prompt",
"category": "coding",
"content": "none",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2241.465ada7a1ff712139f9e.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/insert.json:
--------------------------------------------------------------------------------
```json
{
"name": "insert",
"description": "Prompt template extracted from 7866.2e8f9ed8e3300c1f0146.js",
"type": "prompt",
"category": "coding",
"content": "</${name}>",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7866.2e8f9ed8e3300c1f0146.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/override.json:
--------------------------------------------------------------------------------
```json
{
"name": "override",
"description": "Prompt template extracted from 6739.a2cfcf763eb412a26515.js",
"type": "prompt",
"category": "coding",
"content": "variable",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/6739.a2cfcf763eb412a26515.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/toValue.json:
--------------------------------------------------------------------------------
```json
{
"name": "toValue",
"description": "Prompt template extracted from 2913.274b19d8f201991f4a69.js",
"type": "prompt",
"category": "coding",
"content": "\\\\uFFFF",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2913.274b19d8f201991f4a69.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/displayValue.json:
--------------------------------------------------------------------------------
```json
{
"name": "displayValue",
"description": "Prompt template extracted from 2241.465ada7a1ff712139f9e.js",
"type": "prompt",
"category": "coding",
"content": "none",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2241.465ada7a1ff712139f9e.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/insert.json:
--------------------------------------------------------------------------------
```json
{
"name": "insert",
"description": "Prompt template extracted from 7866.2e8f9ed8e3300c1f0146.js",
"type": "prompt",
"category": "coding",
"content": "</${name}>",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7866.2e8f9ed8e3300c1f0146.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/override.json:
--------------------------------------------------------------------------------
```json
{
"name": "override",
"description": "Prompt template extracted from 6739.a2cfcf763eb412a26515.js",
"type": "prompt",
"category": "coding",
"content": "variable",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/6739.a2cfcf763eb412a26515.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/toValue.json:
--------------------------------------------------------------------------------
```json
{
"name": "toValue",
"description": "Prompt template extracted from 2913.274b19d8f201991f4a69.js",
"type": "prompt",
"category": "coding",
"content": "\\\\uFFFF",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2913.274b19d8f201991f4a69.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/intToCharMap.json:
--------------------------------------------------------------------------------
```json
{
"name": "intToCharMap",
"description": "Prompt template extracted from source-map.debug.js",
"type": "prompt",
"category": "coding",
"content": "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/source-map/dist/source-map.debug.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/matchingDelim.json:
--------------------------------------------------------------------------------
```json
{
"name": "matchingDelim",
"description": "Prompt template extracted from 5828.2317870182c25e18e76f.js",
"type": "prompt",
"category": "coding",
"content": "[{<(",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5828.2317870182c25e18e76f.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/intToCharMap.json:
--------------------------------------------------------------------------------
```json
{
"name": "intToCharMap",
"description": "Prompt template extracted from source-map.debug.js",
"type": "prompt",
"category": "coding",
"content": "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/source-map/dist/source-map.debug.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/matchingDelim.json:
--------------------------------------------------------------------------------
```json
{
"name": "matchingDelim",
"description": "Prompt template extracted from 5828.2317870182c25e18e76f.js",
"type": "prompt",
"category": "coding",
"content": "[{<(",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5828.2317870182c25e18e76f.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/HOOK_RETURNED_NOTHING_ERROR_MESSAGE.json:
--------------------------------------------------------------------------------
```json
{
"name": "HOOK_RETURNED_NOTHING_ERROR_MESSAGE",
"description": "Prompt template extracted from index.js",
"type": "prompt",
"category": "coding",
"content": "[Pirates] A hook returned a non-string, or nothing at all! This is a",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/pirates/lib/index.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/nullTag.json:
--------------------------------------------------------------------------------
```json
{
"name": "nullTag",
"description": "Prompt template extracted from 755.3d6eb3b7f81d035f52f4.js",
"type": "prompt",
"category": "coding",
"content": "[object Null]",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/755.3d6eb3b7f81d035f52f4.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/transform.json:
--------------------------------------------------------------------------------
```json
{
"name": "transform",
"description": "Prompt template extracted from 7369.286a75761c308381b0a4.js",
"type": "prompt",
"category": "coding",
"content": "translate",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7369.286a75761c308381b0a4.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/DESCENDING.json:
--------------------------------------------------------------------------------
```json
{
"name": "DESCENDING",
"description": "Prompt template extracted from 1326.9297038a97bfe38e02c5.js",
"type": "prompt",
"category": "user",
"content": "descending",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1326.9297038a97bfe38e02c5.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/HOOK_RETURNED_NOTHING_ERROR_MESSAGE.json:
--------------------------------------------------------------------------------
```json
{
"name": "HOOK_RETURNED_NOTHING_ERROR_MESSAGE",
"description": "Prompt template extracted from index.js",
"type": "prompt",
"category": "coding",
"content": "[Pirates] A hook returned a non-string, or nothing at all! This is a",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/pirates/lib/index.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/nullTag.json:
--------------------------------------------------------------------------------
```json
{
"name": "nullTag",
"description": "Prompt template extracted from 755.3d6eb3b7f81d035f52f4.js",
"type": "prompt",
"category": "coding",
"content": "[object Null]",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/755.3d6eb3b7f81d035f52f4.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/transform.json:
--------------------------------------------------------------------------------
```json
{
"name": "transform",
"description": "Prompt template extracted from 7369.286a75761c308381b0a4.js",
"type": "prompt",
"category": "coding",
"content": "translate",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7369.286a75761c308381b0a4.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/user/DESCENDING.json:
--------------------------------------------------------------------------------
```json
{
"name": "DESCENDING",
"description": "Prompt template extracted from 1326.9297038a97bfe38e02c5.js",
"type": "prompt",
"category": "user",
"content": "descending",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1326.9297038a97bfe38e02c5.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/configJsContent.json:
--------------------------------------------------------------------------------
```json
{
"name": "configJsContent",
"description": "Prompt template extracted from ensure-config.js",
"type": "prompt",
"category": "coding",
"content": "\n// Default configuration\n// This file is created by the build process if it doesn",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/scripts/build/ensure-config.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/configJsContent.json:
--------------------------------------------------------------------------------
```json
{
"name": "configJsContent",
"description": "Prompt template extracted from ensure-config.js",
"type": "prompt",
"category": "coding",
"content": "\n// Default configuration\n// This file is created by the build process if it doesn",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/scripts/build/ensure-config.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/mask.json:
--------------------------------------------------------------------------------
```json
{
"name": "mask",
"description": "Prompt template extracted from index.browser.js",
"type": "prompt",
"category": "coding",
"content": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-._~",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/pkce-challenge/dist/index.browser.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/property_prefix.json:
--------------------------------------------------------------------------------
```json
{
"name": "property_prefix",
"description": "Prompt template extracted from 8845.ac1c5acb78cea4acee08.js",
"type": "prompt",
"category": "coding",
"content": "bspr_",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/8845.ac1c5acb78cea4acee08.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/templateDir.json:
--------------------------------------------------------------------------------
```json
{
"name": "templateDir",
"description": "Prompt template extracted from project-orchestrator-tools.js",
"type": "prompt",
"category": "coding",
"content": "/home/sparrow/.config/Claude/prompts/project-orchestrator",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/publish/build/tools/project-orchestrator-tools.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/Initialize_project_setup_for_a_new_micro___.json:
--------------------------------------------------------------------------------
```json
{
"name": "Initialize project setup for a new micro...",
"description": "Initialize project setup for a new microservice",
"type": "prompt",
"category": "other",
"content": "Initialize project setup for a new microservice",
"variables": {},
"metadata": {
"source": "/home/sparrow/mcp/data/prompts/initialize-project-setup-for-a-new-micro.json",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/mask.json:
--------------------------------------------------------------------------------
```json
{
"name": "mask",
"description": "Prompt template extracted from index.browser.js",
"type": "prompt",
"category": "coding",
"content": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-._~",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/pkce-challenge/dist/index.browser.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/other/Initialize_project_setup_for_a_new_micro___.json:
--------------------------------------------------------------------------------
```json
{
"name": "Initialize project setup for a new micro...",
"description": "Initialize project setup for a new microservice",
"type": "prompt",
"category": "other",
"content": "Initialize project setup for a new microservice",
"variables": {},
"metadata": {
"source": "/home/sparrow/mcp/data/prompts/initialize-project-setup-for-a-new-micro.json",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/property_prefix.json:
--------------------------------------------------------------------------------
```json
{
"name": "property_prefix",
"description": "Prompt template extracted from 8845.ac1c5acb78cea4acee08.js",
"type": "prompt",
"category": "coding",
"content": "bspr_",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/8845.ac1c5acb78cea4acee08.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/templateDir.json:
--------------------------------------------------------------------------------
```json
{
"name": "templateDir",
"description": "Prompt template extracted from project-orchestrator-tools.js",
"type": "prompt",
"category": "coding",
"content": "/home/sparrow/.config/Claude/prompts/project-orchestrator",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/publish/build/tools/project-orchestrator-tools.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompt_manager/__init__.py:
--------------------------------------------------------------------------------
```python
"""
Prompt management for the MCP Project Orchestrator.
This module provides template management and rendering capabilities.
"""
from .manager import PromptManager
from .template import PromptTemplate, PromptMetadata, PromptCategory
from .loader import PromptLoader
__all__ = [
"PromptManager",
"PromptTemplate",
"PromptMetadata",
"PromptCategory",
"PromptLoader",
]
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/event.json:
--------------------------------------------------------------------------------
```json
{
"name": "event",
"description": "Prompt template extracted from 7450.a58b6759d984aebf0459.js",
"type": "prompt",
"category": "coding",
"content": "delete.selection",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7450.a58b6759d984aebf0459.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/event.json:
--------------------------------------------------------------------------------
```json
{
"name": "event",
"description": "Prompt template extracted from 7450.a58b6759d984aebf0459.js",
"type": "prompt",
"category": "coding",
"content": "delete.selection",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7450.a58b6759d984aebf0459.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/RXstyle.json:
--------------------------------------------------------------------------------
```json
{
"name": "RXstyle",
"description": "Prompt template extracted from 3322.e8348cc2a800190d4f49.js",
"type": "prompt",
"category": "system",
"content": "string.special",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/3322.e8348cc2a800190d4f49.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/system/RXstyle.json:
--------------------------------------------------------------------------------
```json
{
"name": "RXstyle",
"description": "Prompt template extracted from 3322.e8348cc2a800190d4f49.js",
"type": "prompt",
"category": "system",
"content": "string.special",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/3322.e8348cc2a800190d4f49.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/MAXIMUM_MESSAGE_SIZE.json:
--------------------------------------------------------------------------------
```json
{
"name": "MAXIMUM_MESSAGE_SIZE",
"description": "Prompt template extracted from sse.js",
"type": "prompt",
"category": "coding",
"content": "4mb",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/@modelcontextprotocol/server-postgres/node_modules/@modelcontextprotocol/sdk/dist/server/sse.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/REQUIRED_FIELD_SYMBOL.json:
--------------------------------------------------------------------------------
```json
{
"name": "REQUIRED_FIELD_SYMBOL",
"description": "Prompt template extracted from 1871.29951b77779d94d726d1.js",
"type": "prompt",
"category": "coding",
"content": "*",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1871.29951b77779d94d726d1.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/MAXIMUM_MESSAGE_SIZE.json:
--------------------------------------------------------------------------------
```json
{
"name": "MAXIMUM_MESSAGE_SIZE",
"description": "Prompt template extracted from sse.js",
"type": "prompt",
"category": "coding",
"content": "4mb",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/@modelcontextprotocol/server-postgres/node_modules/@modelcontextprotocol/sdk/dist/server/sse.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/REQUIRED_FIELD_SYMBOL.json:
--------------------------------------------------------------------------------
```json
{
"name": "REQUIRED_FIELD_SYMBOL",
"description": "Prompt template extracted from 1871.29951b77779d94d726d1.js",
"type": "prompt",
"category": "coding",
"content": "*",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1871.29951b77779d94d726d1.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/operators.json:
--------------------------------------------------------------------------------
```json
{
"name": "operators",
"description": "Prompt template extracted from 1618.da67fb30732c49b969ba.js",
"type": "prompt",
"category": "coding",
"content": "+-/*%=|&<>~^?!",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1618.da67fb30732c49b969ba.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/operators.json:
--------------------------------------------------------------------------------
```json
{
"name": "operators",
"description": "Prompt template extracted from 1618.da67fb30732c49b969ba.js",
"type": "prompt",
"category": "coding",
"content": "+-/*%=|&<>~^?!",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1618.da67fb30732c49b969ba.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/data/prompts/templates/analyze-mermaid-diagram.json:
--------------------------------------------------------------------------------
```json
{
"id": "analyze-mermaid-diagram",
"name": "Analyze Mermaid Diagram",
"content": "You are an expert in analyzing Mermaid diagrams. Your task is to analyze the provided diagram code and provide insights about its structure, clarity, and potential improvements.",
"isTemplate": false,
"createdAt": "2025-03-14T20:48:53.105Z",
"updatedAt": "2025-03-14T20:48:53.105Z",
"version": 1
}
```
--------------------------------------------------------------------------------
/data/prompts/templates/mermaid-analysis-expert.json:
--------------------------------------------------------------------------------
```json
{
"id": "mermaid-analysis-expert",
"name": "Mermaid Analysis Expert",
"content": "You are an expert in analyzing Mermaid diagrams. Your task is to analyze the provided diagram code and provide insights about its structure, clarity, and potential improvements.",
"isTemplate": false,
"createdAt": "2025-03-14T21:02:53.965Z",
"updatedAt": "2025-03-14T21:02:53.965Z",
"version": 1
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/errMessage.json:
--------------------------------------------------------------------------------
```json
{
"name": "errMessage",
"description": "Prompt template extracted from templates.js",
"type": "prompt",
"category": "coding",
"content": "Chalk template literal is missing ${styles.length} closing bracket${styles.length === 1 ? ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/chalk/source/templates.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/stringTag.json:
--------------------------------------------------------------------------------
```json
{
"name": "stringTag",
"description": "Prompt template extracted from 7259.d6bc83da737d12fb13e7.js",
"type": "prompt",
"category": "coding",
"content": "[object String]",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7259.d6bc83da737d12fb13e7.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/symbolTag.json:
--------------------------------------------------------------------------------
```json
{
"name": "symbolTag",
"description": "Prompt template extracted from 6033.e5f43eeda4cc803965de.js",
"type": "prompt",
"category": "coding",
"content": "[object Symbol]",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/6033.e5f43eeda4cc803965de.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/errMessage.json:
--------------------------------------------------------------------------------
```json
{
"name": "errMessage",
"description": "Prompt template extracted from templates.js",
"type": "prompt",
"category": "coding",
"content": "Chalk template literal is missing ${styles.length} closing bracket${styles.length === 1 ? ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/chalk/source/templates.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/stringTag.json:
--------------------------------------------------------------------------------
```json
{
"name": "stringTag",
"description": "Prompt template extracted from 7259.d6bc83da737d12fb13e7.js",
"type": "prompt",
"category": "coding",
"content": "[object String]",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7259.d6bc83da737d12fb13e7.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/symbolTag.json:
--------------------------------------------------------------------------------
```json
{
"name": "symbolTag",
"description": "Prompt template extracted from 6033.e5f43eeda4cc803965de.js",
"type": "prompt",
"category": "coding",
"content": "[object Symbol]",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/6033.e5f43eeda4cc803965de.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/data/prompts/templates/modify-mermaid-diagram.json:
--------------------------------------------------------------------------------
```json
{
"id": "modify-mermaid-diagram",
"name": "Modify Mermaid Diagram",
"content": "You are an expert in modifying Mermaid diagrams. Your task is to modify the provided diagram according to the requested changes while maintaining its overall structure and clarity.",
"isTemplate": false,
"createdAt": "2025-03-14T20:48:57.253Z",
"updatedAt": "2025-03-14T20:48:57.253Z",
"version": 1
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/argsTag.json:
--------------------------------------------------------------------------------
```json
{
"name": "argsTag",
"description": "Prompt template extracted from 7811.fa11577c84ea92d4102c.js",
"type": "prompt",
"category": "coding",
"content": "[object Arguments]",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7811.fa11577c84ea92d4102c.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/argsTag.json:
--------------------------------------------------------------------------------
```json
{
"name": "argsTag",
"description": "Prompt template extracted from 7811.fa11577c84ea92d4102c.js",
"type": "prompt",
"category": "coding",
"content": "[object Arguments]",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7811.fa11577c84ea92d4102c.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/octChar.json:
--------------------------------------------------------------------------------
```json
{
"name": "octChar",
"description": "Prompt template extracted from 1837.6bbfd9967be58e1325f1.js",
"type": "prompt",
"category": "coding",
"content": "\\\\\\\\[0-7]{1,3}",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1837.6bbfd9967be58e1325f1.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/PN_CHARS.json:
--------------------------------------------------------------------------------
```json
{
"name": "PN_CHARS",
"description": "Prompt template extracted from 5249.47203d8dad661b809e38.js",
"type": "prompt",
"category": "coding",
"content": "[A-Za-z_\\\\-0-9]",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5249.47203d8dad661b809e38.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/SUBPROTOCOL.json:
--------------------------------------------------------------------------------
```json
{
"name": "SUBPROTOCOL",
"description": "Prompt template extracted from websocket.js",
"type": "prompt",
"category": "coding",
"content": "mcp",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/@modelcontextprotocol/server-postgres/node_modules/@modelcontextprotocol/sdk/dist/client/websocket.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/webkit.json:
--------------------------------------------------------------------------------
```json
{
"name": "webkit",
"description": "Prompt template extracted from 2955.c344476e382a8e00921f.js",
"type": "prompt",
"category": "coding",
"content": "webkitFontSmoothing",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2955.c344476e382a8e00921f.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/octChar.json:
--------------------------------------------------------------------------------
```json
{
"name": "octChar",
"description": "Prompt template extracted from 1837.6bbfd9967be58e1325f1.js",
"type": "prompt",
"category": "coding",
"content": "\\\\\\\\[0-7]{1,3}",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1837.6bbfd9967be58e1325f1.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/PN_CHARS.json:
--------------------------------------------------------------------------------
```json
{
"name": "PN_CHARS",
"description": "Prompt template extracted from 5249.47203d8dad661b809e38.js",
"type": "prompt",
"category": "coding",
"content": "[A-Za-z_\\\\-0-9]",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5249.47203d8dad661b809e38.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/SUBPROTOCOL.json:
--------------------------------------------------------------------------------
```json
{
"name": "SUBPROTOCOL",
"description": "Prompt template extracted from websocket.js",
"type": "prompt",
"category": "coding",
"content": "mcp",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/@modelcontextprotocol/server-postgres/node_modules/@modelcontextprotocol/sdk/dist/client/websocket.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/webkit.json:
--------------------------------------------------------------------------------
```json
{
"name": "webkit",
"description": "Prompt template extracted from 2955.c344476e382a8e00921f.js",
"type": "prompt",
"category": "coding",
"content": "webkitFontSmoothing",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2955.c344476e382a8e00921f.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/currentBoundaryParse.json:
--------------------------------------------------------------------------------
```json
{
"name": "currentBoundaryParse",
"description": "Prompt template extracted from 7427.bf7a5e024a86a49270f3.js",
"type": "prompt",
"category": "coding",
"content": "global",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7427.bf7a5e024a86a49270f3.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/e.json:
--------------------------------------------------------------------------------
```json
{
"name": "E",
"description": "Prompt template extracted from 727.2abc0b27bd0932fb5f81.js",
"type": "prompt",
"category": "coding",
"content": "$",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/727.2abc0b27bd0932fb5f81.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/E.json:
--------------------------------------------------------------------------------
```json
{
"name": "E",
"description": "Prompt template extracted from 727.2abc0b27bd0932fb5f81.js",
"type": "prompt",
"category": "coding",
"content": "$",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/727.2abc0b27bd0932fb5f81.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/end.json:
--------------------------------------------------------------------------------
```json
{
"name": "end",
"description": "Prompt template extracted from 7582.5611b71499b0becf7b6a.js",
"type": "prompt",
"category": "coding",
"content": "\\\\\\\\end\\\\s*(\\\\{",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7582.5611b71499b0becf7b6a.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/i.json:
--------------------------------------------------------------------------------
```json
{
"name": "i",
"description": "Prompt template extracted from 439.33696bc45fbd403becbb.js",
"type": "prompt",
"category": "coding",
"content": "<",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/439.33696bc45fbd403becbb.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/currentBoundaryParse.json:
--------------------------------------------------------------------------------
```json
{
"name": "currentBoundaryParse",
"description": "Prompt template extracted from 7427.bf7a5e024a86a49270f3.js",
"type": "prompt",
"category": "coding",
"content": "global",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7427.bf7a5e024a86a49270f3.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/e.json:
--------------------------------------------------------------------------------
```json
{
"name": "E",
"description": "Prompt template extracted from 727.2abc0b27bd0932fb5f81.js",
"type": "prompt",
"category": "coding",
"content": "$",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/727.2abc0b27bd0932fb5f81.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/E.json:
--------------------------------------------------------------------------------
```json
{
"name": "E",
"description": "Prompt template extracted from 727.2abc0b27bd0932fb5f81.js",
"type": "prompt",
"category": "coding",
"content": "$",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/727.2abc0b27bd0932fb5f81.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/end.json:
--------------------------------------------------------------------------------
```json
{
"name": "end",
"description": "Prompt template extracted from 7582.5611b71499b0becf7b6a.js",
"type": "prompt",
"category": "coding",
"content": "\\\\\\\\end\\\\s*(\\\\{",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7582.5611b71499b0becf7b6a.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/i.json:
--------------------------------------------------------------------------------
```json
{
"name": "i",
"description": "Prompt template extracted from 439.33696bc45fbd403becbb.js",
"type": "prompt",
"category": "coding",
"content": "<",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/439.33696bc45fbd403becbb.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/DEFAULT_DIAGRAM_DIRECTION.json:
--------------------------------------------------------------------------------
```json
{
"name": "DEFAULT_DIAGRAM_DIRECTION",
"description": "Prompt template extracted from 5343.9b1635b1e24801d5d086.js",
"type": "prompt",
"category": "coding",
"content": "LR",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5343.9b1635b1e24801d5d086.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/expression1.json:
--------------------------------------------------------------------------------
```json
{
"name": "expression1",
"description": "Prompt template extracted from compiler.js",
"type": "prompt",
"category": "coding",
"content": "Object.getOwnPropertyNames(${value}).every(key => [${schemaKeys}].includes(key))",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@sinclair/typebox/compiler/compiler.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/DEFAULT_DIAGRAM_DIRECTION.json:
--------------------------------------------------------------------------------
```json
{
"name": "DEFAULT_DIAGRAM_DIRECTION",
"description": "Prompt template extracted from 5343.9b1635b1e24801d5d086.js",
"type": "prompt",
"category": "coding",
"content": "LR",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5343.9b1635b1e24801d5d086.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/expression1.json:
--------------------------------------------------------------------------------
```json
{
"name": "expression1",
"description": "Prompt template extracted from compiler.js",
"type": "prompt",
"category": "coding",
"content": "Object.getOwnPropertyNames(${value}).every(key => [${schemaKeys}].includes(key))",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/node_modules/@sinclair/typebox/compiler/compiler.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/_.json:
--------------------------------------------------------------------------------
```json
{
"name": "_",
"description": "Prompt template extracted from 39.f95d17ff2501dcd0834e.js",
"type": "prompt",
"category": "coding",
"content": "1.0.0",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/39.f95d17ff2501dcd0834e.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/_.json:
--------------------------------------------------------------------------------
```json
{
"name": "_",
"description": "Prompt template extracted from 39.f95d17ff2501dcd0834e.js",
"type": "prompt",
"category": "coding",
"content": "1.0.0",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/39.f95d17ff2501dcd0834e.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/reI.json:
--------------------------------------------------------------------------------
```json
{
"name": "reI",
"description": "Prompt template extracted from 4499.69ddcc73939e5bacc11c.js",
"type": "prompt",
"category": "coding",
"content": "\\\\s*([+-]?\\\\d+)\\\\s*",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/4499.69ddcc73939e5bacc11c.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/reI.json:
--------------------------------------------------------------------------------
```json
{
"name": "reI",
"description": "Prompt template extracted from 4499.69ddcc73939e5bacc11c.js",
"type": "prompt",
"category": "coding",
"content": "\\\\s*([+-]?\\\\d+)\\\\s*",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/4499.69ddcc73939e5bacc11c.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/data/prompts/templates/mermaid-diagram-modifier.json:
--------------------------------------------------------------------------------
```json
{
"id": "mermaid-diagram-modifier",
"name": "Mermaid Diagram Modifier",
"content": "You are an expert in modifying Mermaid diagrams. Your task is to modify the provided diagram according to the requested changes while maintaining its overall structure and clarity.",
"isTemplate": false,
"createdAt": "2025-03-14T21:02:57.240Z",
"updatedAt": "2025-03-14T21:02:57.240Z",
"version": 1
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/dummyCompoundId.json:
--------------------------------------------------------------------------------
```json
{
"name": "dummyCompoundId",
"description": "Prompt template extracted from 1495.41f3debb92dfdd91c6da.js",
"type": "prompt",
"category": "coding",
"content": "DummyCompound_",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1495.41f3debb92dfdd91c6da.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/errMsg.json:
--------------------------------------------------------------------------------
```json
{
"name": "errMsg",
"description": "Prompt template extracted from 3079.1a9a59cb31f366c7aee9.js",
"type": "prompt",
"category": "coding",
"content": "Infinite loop on byte: ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/3079.1a9a59cb31f366c7aee9.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/LATEST_PROTOCOL_VERSION.json:
--------------------------------------------------------------------------------
```json
{
"name": "LATEST_PROTOCOL_VERSION",
"description": "Prompt template extracted from types.js",
"type": "prompt",
"category": "coding",
"content": "2024-11-05",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/@modelcontextprotocol/server-postgres/node_modules/@modelcontextprotocol/sdk/dist/types.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/dummyCompoundId.json:
--------------------------------------------------------------------------------
```json
{
"name": "dummyCompoundId",
"description": "Prompt template extracted from 1495.41f3debb92dfdd91c6da.js",
"type": "prompt",
"category": "coding",
"content": "DummyCompound_",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1495.41f3debb92dfdd91c6da.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/errMsg.json:
--------------------------------------------------------------------------------
```json
{
"name": "errMsg",
"description": "Prompt template extracted from 3079.1a9a59cb31f366c7aee9.js",
"type": "prompt",
"category": "coding",
"content": "Infinite loop on byte: ",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/3079.1a9a59cb31f366c7aee9.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/LATEST_PROTOCOL_VERSION.json:
--------------------------------------------------------------------------------
```json
{
"name": "LATEST_PROTOCOL_VERSION",
"description": "Prompt template extracted from types.js",
"type": "prompt",
"category": "coding",
"content": "2024-11-05",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/@modelcontextprotocol/server-postgres/node_modules/@modelcontextprotocol/sdk/dist/types.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/FILE_BROWSER_FACTORY.json:
--------------------------------------------------------------------------------
```json
{
"name": "FILE_BROWSER_FACTORY",
"description": "Prompt template extracted from 7302.8dfb32b083b16efa038a.js",
"type": "prompt",
"category": "coding",
"content": "FileBrowser",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7302.8dfb32b083b16efa038a.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/id.json:
--------------------------------------------------------------------------------
```json
{
"name": "id",
"description": "Prompt template extracted from 7179.f2b34daff5c4cb9957d6.js",
"type": "prompt",
"category": "coding",
"content": "${prefix}${slugger.slug(raw)}",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7179.f2b34daff5c4cb9957d6.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/MERMAID_DOM_ID_PREFIX.json:
--------------------------------------------------------------------------------
```json
{
"name": "MERMAID_DOM_ID_PREFIX",
"description": "Prompt template extracted from 1261.a7489136daa9b610b37f.js",
"type": "prompt",
"category": "coding",
"content": "flowchart-",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1261.a7489136daa9b610b37f.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/FILE_BROWSER_FACTORY.json:
--------------------------------------------------------------------------------
```json
{
"name": "FILE_BROWSER_FACTORY",
"description": "Prompt template extracted from 7302.8dfb32b083b16efa038a.js",
"type": "prompt",
"category": "coding",
"content": "FileBrowser",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7302.8dfb32b083b16efa038a.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/id.json:
--------------------------------------------------------------------------------
```json
{
"name": "id",
"description": "Prompt template extracted from 7179.f2b34daff5c4cb9957d6.js",
"type": "prompt",
"category": "coding",
"content": "${prefix}${slugger.slug(raw)}",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7179.f2b34daff5c4cb9957d6.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/MERMAID_DOM_ID_PREFIX.json:
--------------------------------------------------------------------------------
```json
{
"name": "MERMAID_DOM_ID_PREFIX",
"description": "Prompt template extracted from 1261.a7489136daa9b610b37f.js",
"type": "prompt",
"category": "coding",
"content": "flowchart-",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1261.a7489136daa9b610b37f.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/symbolPattern.json:
--------------------------------------------------------------------------------
```json
{
"name": "symbolPattern",
"description": "Prompt template extracted from 9331.5850506ebb1d3f304481.js",
"type": "prompt",
"category": "coding",
"content": "[-_a-zA-Z?!*@<>$%]+",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/9331.5850506ebb1d3f304481.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/symbolPattern.json:
--------------------------------------------------------------------------------
```json
{
"name": "symbolPattern",
"description": "Prompt template extracted from 9331.5850506ebb1d3f304481.js",
"type": "prompt",
"category": "coding",
"content": "[-_a-zA-Z?!*@<>$%]+",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/9331.5850506ebb1d3f304481.js",
"imported": true
}
}
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/j.json:
--------------------------------------------------------------------------------
```json
{
"name": "j",
"description": "Prompt template extracted from 898.4051a8b212a0f4c89d60.js",
"type": "prompt",
"category": "coding",
"content": "function",
"variables": {},
"metadata": {
"source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/898.4051a8b212a0f4c89d60.js",
"imported": true
}
}
```