This is page 4 of 24. Use http://codebase.md/sparesparrow/mcp-project-orchestrator?lines=true&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/coding/watchmanURL.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "watchmanURL",
3 | "description": "Prompt template extracted from watchman.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "https://facebook.github.io/watchman/docs/troubleshooting",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-haste-map/build/crawlers/watchman.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/ERROR_MESSAGE.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "ERROR_MESSAGE",
3 | "description": "Prompt template extracted from implementation.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "Function.prototype.bind called on incompatible ",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/function-bind/implementation.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/mtr.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "mtr",
3 | "description": "Prompt template extracted from 7154.1ab03d07151bbd0aad06.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "mtr",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7154.1ab03d07151bbd0aad06.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/watchmanURL.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "watchmanURL",
3 | "description": "Prompt template extracted from watchman.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "https://facebook.github.io/watchman/docs/troubleshooting",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-haste-map/build/crawlers/watchman.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/gutter.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "gutter",
3 | "description": "Prompt template extracted from 4926.70b91208fd35ee838d65.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": " ",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/4926.70b91208fd35ee838d65.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/side.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "side",
3 | "description": "Prompt template extracted from 9799.606ec31deee27f6716b0.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "top",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/9799.606ec31deee27f6716b0.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/gutter.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "gutter",
3 | "description": "Prompt template extracted from 4926.70b91208fd35ee838d65.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": " ",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/4926.70b91208fd35ee838d65.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/side.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "side",
3 | "description": "Prompt template extracted from 9799.606ec31deee27f6716b0.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "top",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/9799.606ec31deee27f6716b0.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/__dirname.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "__dirname",
3 | "description": "Prompt template extracted from 792.050c0efb8da8e633f900.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "/",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/792.050c0efb8da8e633f900.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/at.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "at",
3 | "description": "Prompt template extracted from 700.f3db1bd22341e0bf0b74.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "http://www.w3.org/1999/xhtml",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/700.f3db1bd22341e0bf0b74.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/__dirname.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "__dirname",
3 | "description": "Prompt template extracted from 792.050c0efb8da8e633f900.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "/",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/792.050c0efb8da8e633f900.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/at.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "at",
3 | "description": "Prompt template extracted from 700.f3db1bd22341e0bf0b74.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "http://www.w3.org/1999/xhtml",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/700.f3db1bd22341e0bf0b74.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/fill.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "fill",
3 | "description": "Prompt template extracted from 4035.f4b13866b60b1af40230.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "#CCC",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/4035.f4b13866b60b1af40230.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/from.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "from",
3 | "description": "Prompt template extracted from 2343.76b08c834d1f3e6c0655.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "from",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2343.76b08c834d1f3e6c0655.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/fill.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "fill",
3 | "description": "Prompt template extracted from 4035.f4b13866b60b1af40230.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "#CCC",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/4035.f4b13866b60b1af40230.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/from.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "from",
3 | "description": "Prompt template extracted from 2343.76b08c834d1f3e6c0655.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "from",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2343.76b08c834d1f3e6c0655.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/direction.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "direction",
3 | "description": "Prompt template extracted from 261.7c7a6b6d904fd35115a3.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "LR",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/261.7c7a6b6d904fd35115a3.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/route.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "route",
3 | "description": "Prompt template extracted from 1650.8d7f95fed9378b01c97b.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "edit",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1650.8d7f95fed9378b01c97b.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/shape.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "shape",
3 | "description": "Prompt template extracted from 8443.214c35b34c68e0bcfa22.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "M 0,",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/8443.214c35b34c68e0bcfa22.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/sourceMapContent.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "sourceMapContent",
3 | "description": "Prompt template extracted from compiler-utils.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "data:application/json;charset=utf-8;base64,",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/ts-jest/dist/legacy/compiler/compiler-utils.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/direction.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "direction",
3 | "description": "Prompt template extracted from 261.7c7a6b6d904fd35115a3.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "LR",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/261.7c7a6b6d904fd35115a3.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/route.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "route",
3 | "description": "Prompt template extracted from 1650.8d7f95fed9378b01c97b.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "edit",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1650.8d7f95fed9378b01c97b.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/shape.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "shape",
3 | "description": "Prompt template extracted from 8443.214c35b34c68e0bcfa22.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "M 0,",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/8443.214c35b34c68e0bcfa22.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/sourceMapContent.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "sourceMapContent",
3 | "description": "Prompt template extracted from compiler-utils.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "data:application/json;charset=utf-8;base64,",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/ts-jest/dist/legacy/compiler/compiler-utils.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/delimiter.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "delimiter",
3 | "description": "Prompt template extracted from 7796.ea7106c833e81e2e6a6d.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "-",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7796.ea7106c833e81e2e6a6d.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/helpMessage.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "helpMessage",
3 | "description": "Prompt template extracted from missing-plugin-helper.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "Support for the experimental syntax ",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/labelId.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "labelId",
3 | "description": "Prompt template extracted from 7097.43efeed14ea8a19c9342.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "rel",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7097.43efeed14ea8a19c9342.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/delimiter.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "delimiter",
3 | "description": "Prompt template extracted from 7796.ea7106c833e81e2e6a6d.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "-",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7796.ea7106c833e81e2e6a6d.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/helpMessage.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "helpMessage",
3 | "description": "Prompt template extracted from missing-plugin-helper.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "Support for the experimental syntax ",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/labelId.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "labelId",
3 | "description": "Prompt template extracted from 7097.43efeed14ea8a19c9342.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "rel",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7097.43efeed14ea8a19c9342.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/BASE64_MAP.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "BASE64_MAP",
3 | "description": "Prompt template extracted from binary.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\\n\\r",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/js-yaml/lib/js-yaml/type/binary.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/baseFlags.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "baseFlags",
3 | "description": "Prompt template extracted from 5261.570ec78f80a112aa7d5d.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "gm",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5261.570ec78f80a112aa7d5d.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/BASE64_MAP.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "BASE64_MAP",
3 | "description": "Prompt template extracted from binary.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\\n\\r",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/js-yaml/lib/js-yaml/type/binary.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/baseFlags.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "baseFlags",
3 | "description": "Prompt template extracted from 5261.570ec78f80a112aa7d5d.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "gm",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5261.570ec78f80a112aa7d5d.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/style.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "style",
3 | "description": "Prompt template extracted from 3420.693f6432957cbf2699c5.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "string",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/3420.693f6432957cbf2699c5.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/style.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "style",
3 | "description": "Prompt template extracted from 3420.693f6432957cbf2699c5.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "string",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/3420.693f6432957cbf2699c5.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/cssClassStr.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "cssClassStr",
3 | "description": "Prompt template extracted from 1388.826f4dbe3aadaef0ba1f.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": " ",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1388.826f4dbe3aadaef0ba1f.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/elide.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "elide",
3 | "description": "Prompt template extracted from 8929.b5b29c25d0b317812054.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "\\u2026",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/8929.b5b29c25d0b317812054.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/Escapable.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "Escapable",
3 | "description": "Prompt template extracted from 6271.a83a0f2aa464d0c1bbf5.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "!\\",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/6271.a83a0f2aa464d0c1bbf5.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/cssClassStr.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "cssClassStr",
3 | "description": "Prompt template extracted from 1388.826f4dbe3aadaef0ba1f.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": " ",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1388.826f4dbe3aadaef0ba1f.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/elide.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "elide",
3 | "description": "Prompt template extracted from 8929.b5b29c25d0b317812054.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "\\u2026",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/8929.b5b29c25d0b317812054.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/Escapable.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "Escapable",
3 | "description": "Prompt template extracted from 6271.a83a0f2aa464d0c1bbf5.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "!\\",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/6271.a83a0f2aa464d0c1bbf5.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/backupId.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "backupId",
3 | "description": "Prompt template extracted from adapters.js",
4 | "type": "prompt",
5 | "category": "user",
6 | "content": "file_backup_${new Date().toISOString().replace(/[:.]/g, ",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/@sparesparrow/mcp-prompts/dist/adapters.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/out.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "out",
3 | "description": "Prompt template extracted from 306.dd9ffcf982b0c863872b.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "digraph {\\n",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/306.dd9ffcf982b0c863872b.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/selector.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "selector",
3 | "description": "Prompt template extracted from 2065.e9b5d8d0a8bec3304454.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "mjx-c",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2065.e9b5d8d0a8bec3304454.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/out.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "out",
3 | "description": "Prompt template extracted from 306.dd9ffcf982b0c863872b.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "digraph {\\n",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/306.dd9ffcf982b0c863872b.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/selector.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "selector",
3 | "description": "Prompt template extracted from 2065.e9b5d8d0a8bec3304454.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "mjx-c",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2065.e9b5d8d0a8bec3304454.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/user/backupId.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "backupId",
3 | "description": "Prompt template extracted from adapters.js",
4 | "type": "prompt",
5 | "category": "user",
6 | "content": "file_backup_${new Date().toISOString().replace(/[:.]/g, ",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/@sparesparrow/mcp-prompts/dist/adapters.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/brackets.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "brackets",
3 | "description": "Prompt template extracted from 1601.4154c4f9ed460feae33b.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "([{}])",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1601.4154c4f9ed460feae33b.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/BUILTIN.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "BUILTIN",
3 | "description": "Prompt template extracted from 8979.cafa00ee6b2e82b39a17.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "builtin",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/8979.cafa00ee6b2e82b39a17.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/brackets.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "brackets",
3 | "description": "Prompt template extracted from 1601.4154c4f9ed460feae33b.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "([{}])",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1601.4154c4f9ed460feae33b.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/BUILTIN.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "BUILTIN",
3 | "description": "Prompt template extracted from 8979.cafa00ee6b2e82b39a17.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "builtin",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/8979.cafa00ee6b2e82b39a17.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/other/Test_Prompt.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "Test Prompt",
3 | "description": "A test prompt",
4 | "type": "prompt",
5 | "category": "other",
6 | "content": "This is a test prompt for {{variable}}",
7 | "variables": {
8 | "variable": {
9 | "description": "Test variable",
10 | "default_value": "testing"
11 | }
12 | },
13 | "metadata": {
14 | "source": "/home/sparrow/mcp/data/prompts/test-prompt.json",
15 | "imported": true
16 | }
17 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/Test_Prompt.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "Test Prompt",
3 | "description": "A test prompt",
4 | "type": "prompt",
5 | "category": "other",
6 | "content": "This is a test prompt for {{variable}}",
7 | "variables": {
8 | "variable": {
9 | "description": "Test variable",
10 | "default_value": "testing"
11 | }
12 | },
13 | "metadata": {
14 | "source": "/home/sparrow/mcp/data/prompts/test-prompt.json",
15 | "imported": true
16 | }
17 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/__image_1___describe_the_icon_in_one_sen___.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "<|image_1|>\ndescribe the icon in one sen...",
3 | "description": "<|image_1|>\ndescribe the icon in one sentence",
4 | "type": "prompt",
5 | "category": "other",
6 | "content": "<|image_1|>\ndescribe the icon in one sentence",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/mcp/data/prompts/image-1-describe-the-icon-in-one-sen.json",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/classStr.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "classStr",
3 | "description": "Prompt template extracted from 7153.e0fe24c9b8309e3171da.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "default",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7153.e0fe24c9b8309e3171da.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/classStr.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "classStr",
3 | "description": "Prompt template extracted from 7153.e0fe24c9b8309e3171da.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "default",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7153.e0fe24c9b8309e3171da.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/ERRORCLASS.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "ERRORCLASS",
3 | "description": "Prompt template extracted from 2871.46ec88c6997ef947f39f.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "error",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2871.46ec88c6997ef947f39f.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/reserve.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "reserve",
3 | "description": "Prompt template extracted from 2702.bc49dbd258cca77aeea4.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "><+-.,[]",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2702.bc49dbd258cca77aeea4.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/SHAPE_STATE.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "SHAPE_STATE",
3 | "description": "Prompt template extracted from 3154.60f9b1fbaa33b00df058.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "rect",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/3154.60f9b1fbaa33b00df058.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/ERRORCLASS.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "ERRORCLASS",
3 | "description": "Prompt template extracted from 2871.46ec88c6997ef947f39f.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "error",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2871.46ec88c6997ef947f39f.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/other/__image_1___describe_the_icon_in_one_sen___.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "<|image_1|>\ndescribe the icon in one sen...",
3 | "description": "<|image_1|>\ndescribe the icon in one sentence",
4 | "type": "prompt",
5 | "category": "other",
6 | "content": "<|image_1|>\ndescribe the icon in one sentence",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/mcp/data/prompts/image-1-describe-the-icon-in-one-sen.json",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/reserve.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "reserve",
3 | "description": "Prompt template extracted from 2702.bc49dbd258cca77aeea4.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "><+-.,[]",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2702.bc49dbd258cca77aeea4.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/SHAPE_STATE.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "SHAPE_STATE",
3 | "description": "Prompt template extracted from 3154.60f9b1fbaa33b00df058.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "rect",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/3154.60f9b1fbaa33b00df058.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/displayValue.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "displayValue",
3 | "description": "Prompt template extracted from 2241.465ada7a1ff712139f9e.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "none",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2241.465ada7a1ff712139f9e.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/insert.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "insert",
3 | "description": "Prompt template extracted from 7866.2e8f9ed8e3300c1f0146.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "</${name}>",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7866.2e8f9ed8e3300c1f0146.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/override.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "override",
3 | "description": "Prompt template extracted from 6739.a2cfcf763eb412a26515.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "variable",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/6739.a2cfcf763eb412a26515.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/toValue.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "toValue",
3 | "description": "Prompt template extracted from 2913.274b19d8f201991f4a69.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "\\\\uFFFF",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2913.274b19d8f201991f4a69.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/displayValue.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "displayValue",
3 | "description": "Prompt template extracted from 2241.465ada7a1ff712139f9e.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "none",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2241.465ada7a1ff712139f9e.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/insert.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "insert",
3 | "description": "Prompt template extracted from 7866.2e8f9ed8e3300c1f0146.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "</${name}>",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7866.2e8f9ed8e3300c1f0146.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/override.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "override",
3 | "description": "Prompt template extracted from 6739.a2cfcf763eb412a26515.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "variable",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/6739.a2cfcf763eb412a26515.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/toValue.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "toValue",
3 | "description": "Prompt template extracted from 2913.274b19d8f201991f4a69.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "\\\\uFFFF",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2913.274b19d8f201991f4a69.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/intToCharMap.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "intToCharMap",
3 | "description": "Prompt template extracted from source-map.debug.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/source-map/dist/source-map.debug.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/matchingDelim.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "matchingDelim",
3 | "description": "Prompt template extracted from 5828.2317870182c25e18e76f.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[{<(",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5828.2317870182c25e18e76f.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/intToCharMap.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "intToCharMap",
3 | "description": "Prompt template extracted from source-map.debug.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/source-map/dist/source-map.debug.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/matchingDelim.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "matchingDelim",
3 | "description": "Prompt template extracted from 5828.2317870182c25e18e76f.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[{<(",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5828.2317870182c25e18e76f.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/HOOK_RETURNED_NOTHING_ERROR_MESSAGE.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "HOOK_RETURNED_NOTHING_ERROR_MESSAGE",
3 | "description": "Prompt template extracted from index.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[Pirates] A hook returned a non-string, or nothing at all! This is a",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/pirates/lib/index.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/nullTag.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "nullTag",
3 | "description": "Prompt template extracted from 755.3d6eb3b7f81d035f52f4.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[object Null]",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/755.3d6eb3b7f81d035f52f4.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/transform.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "transform",
3 | "description": "Prompt template extracted from 7369.286a75761c308381b0a4.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "translate",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7369.286a75761c308381b0a4.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/DESCENDING.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "DESCENDING",
3 | "description": "Prompt template extracted from 1326.9297038a97bfe38e02c5.js",
4 | "type": "prompt",
5 | "category": "user",
6 | "content": "descending",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1326.9297038a97bfe38e02c5.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/HOOK_RETURNED_NOTHING_ERROR_MESSAGE.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "HOOK_RETURNED_NOTHING_ERROR_MESSAGE",
3 | "description": "Prompt template extracted from index.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[Pirates] A hook returned a non-string, or nothing at all! This is a",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/pirates/lib/index.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/nullTag.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "nullTag",
3 | "description": "Prompt template extracted from 755.3d6eb3b7f81d035f52f4.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[object Null]",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/755.3d6eb3b7f81d035f52f4.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/transform.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "transform",
3 | "description": "Prompt template extracted from 7369.286a75761c308381b0a4.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "translate",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7369.286a75761c308381b0a4.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/user/DESCENDING.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "DESCENDING",
3 | "description": "Prompt template extracted from 1326.9297038a97bfe38e02c5.js",
4 | "type": "prompt",
5 | "category": "user",
6 | "content": "descending",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1326.9297038a97bfe38e02c5.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/configJsContent.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "configJsContent",
3 | "description": "Prompt template extracted from ensure-config.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "\n// Default configuration\n// This file is created by the build process if it doesn",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/scripts/build/ensure-config.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/configJsContent.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "configJsContent",
3 | "description": "Prompt template extracted from ensure-config.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "\n// Default configuration\n// This file is created by the build process if it doesn",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/scripts/build/ensure-config.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/mask.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "mask",
3 | "description": "Prompt template extracted from index.browser.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-._~",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/pkce-challenge/dist/index.browser.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/property_prefix.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "property_prefix",
3 | "description": "Prompt template extracted from 8845.ac1c5acb78cea4acee08.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "bspr_",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/8845.ac1c5acb78cea4acee08.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/templateDir.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "templateDir",
3 | "description": "Prompt template extracted from project-orchestrator-tools.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "/home/sparrow/.config/Claude/prompts/project-orchestrator",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/publish/build/tools/project-orchestrator-tools.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/Initialize_project_setup_for_a_new_micro___.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "Initialize project setup for a new micro...",
3 | "description": "Initialize project setup for a new microservice",
4 | "type": "prompt",
5 | "category": "other",
6 | "content": "Initialize project setup for a new microservice",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/mcp/data/prompts/initialize-project-setup-for-a-new-micro.json",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/mask.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "mask",
3 | "description": "Prompt template extracted from index.browser.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-._~",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/pkce-challenge/dist/index.browser.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/other/Initialize_project_setup_for_a_new_micro___.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "Initialize project setup for a new micro...",
3 | "description": "Initialize project setup for a new microservice",
4 | "type": "prompt",
5 | "category": "other",
6 | "content": "Initialize project setup for a new microservice",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/mcp/data/prompts/initialize-project-setup-for-a-new-micro.json",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/property_prefix.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "property_prefix",
3 | "description": "Prompt template extracted from 8845.ac1c5acb78cea4acee08.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "bspr_",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/8845.ac1c5acb78cea4acee08.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/templateDir.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "templateDir",
3 | "description": "Prompt template extracted from project-orchestrator-tools.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "/home/sparrow/.config/Claude/prompts/project-orchestrator",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/publish/build/tools/project-orchestrator-tools.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompt_manager/__init__.py:
--------------------------------------------------------------------------------
```python
1 | """
2 | Prompt management for the MCP Project Orchestrator.
3 |
4 | This module provides template management and rendering capabilities.
5 | """
6 |
7 | from .manager import PromptManager
8 | from .template import PromptTemplate, PromptMetadata, PromptCategory
9 | from .loader import PromptLoader
10 |
11 | __all__ = [
12 | "PromptManager",
13 | "PromptTemplate",
14 | "PromptMetadata",
15 | "PromptCategory",
16 | "PromptLoader",
17 | ]
18 |
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/event.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "event",
3 | "description": "Prompt template extracted from 7450.a58b6759d984aebf0459.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "delete.selection",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7450.a58b6759d984aebf0459.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/event.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "event",
3 | "description": "Prompt template extracted from 7450.a58b6759d984aebf0459.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "delete.selection",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7450.a58b6759d984aebf0459.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/RXstyle.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "RXstyle",
3 | "description": "Prompt template extracted from 3322.e8348cc2a800190d4f49.js",
4 | "type": "prompt",
5 | "category": "system",
6 | "content": "string.special",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/3322.e8348cc2a800190d4f49.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/system/RXstyle.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "RXstyle",
3 | "description": "Prompt template extracted from 3322.e8348cc2a800190d4f49.js",
4 | "type": "prompt",
5 | "category": "system",
6 | "content": "string.special",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/3322.e8348cc2a800190d4f49.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/MAXIMUM_MESSAGE_SIZE.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "MAXIMUM_MESSAGE_SIZE",
3 | "description": "Prompt template extracted from sse.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "4mb",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/@modelcontextprotocol/server-postgres/node_modules/@modelcontextprotocol/sdk/dist/server/sse.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/REQUIRED_FIELD_SYMBOL.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "REQUIRED_FIELD_SYMBOL",
3 | "description": "Prompt template extracted from 1871.29951b77779d94d726d1.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "*",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1871.29951b77779d94d726d1.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/MAXIMUM_MESSAGE_SIZE.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "MAXIMUM_MESSAGE_SIZE",
3 | "description": "Prompt template extracted from sse.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "4mb",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/@modelcontextprotocol/server-postgres/node_modules/@modelcontextprotocol/sdk/dist/server/sse.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/REQUIRED_FIELD_SYMBOL.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "REQUIRED_FIELD_SYMBOL",
3 | "description": "Prompt template extracted from 1871.29951b77779d94d726d1.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "*",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1871.29951b77779d94d726d1.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/operators.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "operators",
3 | "description": "Prompt template extracted from 1618.da67fb30732c49b969ba.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "+-/*%=|&<>~^?!",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1618.da67fb30732c49b969ba.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/operators.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "operators",
3 | "description": "Prompt template extracted from 1618.da67fb30732c49b969ba.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "+-/*%=|&<>~^?!",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1618.da67fb30732c49b969ba.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/data/prompts/templates/analyze-mermaid-diagram.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "id": "analyze-mermaid-diagram",
3 | "name": "Analyze Mermaid Diagram",
4 | "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.",
5 | "isTemplate": false,
6 | "createdAt": "2025-03-14T20:48:53.105Z",
7 | "updatedAt": "2025-03-14T20:48:53.105Z",
8 | "version": 1
9 | }
```
--------------------------------------------------------------------------------
/data/prompts/templates/mermaid-analysis-expert.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "id": "mermaid-analysis-expert",
3 | "name": "Mermaid Analysis Expert",
4 | "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.",
5 | "isTemplate": false,
6 | "createdAt": "2025-03-14T21:02:53.965Z",
7 | "updatedAt": "2025-03-14T21:02:53.965Z",
8 | "version": 1
9 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/errMessage.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "errMessage",
3 | "description": "Prompt template extracted from templates.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "Chalk template literal is missing ${styles.length} closing bracket${styles.length === 1 ? ",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/chalk/source/templates.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/stringTag.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "stringTag",
3 | "description": "Prompt template extracted from 7259.d6bc83da737d12fb13e7.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[object String]",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7259.d6bc83da737d12fb13e7.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/symbolTag.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "symbolTag",
3 | "description": "Prompt template extracted from 6033.e5f43eeda4cc803965de.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[object Symbol]",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/6033.e5f43eeda4cc803965de.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/errMessage.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "errMessage",
3 | "description": "Prompt template extracted from templates.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "Chalk template literal is missing ${styles.length} closing bracket${styles.length === 1 ? ",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/chalk/source/templates.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/stringTag.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "stringTag",
3 | "description": "Prompt template extracted from 7259.d6bc83da737d12fb13e7.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[object String]",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7259.d6bc83da737d12fb13e7.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/symbolTag.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "symbolTag",
3 | "description": "Prompt template extracted from 6033.e5f43eeda4cc803965de.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[object Symbol]",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/6033.e5f43eeda4cc803965de.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/data/prompts/templates/modify-mermaid-diagram.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "id": "modify-mermaid-diagram",
3 | "name": "Modify Mermaid Diagram",
4 | "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.",
5 | "isTemplate": false,
6 | "createdAt": "2025-03-14T20:48:57.253Z",
7 | "updatedAt": "2025-03-14T20:48:57.253Z",
8 | "version": 1
9 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/argsTag.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "argsTag",
3 | "description": "Prompt template extracted from 7811.fa11577c84ea92d4102c.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[object Arguments]",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7811.fa11577c84ea92d4102c.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/argsTag.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "argsTag",
3 | "description": "Prompt template extracted from 7811.fa11577c84ea92d4102c.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[object Arguments]",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7811.fa11577c84ea92d4102c.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/octChar.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "octChar",
3 | "description": "Prompt template extracted from 1837.6bbfd9967be58e1325f1.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "\\\\\\\\[0-7]{1,3}",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1837.6bbfd9967be58e1325f1.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/PN_CHARS.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "PN_CHARS",
3 | "description": "Prompt template extracted from 5249.47203d8dad661b809e38.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[A-Za-z_\\\\-0-9]",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5249.47203d8dad661b809e38.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/SUBPROTOCOL.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "SUBPROTOCOL",
3 | "description": "Prompt template extracted from websocket.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "mcp",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/@modelcontextprotocol/server-postgres/node_modules/@modelcontextprotocol/sdk/dist/client/websocket.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/webkit.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "webkit",
3 | "description": "Prompt template extracted from 2955.c344476e382a8e00921f.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "webkitFontSmoothing",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2955.c344476e382a8e00921f.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/octChar.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "octChar",
3 | "description": "Prompt template extracted from 1837.6bbfd9967be58e1325f1.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "\\\\\\\\[0-7]{1,3}",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1837.6bbfd9967be58e1325f1.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/PN_CHARS.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "PN_CHARS",
3 | "description": "Prompt template extracted from 5249.47203d8dad661b809e38.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[A-Za-z_\\\\-0-9]",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5249.47203d8dad661b809e38.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/SUBPROTOCOL.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "SUBPROTOCOL",
3 | "description": "Prompt template extracted from websocket.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "mcp",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/@modelcontextprotocol/server-postgres/node_modules/@modelcontextprotocol/sdk/dist/client/websocket.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/webkit.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "webkit",
3 | "description": "Prompt template extracted from 2955.c344476e382a8e00921f.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "webkitFontSmoothing",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2955.c344476e382a8e00921f.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/currentBoundaryParse.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "currentBoundaryParse",
3 | "description": "Prompt template extracted from 7427.bf7a5e024a86a49270f3.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "global",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7427.bf7a5e024a86a49270f3.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/e.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "E",
3 | "description": "Prompt template extracted from 727.2abc0b27bd0932fb5f81.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "$",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/727.2abc0b27bd0932fb5f81.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/E.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "E",
3 | "description": "Prompt template extracted from 727.2abc0b27bd0932fb5f81.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "$",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/727.2abc0b27bd0932fb5f81.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/end.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "end",
3 | "description": "Prompt template extracted from 7582.5611b71499b0becf7b6a.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "\\\\\\\\end\\\\s*(\\\\{",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7582.5611b71499b0becf7b6a.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/i.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "i",
3 | "description": "Prompt template extracted from 439.33696bc45fbd403becbb.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "<",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/439.33696bc45fbd403becbb.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/currentBoundaryParse.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "currentBoundaryParse",
3 | "description": "Prompt template extracted from 7427.bf7a5e024a86a49270f3.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "global",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7427.bf7a5e024a86a49270f3.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/e.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "E",
3 | "description": "Prompt template extracted from 727.2abc0b27bd0932fb5f81.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "$",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/727.2abc0b27bd0932fb5f81.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/E.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "E",
3 | "description": "Prompt template extracted from 727.2abc0b27bd0932fb5f81.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "$",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/727.2abc0b27bd0932fb5f81.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/end.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "end",
3 | "description": "Prompt template extracted from 7582.5611b71499b0becf7b6a.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "\\\\\\\\end\\\\s*(\\\\{",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7582.5611b71499b0becf7b6a.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/i.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "i",
3 | "description": "Prompt template extracted from 439.33696bc45fbd403becbb.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "<",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/439.33696bc45fbd403becbb.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/DEFAULT_DIAGRAM_DIRECTION.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "DEFAULT_DIAGRAM_DIRECTION",
3 | "description": "Prompt template extracted from 5343.9b1635b1e24801d5d086.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "LR",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5343.9b1635b1e24801d5d086.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/expression1.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "expression1",
3 | "description": "Prompt template extracted from compiler.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "Object.getOwnPropertyNames(${value}).every(key => [${schemaKeys}].includes(key))",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/@sinclair/typebox/compiler/compiler.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/DEFAULT_DIAGRAM_DIRECTION.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "DEFAULT_DIAGRAM_DIRECTION",
3 | "description": "Prompt template extracted from 5343.9b1635b1e24801d5d086.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "LR",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5343.9b1635b1e24801d5d086.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/expression1.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "expression1",
3 | "description": "Prompt template extracted from compiler.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "Object.getOwnPropertyNames(${value}).every(key => [${schemaKeys}].includes(key))",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/@sinclair/typebox/compiler/compiler.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/_.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "_",
3 | "description": "Prompt template extracted from 39.f95d17ff2501dcd0834e.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "1.0.0",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/39.f95d17ff2501dcd0834e.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/_.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "_",
3 | "description": "Prompt template extracted from 39.f95d17ff2501dcd0834e.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "1.0.0",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/39.f95d17ff2501dcd0834e.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/reI.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "reI",
3 | "description": "Prompt template extracted from 4499.69ddcc73939e5bacc11c.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "\\\\s*([+-]?\\\\d+)\\\\s*",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/4499.69ddcc73939e5bacc11c.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/reI.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "reI",
3 | "description": "Prompt template extracted from 4499.69ddcc73939e5bacc11c.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "\\\\s*([+-]?\\\\d+)\\\\s*",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/4499.69ddcc73939e5bacc11c.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/data/prompts/templates/mermaid-diagram-modifier.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "id": "mermaid-diagram-modifier",
3 | "name": "Mermaid Diagram Modifier",
4 | "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.",
5 | "isTemplate": false,
6 | "createdAt": "2025-03-14T21:02:57.240Z",
7 | "updatedAt": "2025-03-14T21:02:57.240Z",
8 | "version": 1
9 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/dummyCompoundId.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "dummyCompoundId",
3 | "description": "Prompt template extracted from 1495.41f3debb92dfdd91c6da.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "DummyCompound_",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1495.41f3debb92dfdd91c6da.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/errMsg.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "errMsg",
3 | "description": "Prompt template extracted from 3079.1a9a59cb31f366c7aee9.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "Infinite loop on byte: ",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/3079.1a9a59cb31f366c7aee9.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/LATEST_PROTOCOL_VERSION.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "LATEST_PROTOCOL_VERSION",
3 | "description": "Prompt template extracted from types.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "2024-11-05",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/@modelcontextprotocol/server-postgres/node_modules/@modelcontextprotocol/sdk/dist/types.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/dummyCompoundId.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "dummyCompoundId",
3 | "description": "Prompt template extracted from 1495.41f3debb92dfdd91c6da.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "DummyCompound_",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1495.41f3debb92dfdd91c6da.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/errMsg.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "errMsg",
3 | "description": "Prompt template extracted from 3079.1a9a59cb31f366c7aee9.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "Infinite loop on byte: ",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/3079.1a9a59cb31f366c7aee9.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/LATEST_PROTOCOL_VERSION.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "LATEST_PROTOCOL_VERSION",
3 | "description": "Prompt template extracted from types.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "2024-11-05",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/@modelcontextprotocol/server-postgres/node_modules/@modelcontextprotocol/sdk/dist/types.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/FILE_BROWSER_FACTORY.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "FILE_BROWSER_FACTORY",
3 | "description": "Prompt template extracted from 7302.8dfb32b083b16efa038a.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "FileBrowser",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7302.8dfb32b083b16efa038a.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/id.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "id",
3 | "description": "Prompt template extracted from 7179.f2b34daff5c4cb9957d6.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "${prefix}${slugger.slug(raw)}",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7179.f2b34daff5c4cb9957d6.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/MERMAID_DOM_ID_PREFIX.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "MERMAID_DOM_ID_PREFIX",
3 | "description": "Prompt template extracted from 1261.a7489136daa9b610b37f.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "flowchart-",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1261.a7489136daa9b610b37f.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/FILE_BROWSER_FACTORY.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "FILE_BROWSER_FACTORY",
3 | "description": "Prompt template extracted from 7302.8dfb32b083b16efa038a.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "FileBrowser",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7302.8dfb32b083b16efa038a.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/id.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "id",
3 | "description": "Prompt template extracted from 7179.f2b34daff5c4cb9957d6.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "${prefix}${slugger.slug(raw)}",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7179.f2b34daff5c4cb9957d6.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/MERMAID_DOM_ID_PREFIX.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "MERMAID_DOM_ID_PREFIX",
3 | "description": "Prompt template extracted from 1261.a7489136daa9b610b37f.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "flowchart-",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1261.a7489136daa9b610b37f.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/symbolPattern.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "symbolPattern",
3 | "description": "Prompt template extracted from 9331.5850506ebb1d3f304481.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[-_a-zA-Z?!*@<>$%]+",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/9331.5850506ebb1d3f304481.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/symbolPattern.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "symbolPattern",
3 | "description": "Prompt template extracted from 9331.5850506ebb1d3f304481.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[-_a-zA-Z?!*@<>$%]+",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/9331.5850506ebb1d3f304481.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/j.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "j",
3 | "description": "Prompt template extracted from 898.4051a8b212a0f4c89d60.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "function",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/898.4051a8b212a0f4c89d60.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/logTime.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "logTime",
3 | "description": "Prompt template extracted from index.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "${currentTime.getHours()}:${currentTime.getMinutes()}:${currentTime.getSeconds()}.${currentTime.getMilliseconds()}",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/emittery/index.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/SEARCHABLE_CLASS.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "SEARCHABLE_CLASS",
3 | "description": "Prompt template extracted from 7906.67e8d86ba7ed95cbac87.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "jp-mod-searchable",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7906.67e8d86ba7ed95cbac87.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/xhtml.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "xhtml",
3 | "description": "Prompt template extracted from 4630.64ab2753f3286b5a778b.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "http://www.w3.org/1999/xhtml",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/4630.64ab2753f3286b5a778b.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/logTime.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "logTime",
3 | "description": "Prompt template extracted from index.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "${currentTime.getHours()}:${currentTime.getMinutes()}:${currentTime.getSeconds()}.${currentTime.getMilliseconds()}",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/emittery/index.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/SEARCHABLE_CLASS.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "SEARCHABLE_CLASS",
3 | "description": "Prompt template extracted from 7906.67e8d86ba7ed95cbac87.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "jp-mod-searchable",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7906.67e8d86ba7ed95cbac87.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/xhtml.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "xhtml",
3 | "description": "Prompt template extracted from 4630.64ab2753f3286b5a778b.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "http://www.w3.org/1999/xhtml",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/4630.64ab2753f3286b5a778b.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/stringifiedObject.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "stringifiedObject",
3 | "description": "Prompt template extracted from generateConfigFile.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "${option}: ${JSON.stringify(\n map[option],\n null,\n 2\n )}",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/create-jest/build/generateConfigFile.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/stringifiedObject.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "stringifiedObject",
3 | "description": "Prompt template extracted from generateConfigFile.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "${option}: ${JSON.stringify(\n map[option],\n null,\n 2\n )}",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/node_modules/create-jest/build/generateConfigFile.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/_emojiRegex.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "_emojiRegex",
3 | "description": "Prompt template extracted from types.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "^(\\\\p{Extended_Pictographic}|\\\\p{Emoji_Component})+$",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/zod-to-json-schema/dist-test/cjs/node_modules/zod/lib/types.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/_emojiRegex.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "_emojiRegex",
3 | "description": "Prompt template extracted from types.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "^(\\\\p{Extended_Pictographic}|\\\\p{Emoji_Component})+$",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/zod-to-json-schema/dist-test/cjs/node_modules/zod/lib/types.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/jupyter_namespaceObject.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "jupyter_namespaceObject",
3 | "description": "Prompt template extracted from 9068.cb72a595212d6ed7de5e.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "<svg width=\\",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/9068.cb72a595212d6ed7de5e.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/jupyter_namespaceObject.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "jupyter_namespaceObject",
3 | "description": "Prompt template extracted from 9068.cb72a595212d6ed7de5e.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "<svg width=\\",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/9068.cb72a595212d6ed7de5e.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/TOPBAR_FACTORY.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "TOPBAR_FACTORY",
3 | "description": "Prompt template extracted from notebook_core.4799ce7e762b693682b6.js",
4 | "type": "prompt",
5 | "category": "user",
6 | "content": "TopBar",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/notebook_core.4799ce7e762b693682b6.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/user/TOPBAR_FACTORY.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "TOPBAR_FACTORY",
3 | "description": "Prompt template extracted from notebook_core.4799ce7e762b693682b6.js",
4 | "type": "prompt",
5 | "category": "user",
6 | "content": "TopBar",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/notebook_core.4799ce7e762b693682b6.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/DNS.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "DNS",
3 | "description": "Prompt template extracted from 2692.aa472750b0685d9dc0b2.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2692.aa472750b0685d9dc0b2.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/HASH_UNDEFINED.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "HASH_UNDEFINED",
3 | "description": "Prompt template extracted from 4324.fa653693694bd924557b.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "__lodash_hash_undefined__",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/4324.fa653693694bd924557b.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/DNS.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "DNS",
3 | "description": "Prompt template extracted from 2692.aa472750b0685d9dc0b2.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/2692.aa472750b0685d9dc0b2.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/HASH_UNDEFINED.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "HASH_UNDEFINED",
3 | "description": "Prompt template extracted from 4324.fa653693694bd924557b.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "__lodash_hash_undefined__",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/4324.fa653693694bd924557b.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/data/prompts/templates/image-1-describe-the-icon-in-one-sen.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "id": "image-1-describe-the-icon-in-one-sen",
3 | "name": "<|image_1|>\ndescribe the icon in one sen...",
4 | "description": "<|image_1|>\ndescribe the icon in one sentence",
5 | "content": "<|image_1|>\ndescribe the icon in one sentence",
6 | "isTemplate": false,
7 | "tags": [
8 | "ai",
9 | "productivity"
10 | ],
11 | "createdAt": "2025-03-05T03:37:30.298Z",
12 | "updatedAt": "2025-03-05T03:41:11.312Z",
13 | "version": 1
14 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/identifier.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "Identifier",
3 | "description": "Prompt template extracted from 1418.5913bb08784c217a1f0b.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[a-zA-Z\\\\$][a-zA-Z0-9\\\\$]*",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1418.5913bb08784c217a1f0b.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/Identifier.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "Identifier",
3 | "description": "Prompt template extracted from 1418.5913bb08784c217a1f0b.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[a-zA-Z\\\\$][a-zA-Z0-9\\\\$]*",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1418.5913bb08784c217a1f0b.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/identifier.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "Identifier",
3 | "description": "Prompt template extracted from 1418.5913bb08784c217a1f0b.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[a-zA-Z\\\\$][a-zA-Z0-9\\\\$]*",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1418.5913bb08784c217a1f0b.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/Identifier.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "Identifier",
3 | "description": "Prompt template extracted from 1418.5913bb08784c217a1f0b.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "[a-zA-Z\\\\$][a-zA-Z0-9\\\\$]*",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/1418.5913bb08784c217a1f0b.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/bignum.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "bignum",
3 | "description": "Prompt template extracted from types.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "31415926535897932384626433832795028841971693993751058.16180339887498948482045868343656381177203091798057628",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/pg-types/test/types.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/bignum.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "bignum",
3 | "description": "Prompt template extracted from types.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "31415926535897932384626433832795028841971693993751058.16180339887498948482045868343656381177203091798057628",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/pg-types/test/types.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/dataWebpackPrefix.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "dataWebpackPrefix",
3 | "description": "Prompt template extracted from main.407246dd27aed8010549.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "_JUPYTERLAB.CORE_OUTPUT:",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/main.407246dd27aed8010549.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/dataWebpackPrefix.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "dataWebpackPrefix",
3 | "description": "Prompt template extracted from main.407246dd27aed8010549.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "_JUPYTERLAB.CORE_OUTPUT:",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/main.407246dd27aed8010549.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/num.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "num",
3 | "description": "Prompt template extracted from 5115.722cf90a473016a17ba7.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "([-+]?([.,]\\\\d+|\\\\d+([.,]\\\\d*)?))",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5115.722cf90a473016a17ba7.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/num.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "num",
3 | "description": "Prompt template extracted from 5115.722cf90a473016a17ba7.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "([-+]?([.,]\\\\d+|\\\\d+([.,]\\\\d*)?))",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5115.722cf90a473016a17ba7.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/notCharacterOrDash.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "notCharacterOrDash",
3 | "description": "Prompt template extracted from 8378.c1a78f0d6f0124d37fa9.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "(?=[^A-Za-z\\\\d\\\\-_]|$)",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/8378.c1a78f0d6f0124d37fa9.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/MOBILE_QUERY.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "MOBILE_QUERY",
3 | "description": "Prompt template extracted from 5135.398f538011f4562d1fae.js",
4 | "type": "prompt",
5 | "category": "user",
6 | "content": "only screen and (max-width: 760px)",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5135.398f538011f4562d1fae.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/notCharacterOrDash.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "notCharacterOrDash",
3 | "description": "Prompt template extracted from 8378.c1a78f0d6f0124d37fa9.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "(?=[^A-Za-z\\\\d\\\\-_]|$)",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/8378.c1a78f0d6f0124d37fa9.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/user/MOBILE_QUERY.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "MOBILE_QUERY",
3 | "description": "Prompt template extracted from 5135.398f538011f4562d1fae.js",
4 | "type": "prompt",
5 | "category": "user",
6 | "content": "only screen and (max-width: 760px)",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5135.398f538011f4562d1fae.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/data/prompts/templates/initialize-project-setup-for-a-new-micro.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "id": "initialize-project-setup-for-a-new-micro",
3 | "name": "Initialize project setup for a new micro...",
4 | "description": "Initialize project setup for a new microservice",
5 | "content": "Initialize project setup for a new microservice",
6 | "isTemplate": false,
7 | "tags": [
8 | "ai",
9 | "productivity"
10 | ],
11 | "createdAt": "2025-03-05T03:37:30.295Z",
12 | "updatedAt": "2025-03-05T03:41:11.320Z",
13 | "version": 1
14 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/ADDITIONAL_PROPERTY_FLAG.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "ADDITIONAL_PROPERTY_FLAG",
3 | "description": "Prompt template extracted from 7995.45be6443b704da1daafc.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "__additional_property",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7995.45be6443b704da1daafc.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/ADDITIONAL_PROPERTY_FLAG.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "ADDITIONAL_PROPERTY_FLAG",
3 | "description": "Prompt template extracted from 7995.45be6443b704da1daafc.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "__additional_property",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/7995.45be6443b704da1daafc.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/notebookURL.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "notebookURL",
3 | "description": "Prompt template extracted from 9380.709f3e6308fc49ccb353.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "https://github.com/jupyter/notebook",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/9380.709f3e6308fc49ccb353.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/notebookURL.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "notebookURL",
3 | "description": "Prompt template extracted from 9380.709f3e6308fc49ccb353.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "https://github.com/jupyter/notebook",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/9380.709f3e6308fc49ccb353.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/Vr.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "Vr",
3 | "description": "Prompt template extracted from 9046.99c477ea375dcbb8c7ca.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "font-family:monospace;border-bottom:1px solid #e2e2e2;padding:2px;",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/9046.99c477ea375dcbb8c7ca.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/Vr.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "Vr",
3 | "description": "Prompt template extracted from 9046.99c477ea375dcbb8c7ca.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "font-family:monospace;border-bottom:1px solid #e2e2e2;padding:2px;",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/share/jupyter/lab/static/9046.99c477ea375dcbb8c7ca.js",
10 | "imported": true
11 | }
12 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/other/Task_List_Helper.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "Task List Helper",
3 | "description": "A basic prompt to help organize and prioritize tasks",
4 | "type": "prompt",
5 | "category": "other",
6 | "content": "Please create a prioritized task list based on the following requirements:\n\n{{requirements}}",
7 | "variables": [
8 | "requirements"
9 | ],
10 | "metadata": {
11 | "source": "/home/sparrow/mcp/data/prompts/task-list-helper-8ithy.json",
12 | "imported": true
13 | }
14 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/Task_List_Helper.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "Task List Helper",
3 | "description": "A basic prompt to help organize and prioritize tasks",
4 | "type": "prompt",
5 | "category": "other",
6 | "content": "Please create a prioritized task list based on the following requirements:\n\n{{requirements}}",
7 | "variables": [
8 | "requirements"
9 | ],
10 | "metadata": {
11 | "source": "/home/sparrow/mcp/data/prompts/task-list-helper-8ithy.json",
12 | "imported": true
13 | }
14 | }
```
--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/KERNEL_STATUS_ERROR_CLASS.json:
--------------------------------------------------------------------------------
```json
1 | {
2 | "name": "KERNEL_STATUS_ERROR_CLASS",
3 | "description": "Prompt template extracted from 5573.fadd0e2001b2575ccb0f.js",
4 | "type": "prompt",
5 | "category": "coding",
6 | "content": "jp-NotebookKernelStatus-error",
7 | "variables": {},
8 | "metadata": {
9 | "source": "/home/sparrow/projects/mcp-servers/src/prompt-manager/.venv/lib/python3.12/site-packages/notebook/static/5573.fadd0e2001b2575ccb0f.js",
10 | "imported": true
11 | }
12 | }
```