#
tokens: 49934/50000 247/1179 files (page 2/24)
lines: on (toggle) GitHub
raw markdown copy reset
This is page 2 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/jsonType.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "jsonType",
 3 |   "description": "Prompt template extracted from json.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "json",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/formidable/src/plugins/json.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/system/versionMajorMinor.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "versionMajorMinor",
 3 |   "description": "Prompt template extracted from _tsc.js",
 4 |   "type": "prompt",
 5 |   "category": "system",
 6 |   "content": "5.8",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/typescript/lib/_tsc.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/versionMajorMinor.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "versionMajorMinor",
 3 |   "description": "Prompt template extracted from _tsc.js",
 4 |   "type": "prompt",
 5 |   "category": "system",
 6 |   "content": "5.8",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/typescript/lib/_tsc.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/Facade-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Facade-diagram",
 3 |   "description": "Mermaid diagram for Facade pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Facade Design Pattern, showing a simplified interface versus a complex subsystem.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/flowchart/Facade-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Facade-diagram",
 3 |   "description": "Mermaid diagram for Facade pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Facade Design Pattern, showing a simplified interface versus a complex subsystem.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/DELIM.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "DELIM",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": " | ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/istanbul-reports/lib/text/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/DELIM.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "DELIM",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": " | ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/istanbul-reports/lib/text/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/Chain-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Chain-diagram",
 3 |   "description": "Mermaid diagram for Chain pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing ChainOfResponsibility Design Pattern, showing the flow of requests through handlers.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/flowchart/Chain-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Chain-diagram",
 3 |   "description": "Mermaid diagram for Chain pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing ChainOfResponsibility Design Pattern, showing the flow of requests through handlers.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/prefix.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "prefix",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "file:////",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/collect-v8-coverage/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/SHARED.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "SHARED",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "__core-js_shared__",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/json5/dist/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/UNDEFINED.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "UNDEFINED",
 3 |   "description": "Prompt template extracted from json.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "undefined",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/ts-jest/dist/utils/json.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/prefix.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "prefix",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "file:////",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/collect-v8-coverage/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/SHARED.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "SHARED",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "__core-js_shared__",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/json5/dist/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/UNDEFINED.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "UNDEFINED",
 3 |   "description": "Prompt template extracted from json.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "undefined",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/ts-jest/dist/utils/json.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/debug.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "debug",
 3 |   "description": "Prompt template extracted from util.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "this is some data",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@types/node/util.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/errorMessage.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "errorMessage",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "Option ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@pkgjs/parseargs/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/formatted.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "formatted",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\\x1b[36;1m",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/depd/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/debug.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "debug",
 3 |   "description": "Prompt template extracted from util.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "this is some data",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@types/node/util.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/errorMessage.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "errorMessage",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "Option ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@pkgjs/parseargs/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/formatted.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "formatted",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\\x1b[36;1m",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/depd/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/LINE_FEED.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "LINE_FEED",
 3 |   "description": "Prompt template extracted from constants.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "other",
 6 |   "content": "\\n",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/ts-jest/dist/constants.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/other/LINE_FEED.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "LINE_FEED",
 3 |   "description": "Prompt template extracted from constants.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "other",
 6 |   "content": "\\n",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/ts-jest/dist/constants.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/Command-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Command-diagram",
 3 |   "description": "Mermaid diagram for Command pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Command Design Pattern, outlining encapsulated request objects and their invokers.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/Decorator-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Decorator-diagram",
 3 |   "description": "Mermaid diagram for Decorator pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Decorator Design Pattern, that shows dynamic addition of behaviors to objects.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/flowchart/Command-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Command-diagram",
 3 |   "description": "Mermaid diagram for Command pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Command Design Pattern, outlining encapsulated request objects and their invokers.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/flowchart/Decorator-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Decorator-diagram",
 3 |   "description": "Mermaid diagram for Decorator pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Decorator Design Pattern, that shows dynamic addition of behaviors to objects.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/ANSI_ESCAPE_BELL.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "ANSI_ESCAPE_BELL",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\\u0007",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/wrap-ansi-cjs/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/ANSI_ESCAPE_BELL.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "ANSI_ESCAPE_BELL",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\\u0007",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/wrap-ansi-cjs/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/colorCode.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "colorCode",
 3 |   "description": "Prompt template extracted from node.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\\u001B[3",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/debug/src/node.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/LETTERDASHNUMBER.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "LETTERDASHNUMBER",
 3 |   "description": "Prompt template extracted from semver.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "[a-zA-Z0-9-]",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/semver/semver.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/pathExt.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "pathExt",
 3 |   "description": "Prompt template extracted from basic.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": ".EXE;.CAT;.CMD;.COM",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/isexe/test/basic.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/SNAPSHOT_VERSION.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "SNAPSHOT_VERSION",
 3 |   "description": "Prompt template extracted from utils.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "1",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-snapshot/build/utils.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/colorCode.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "colorCode",
 3 |   "description": "Prompt template extracted from node.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\\u001B[3",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/debug/src/node.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/LETTERDASHNUMBER.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "LETTERDASHNUMBER",
 3 |   "description": "Prompt template extracted from semver.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "[a-zA-Z0-9-]",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/semver/semver.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/pathExt.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "pathExt",
 3 |   "description": "Prompt template extracted from basic.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": ".EXE;.CAT;.CMD;.COM",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/isexe/test/basic.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/SNAPSHOT_VERSION.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "SNAPSHOT_VERSION",
 3 |   "description": "Prompt template extracted from utils.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "1",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-snapshot/build/utils.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/flowchart/Visitor-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Visitor-diagram",
 3 |   "description": "Mermaid diagram for Visitor pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Visitor Design Pattern, showing the separation of operations from object structure.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/Visitor-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Visitor-diagram",
 3 |   "description": "Mermaid diagram for Visitor pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Visitor Design Pattern, showing the separation of operations from object structure.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/ANDROID_EVERGREEN_FIRST.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "ANDROID_EVERGREEN_FIRST",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "37",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/browserslist/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/ANDROID_EVERGREEN_FIRST.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "ANDROID_EVERGREEN_FIRST",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "37",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/browserslist/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/ERR_CODE.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "ERR_CODE",
 3 |   "description": "Prompt template extracted from error.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "ARGError",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/argparse/lib/argument/error.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/pkg.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "pkg",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "diff-sequences",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/diff-sequences/build/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/ROOT_TASK_NAME.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "ROOT_TASK_NAME",
 3 |   "description": "Prompt template extracted from task.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "__rootTask__",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jake/lib/task/task.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/DEFAULT_INDENT.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "DEFAULT_INDENT",
 3 |   "description": "Prompt template extracted from utils.js",
 4 |   "type": "prompt",
 5 |   "category": "other",
 6 |   "content": "  ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/update-browserslist-db/utils.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/ERR_CODE.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "ERR_CODE",
 3 |   "description": "Prompt template extracted from error.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "ARGError",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/argparse/lib/argument/error.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/other/DEFAULT_INDENT.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "DEFAULT_INDENT",
 3 |   "description": "Prompt template extracted from utils.js",
 4 |   "type": "prompt",
 5 |   "category": "other",
 6 |   "content": "  ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/update-browserslist-db/utils.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/pkg.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "pkg",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "diff-sequences",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/diff-sequences/build/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/ROOT_TASK_NAME.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "ROOT_TASK_NAME",
 3 |   "description": "Prompt template extracted from task.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "__rootTask__",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jake/lib/task/task.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/Factory-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Factory-diagram",
 3 |   "description": "Mermaid diagram for Factory pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing FactoryMethod Design Pattern, showing the factory, product, and client interactions.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/flowchart/Factory-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Factory-diagram",
 3 |   "description": "Mermaid diagram for Factory pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing FactoryMethod Design Pattern, showing the factory, product, and client interactions.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/flowchart/Prototype-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Prototype-diagram",
 3 |   "description": "Mermaid diagram for Prototype pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Prototype Design Pattern, displaying object cloning and prototype relationships.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/Prototype-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Prototype-diagram",
 3 |   "description": "Mermaid diagram for Prototype pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Prototype Design Pattern, displaying object cloning and prototype relationships.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/command.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "command",
 3 |   "description": "Prompt template extracted from exit_test.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "node log.js 0 ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/exit/test/exit_test.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/doc.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "doc",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "document",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/eventsource/dist/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/plusChar.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "plusChar",
 3 |   "description": "Prompt template extracted from utf7.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "+",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/iconv-lite/encodings/utf7.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/command.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "command",
 3 |   "description": "Prompt template extracted from exit_test.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "node log.js 0 ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/exit/test/exit_test.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/doc.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "doc",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "document",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/eventsource/dist/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/other/WIN_SLASH.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "WIN_SLASH",
 3 |   "description": "Prompt template extracted from constants.js",
 4 |   "type": "prompt",
 5 |   "category": "other",
 6 |   "content": "\\\\\\\\/",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/picomatch/lib/constants.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/plusChar.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "plusChar",
 3 |   "description": "Prompt template extracted from utf7.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "+",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/iconv-lite/encodings/utf7.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/WIN_SLASH.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "WIN_SLASH",
 3 |   "description": "Prompt template extracted from constants.js",
 4 |   "type": "prompt",
 5 |   "category": "other",
 6 |   "content": "\\\\\\\\/",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/picomatch/lib/constants.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/START_OF_LINE.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "START_OF_LINE",
 3 |   "description": "Prompt template extracted from validation.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "^",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-each/build/validation.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/START_OF_LINE.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "START_OF_LINE",
 3 |   "description": "Prompt template extracted from validation.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "^",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-each/build/validation.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/add.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "add",
 3 |   "description": "Prompt template extracted from module.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "const a: number = 1;",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@types/node/module.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/astralRange.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "astralRange",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\\\\ud800-\\\\udfff",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/char-regex/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/add.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "add",
 3 |   "description": "Prompt template extracted from module.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "const a: number = 1;",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@types/node/module.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/astralRange.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "astralRange",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\\\\ud800-\\\\udfff",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/char-regex/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/EXPECTED_LABEL.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "EXPECTED_LABEL",
 3 |   "description": "Prompt template extracted from matchers.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "Expected",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/expect/build/matchers.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/typeKey.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "typeKey",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "is${type}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/traverse/lib/path/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/EXPECTED_LABEL.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "EXPECTED_LABEL",
 3 |   "description": "Prompt template extracted from matchers.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "Expected",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/expect/build/matchers.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/typeKey.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "typeKey",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "is${type}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/traverse/lib/path/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/flowchart/Singleton-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Singleton-diagram",
 3 |   "description": "Mermaid diagram for Singleton pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Singleton Design Pattern, illustrating the single instance and global access point.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/Singleton-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Singleton-diagram",
 3 |   "description": "Mermaid diagram for Singleton pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Singleton Design Pattern, illustrating the single instance and global access point.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/INDENT.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "INDENT",
 3 |   "description": "Prompt template extracted from xml-writer.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "  ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/istanbul-lib-report/lib/xml-writer.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/point.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "point",
 3 |   "description": "Prompt template extracted from textParsers.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "(",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/pg-types/lib/textParsers.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/PRETTY_PLACEHOLDER.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "PRETTY_PLACEHOLDER",
 3 |   "description": "Prompt template extracted from array.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "%p",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-each/build/table/array.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/RUNNING_TEXT.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "RUNNING_TEXT",
 3 |   "description": "Prompt template extracted from Status.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": " RUNS ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@jest/reporters/build/Status.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/INDENT.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "INDENT",
 3 |   "description": "Prompt template extracted from xml-writer.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "  ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/istanbul-lib-report/lib/xml-writer.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/point.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "point",
 3 |   "description": "Prompt template extracted from textParsers.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "(",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/pg-types/lib/textParsers.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/PRETTY_PLACEHOLDER.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "PRETTY_PLACEHOLDER",
 3 |   "description": "Prompt template extracted from array.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "%p",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-each/build/table/array.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/RUNNING_TEXT.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "RUNNING_TEXT",
 3 |   "description": "Prompt template extracted from Status.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": " RUNS ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@jest/reporters/build/Status.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/aAnnotationPadding.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "aAnnotationPadding",
 3 |   "description": "Prompt template extracted from diffLines.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": " ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-diff/build/diffLines.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/aAnnotationPadding.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "aAnnotationPadding",
 3 |   "description": "Prompt template extracted from diffLines.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": " ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-diff/build/diffLines.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/d.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "d",
 3 |   "description": "Prompt template extracted from map-store.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "data:",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/istanbul-lib-source-maps/lib/map-store.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/LIMIT_REPLACE_NODE.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "LIMIT_REPLACE_NODE",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "[...]",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/fast-safe-stringify/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/lt.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "lt",
 3 |   "description": "Prompt template extracted from annotator.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\\u0001",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/istanbul-reports/lib/html/annotator.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/nonKey.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "nonKey",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "not a core module",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/is-core-module/test/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/d.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "d",
 3 |   "description": "Prompt template extracted from map-store.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "data:",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/istanbul-lib-source-maps/lib/map-store.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/LIMIT_REPLACE_NODE.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "LIMIT_REPLACE_NODE",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "[...]",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/fast-safe-stringify/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/lt.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "lt",
 3 |   "description": "Prompt template extracted from annotator.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\\u0001",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/istanbul-reports/lib/html/annotator.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/nonKey.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "nonKey",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "not a core module",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/is-core-module/test/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/Adapter-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Adapter-diagram",
 3 |   "description": "Mermaid diagram for Adapter pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Adapter Design Pattern, showing how incompatible interfaces are adapted to work together.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/flowchart/Adapter-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Adapter-diagram",
 3 |   "description": "Mermaid diagram for Adapter pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Adapter Design Pattern, showing how incompatible interfaces are adapted to work together.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/ARROW.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "ARROW",
 3 |   "description": "Prompt template extracted from specialChars.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": " \\u203A ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-util/build/specialChars.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/cacheControl.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "cacheControl",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "public, max-age=",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/send/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/ARROW.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "ARROW",
 3 |   "description": "Prompt template extracted from specialChars.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": " \\u203A ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-util/build/specialChars.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/cacheControl.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "cacheControl",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "public, max-age=",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/send/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/fnKey.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "fnKey",
 3 |   "description": "Prompt template extracted from visitors.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "is${nodeType}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/traverse/lib/visitors.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/paddedNumber.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "paddedNumber",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": " ${number}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/code-frame/lib/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/fnKey.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "fnKey",
 3 |   "description": "Prompt template extracted from visitors.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "is${nodeType}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/traverse/lib/visitors.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/paddedNumber.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "paddedNumber",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": " ${number}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/code-frame/lib/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/flowchart/Observer-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Observer-diagram",
 3 |   "description": "Mermaid diagram for Observer pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Observer Design Pattern, showing one-to-many dependencies between subjects and observers.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/flowchart/Strategy-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Strategy-diagram",
 3 |   "description": "Mermaid diagram for Strategy pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Strategy Design Pattern, showing interchangeable algorithms and their selection criteria.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/Observer-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Observer-diagram",
 3 |   "description": "Mermaid diagram for Observer pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Observer Design Pattern, showing one-to-many dependencies between subjects and observers.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/Strategy-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Strategy-diagram",
 3 |   "description": "Mermaid diagram for Strategy pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Strategy Design Pattern, showing interchangeable algorithms and their selection criteria.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/NATIVE_PLATFORM.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "NATIVE_PLATFORM",
 3 |   "description": "Prompt template extracted from resolver.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "native",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-resolve/build/resolver.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/resolvedDestination.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "resolvedDestination",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": ".",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/istanbul-reports/lib/html/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/SPACE_SYMBOL.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "SPACE_SYMBOL",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\\u{00B7}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-matcher-utils/build/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/NATIVE_PLATFORM.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "NATIVE_PLATFORM",
 3 |   "description": "Prompt template extracted from resolver.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "native",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-resolve/build/resolver.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/resolvedDestination.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "resolvedDestination",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": ".",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/istanbul-reports/lib/html/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/SPACE_SYMBOL.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "SPACE_SYMBOL",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\\u{00B7}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-matcher-utils/build/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/Builder-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Builder-diagram",
 3 |   "description": "Mermaid diagram for Builder pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Builder Design Pattern, that shows the step-by-step construction process of complex objects.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/flowchart/Builder-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "Builder-diagram",
 3 |   "description": "Mermaid diagram for Builder pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing Builder Design Pattern, that shows the step-by-step construction process of complex objects.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/chars.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "chars",
 3 |   "description": "Prompt template extracted from utils.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "abcdefghijklmnopqrstuvwxyz0123456789",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/publish/build/core/utils.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/chars.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "chars",
 3 |   "description": "Prompt template extracted from utils.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "abcdefghijklmnopqrstuvwxyz0123456789",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/publish/build/core/utils.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/subkey.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "subkey",
 3 |   "description": "Prompt template extracted from utils.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${key}[${i}]",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/types/lib/definitions/utils.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/subkey.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "subkey",
 3 |   "description": "Prompt template extracted from utils.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${key}[${i}]",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/types/lib/definitions/utils.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/HINT_ARG.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "HINT_ARG",
 3 |   "description": "Prompt template extracted from printSnapshot.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "hint",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-snapshot/build/printSnapshot.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/JSON_SYNTAX_CHAR.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "JSON_SYNTAX_CHAR",
 3 |   "description": "Prompt template extracted from json.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "#",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/body-parser/lib/types/json.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/json.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "json",
 3 |   "description": "Prompt template extracted from index.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "{\n\t// Rainbows\n\t",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/strip-json-comments/index.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/NUMBER.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "NUMBER",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "([+-]?\\\\d+)",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/postgres-interval/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/STATES.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "STATES",
 3 |   "description": "Prompt template extracted from Multipart.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${name}Mark",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/formidable/src/parsers/Multipart.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/HINT_ARG.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "HINT_ARG",
 3 |   "description": "Prompt template extracted from printSnapshot.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "hint",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-snapshot/build/printSnapshot.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/JSON_SYNTAX_CHAR.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "JSON_SYNTAX_CHAR",
 3 |   "description": "Prompt template extracted from json.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "#",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/body-parser/lib/types/json.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/json.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "json",
 3 |   "description": "Prompt template extracted from index.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "{\n\t// Rainbows\n\t",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/strip-json-comments/index.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/NUMBER.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "NUMBER",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "([+-]?\\\\d+)",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/postgres-interval/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/STATES.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "STATES",
 3 |   "description": "Prompt template extracted from Multipart.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${name}Mark",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/formidable/src/parsers/Multipart.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/DEFAULT_DELIMITER.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "DEFAULT_DELIMITER",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "/",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/path-to-regexp/dist/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/DEFAULT_LOG_TARGET.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "DEFAULT_LOG_TARGET",
 3 |   "description": "Prompt template extracted from target.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "stderr:",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/bs-logger/dist/logger/target.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/FUNC_ERROR_TEXT.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "FUNC_ERROR_TEXT",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "Expected a function",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/lodash.memoize/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/stringPath.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "stringPath",
 3 |   "description": "Prompt template extracted from conversion.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "body",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/traverse/lib/path/conversion.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/DEFAULT_DELIMITER.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "DEFAULT_DELIMITER",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "/",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/path-to-regexp/dist/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/DEFAULT_LOG_TARGET.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "DEFAULT_LOG_TARGET",
 3 |   "description": "Prompt template extracted from target.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "stderr:",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/bs-logger/dist/logger/target.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/FUNC_ERROR_TEXT.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "FUNC_ERROR_TEXT",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "Expected a function",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/lodash.memoize/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/stringPath.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "stringPath",
 3 |   "description": "Prompt template extracted from conversion.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "body",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/traverse/lib/path/conversion.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/defaultHelpOpt.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "defaultHelpOpt",
 3 |   "description": "Prompt template extracted from yargs-factory.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "help",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/yargs/build/lib/yargs-factory.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/escapeFuncStr.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "escapeFuncStr",
 3 |   "description": "Prompt template extracted from utils.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "var _ENCODE_HTML_RULES = {\\n",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/ejs/lib/utils.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/JEST_GLOBAL_NAME.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "JEST_GLOBAL_NAME",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "jest",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/babel-plugin-jest-hoist/build/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/defaultHelpOpt.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "defaultHelpOpt",
 3 |   "description": "Prompt template extracted from yargs-factory.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "help",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/yargs/build/lib/yargs-factory.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/escapeFuncStr.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "escapeFuncStr",
 3 |   "description": "Prompt template extracted from utils.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "var _ENCODE_HTML_RULES = {\\n",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/ejs/lib/utils.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/JEST_GLOBAL_NAME.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "JEST_GLOBAL_NAME",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "jest",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/babel-plugin-jest-hoist/build/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/other/output.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "output",
 3 |   "description": "Prompt template extracted from utils.js",
 4 |   "type": "prompt",
 5 |   "category": "other",
 6 |   "content": "${prepend}(?:${input})${append}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/picomatch/lib/utils.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/output.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "output",
 3 |   "description": "Prompt template extracted from utils.js",
 4 |   "type": "prompt",
 5 |   "category": "other",
 6 |   "content": "${prepend}(?:${input})${append}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/picomatch/lib/utils.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/__type.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "__type",
 3 |   "description": "Prompt template extracted from pure-rand-default.js",
 4 |   "type": "prompt",
 5 |   "category": "other",
 6 |   "content": "commonjs",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/pure-rand/lib/pure-rand-default.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/clientFirstMessageBare.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "clientFirstMessageBare",
 3 |   "description": "Prompt template extracted from sasl.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "n=*,r=",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/pg/lib/crypto/sasl.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/clientFirstMessageBare.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "clientFirstMessageBare",
 3 |   "description": "Prompt template extracted from sasl.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "n=*,r=",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/pg/lib/crypto/sasl.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/execaMessage.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "execaMessage",
 3 |   "description": "Prompt template extracted from error.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "Command ${prefix}: ${command}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/execa/lib/error.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/text.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "text",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "select $1::text as name",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/pg-pool/test/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/execaMessage.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "execaMessage",
 3 |   "description": "Prompt template extracted from error.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "Command ${prefix}: ${command}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/execa/lib/error.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/other/__type.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "__type",
 3 |   "description": "Prompt template extracted from pure-rand-default.js",
 4 |   "type": "prompt",
 5 |   "category": "other",
 6 |   "content": "commonjs",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/pure-rand/lib/pure-rand-default.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/text.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "text",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "select $1::text as name",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/pg-pool/test/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/GENSYNC_EXPECTED_START.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "GENSYNC_EXPECTED_START",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "GENSYNC_EXPECTED_START",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/gensync/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/minimatch.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "minimatch",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "[^/]",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/rimraf/node_modules/minimatch/dist/esm/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/MOCK_CONSTRUCTOR_NAME.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "MOCK_CONSTRUCTOR_NAME",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "mockConstructor",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-mock/build/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/PatternBoolean.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "PatternBoolean",
 3 |   "description": "Prompt template extracted from typebox.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "(true|false)",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@sinclair/typebox/typebox.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/GENSYNC_EXPECTED_START.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "GENSYNC_EXPECTED_START",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "GENSYNC_EXPECTED_START",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/gensync/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/minimatch.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "minimatch",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "[^/]",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/rimraf/node_modules/minimatch/dist/esm/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/MOCK_CONSTRUCTOR_NAME.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "MOCK_CONSTRUCTOR_NAME",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "mockConstructor",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-mock/build/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/PatternBoolean.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "PatternBoolean",
 3 |   "description": "Prompt template extracted from typebox.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "(true|false)",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@sinclair/typebox/typebox.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/DEFAULT_JS_PATTERN.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "DEFAULT_JS_PATTERN",
 3 |   "description": "Prompt template extracted from index.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\\\\.[jt]sx?$",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-config/build/index.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/deferY18nLookupPrefix.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "deferY18nLookupPrefix",
 3 |   "description": "Prompt template extracted from usage.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "__yargsString__:",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/yargs/build/lib/usage.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/JAKE_CMD.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "JAKE_CMD",
 3 |   "description": "Prompt template extracted from rule.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${PROJECT_DIR}/bin/cli.js",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jake/test/integration/rule.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/multipartType.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "multipartType",
 3 |   "description": "Prompt template extracted from multipart.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "multipart",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/formidable/src/plugins/multipart.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/ROOT_NAMESPACE_NAME.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "ROOT_NAMESPACE_NAME",
 3 |   "description": "Prompt template extracted from namespace.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "__rootNamespace__",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jake/lib/namespace.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/DEFAULT_JS_PATTERN.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "DEFAULT_JS_PATTERN",
 3 |   "description": "Prompt template extracted from index.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\\\\.[jt]sx?$",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-config/build/index.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/deferY18nLookupPrefix.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "deferY18nLookupPrefix",
 3 |   "description": "Prompt template extracted from usage.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "__yargsString__:",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/yargs/build/lib/usage.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/JAKE_CMD.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "JAKE_CMD",
 3 |   "description": "Prompt template extracted from rule.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${PROJECT_DIR}/bin/cli.js",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jake/test/integration/rule.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/multipartType.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "multipartType",
 3 |   "description": "Prompt template extracted from multipart.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "multipart",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/formidable/src/plugins/multipart.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/ROOT_NAMESPACE_NAME.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "ROOT_NAMESPACE_NAME",
 3 |   "description": "Prompt template extracted from namespace.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "__rootNamespace__",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jake/lib/namespace.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/BOMChar.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "BOMChar",
 3 |   "description": "Prompt template extracted from bom-handling.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\\uFEFF",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/iconv-lite/lib/bom-handling.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/BOMChar.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "BOMChar",
 3 |   "description": "Prompt template extracted from bom-handling.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\\uFEFF",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/iconv-lite/lib/bom-handling.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/defaultHost.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "defaultHost",
 3 |   "description": "Prompt template extracted from http2wrapper.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "localhost",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/superagent/lib/node/http2wrapper.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/defaultHost.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "defaultHost",
 3 |   "description": "Prompt template extracted from http2wrapper.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "localhost",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/superagent/lib/node/http2wrapper.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/__init__.py:
--------------------------------------------------------------------------------

```python
 1 | """
 2 | Prompts API for the MCP Project Orchestrator.
 3 | 
 4 | Exports expected test-facing classes:
 5 | - PromptManager, PromptTemplate, PromptVersion
 6 | """
 7 | 
 8 | from .manager import PromptManager
 9 | from .template import PromptTemplate
10 | from .version import PromptVersion
11 | 
12 | __all__ = [
13 |     "PromptManager",
14 |     "PromptTemplate",
15 |     "PromptVersion",
16 | ]
17 | 
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/EXTENSION.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "EXTENSION",
 3 |   "description": "Prompt template extracted from SnapshotResolver.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "snap",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-snapshot/build/SnapshotResolver.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/FAIL_TEXT.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "FAIL_TEXT",
 3 |   "description": "Prompt template extracted from getResultHeader.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "FAIL",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@jest/reporters/build/getResultHeader.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/indentation.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "indentation",
 3 |   "description": "Prompt template extracted from VerboseReporter.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "  ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@jest/reporters/build/VerboseReporter.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/EXTENSION.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "EXTENSION",
 3 |   "description": "Prompt template extracted from SnapshotResolver.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "snap",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-snapshot/build/SnapshotResolver.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/FAIL_TEXT.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "FAIL_TEXT",
 3 |   "description": "Prompt template extracted from getResultHeader.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "FAIL",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@jest/reporters/build/getResultHeader.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/indentation.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "indentation",
 3 |   "description": "Prompt template extracted from VerboseReporter.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "  ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@jest/reporters/build/VerboseReporter.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/boundary.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "boundary",
 3 |   "description": "Prompt template extracted from form_data.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "--------------------------",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/form-data/lib/form_data.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/boundary.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "boundary",
 3 |   "description": "Prompt template extracted from form_data.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "--------------------------",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/form-data/lib/form_data.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/expectedString.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "expectedString",
 3 |   "description": "Prompt template extracted from values.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "Map (2) {",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/object-inspect/test/values.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/expectedString.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "expectedString",
 3 |   "description": "Prompt template extracted from values.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "Map (2) {",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/object-inspect/test/values.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/cmd.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "cmd",
 3 |   "description": "Prompt template extracted from jakefile.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "../node-jsdoc-toolkit/app/run.js -n -r=100 ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jake/jakefile.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/cmd.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "cmd",
 3 |   "description": "Prompt template extracted from jakefile.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "../node-jsdoc-toolkit/app/run.js -n -r=100 ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jake/jakefile.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/fullpaths.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "fullpaths",
 3 |   "description": "Prompt template extracted from ignore.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${fullpath}/",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/rimraf/node_modules/glob/dist/esm/ignore.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/isConfigType.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "isConfigType",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${cmd}${sf}${so}${lf}${lo}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jackspeak/dist/esm/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/isSourceNode.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "isSourceNode",
 3 |   "description": "Prompt template extracted from source-node.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "$$$isSourceNode$$$",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/source-map/lib/source-node.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/OUTSIDE_JEST_VM_PROTOCOL.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "OUTSIDE_JEST_VM_PROTOCOL",
 3 |   "description": "Prompt template extracted from helpers.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "jest-main:",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-runtime/build/helpers.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/fullpaths.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "fullpaths",
 3 |   "description": "Prompt template extracted from ignore.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${fullpath}/",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/rimraf/node_modules/glob/dist/esm/ignore.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/isConfigType.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "isConfigType",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${cmd}${sf}${so}${lf}${lo}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jackspeak/dist/esm/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/isSourceNode.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "isSourceNode",
 3 |   "description": "Prompt template extracted from source-node.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "$$$isSourceNode$$$",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/source-map/lib/source-node.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/other/string.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "string",
 3 |   "description": "Prompt template extracted from index.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "other",
 6 |   "content": "#!/usr/bin/env node\\nconsole.log(",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/shebang-regex/index.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/OUTSIDE_JEST_VM_PROTOCOL.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "OUTSIDE_JEST_VM_PROTOCOL",
 3 |   "description": "Prompt template extracted from helpers.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "jest-main:",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-runtime/build/helpers.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/string.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "string",
 3 |   "description": "Prompt template extracted from index.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "other",
 6 |   "content": "#!/usr/bin/env node\\nconsole.log(",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/shebang-regex/index.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/match.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "match",
 3 |   "description": "Prompt template extracted from semver.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "-${identifier}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/make-dir/node_modules/semver/classes/semver.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/SPACE.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "SPACE",
 3 |   "description": "Prompt template extracted from AsymmetricMatcher.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": " ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/pretty-format/build/plugins/AsymmetricMatcher.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/match.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "match",
 3 |   "description": "Prompt template extracted from semver.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "-${identifier}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/make-dir/node_modules/semver/classes/semver.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/SPACE.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "SPACE",
 3 |   "description": "Prompt template extracted from AsymmetricMatcher.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": " ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/pretty-format/build/plugins/AsymmetricMatcher.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/newUrl.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "newUrl",
 3 |   "description": "Prompt template extracted from routing.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "#${params.join(",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/istanbul-reports/lib/html-spa/src/routing.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/rangeStart.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "rangeStart",
 3 |   "description": "Prompt template extracted from ascii.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "[${count.toString(10)}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@bcoe/v8-coverage/dist/lib/ascii.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/newUrl.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "newUrl",
 3 |   "description": "Prompt template extracted from routing.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "#${params.join(",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/istanbul-reports/lib/html-spa/src/routing.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/rangeStart.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "rangeStart",
 3 |   "description": "Prompt template extracted from ascii.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "[${count.toString(10)}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@bcoe/v8-coverage/dist/lib/ascii.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/flowchart/TemplateMethod-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "TemplateMethod-diagram",
 3 |   "description": "Mermaid diagram for TemplateMethod pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing TemplateMethod Design Pattern, illustrating the skeletal algorithm with customizable steps.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/mermaid/templates/TemplateMethod-diagram.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "TemplateMethod-diagram",
 3 |   "description": "Mermaid diagram for TemplateMethod pattern",
 4 |   "type": "flowchart",
 5 |   "content": "Generate a Mermaid diagram visualizing TemplateMethod Design Pattern, illustrating the skeletal algorithm with customizable steps.",
 6 |   "variables": {},
 7 |   "metadata": {
 8 |     "imported": true
 9 |   }
10 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/CACHE_VERSION.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "CACHE_VERSION",
 3 |   "description": "Prompt template extracted from ScriptTransformer.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "1",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@jest/transform/build/ScriptTransformer.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/CACHE_VERSION.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "CACHE_VERSION",
 3 |   "description": "Prompt template extracted from ScriptTransformer.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "1",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@jest/transform/build/ScriptTransformer.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/DEPRECATION.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "DEPRECATION",
 3 |   "description": "Prompt template extracted from utils.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${BULLET} Deprecation Warning",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-validate/build/utils.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/environment.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "environment",
 3 |   "description": "Prompt template extracted from source-map-support.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "auto",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/source-map-support/source-map-support.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/NO_ARGUMENTS.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "NO_ARGUMENTS",
 3 |   "description": "Prompt template extracted from spyMatchers.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "called with 0 arguments",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/expect/build/spyMatchers.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/PACKAGE_JSON.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "PACKAGE_JSON",
 3 |   "description": "Prompt template extracted from worker.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${path().sep}package.json",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-haste-map/build/worker.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/querystringType.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "querystringType",
 3 |   "description": "Prompt template extracted from querystring.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "urlencoded",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/formidable/src/plugins/querystring.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/strValue.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "strValue",
 3 |   "description": "Prompt template extracted from createProcessObject.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${value}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-util/build/createProcessObject.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/time.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "time",
 3 |   "description": "Prompt template extracted from getSummary.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${_chalk().default.bold(",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@jest/reporters/build/getSummary.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/DEPRECATION.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "DEPRECATION",
 3 |   "description": "Prompt template extracted from utils.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${BULLET} Deprecation Warning",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-validate/build/utils.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/environment.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "environment",
 3 |   "description": "Prompt template extracted from source-map-support.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "auto",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/source-map-support/source-map-support.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/NO_ARGUMENTS.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "NO_ARGUMENTS",
 3 |   "description": "Prompt template extracted from spyMatchers.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "called with 0 arguments",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/expect/build/spyMatchers.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/PACKAGE_JSON.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "PACKAGE_JSON",
 3 |   "description": "Prompt template extracted from worker.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${path().sep}package.json",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-haste-map/build/worker.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/querystringType.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "querystringType",
 3 |   "description": "Prompt template extracted from querystring.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "urlencoded",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/formidable/src/plugins/querystring.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/strValue.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "strValue",
 3 |   "description": "Prompt template extracted from createProcessObject.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${value}",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-util/build/createProcessObject.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/time.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "time",
 3 |   "description": "Prompt template extracted from getSummary.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${_chalk().default.bold(",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@jest/reporters/build/getSummary.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/code.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "code",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "BABEL_PARSER_SOURCETYPE_MODULE_REQUIRED",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/parser/lib/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/code.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "code",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "BABEL_PARSER_SOURCETYPE_MODULE_REQUIRED",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/parser/lib/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/PACKAGE_FILENAME.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "PACKAGE_FILENAME",
 3 |   "description": "Prompt template extracted from package.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "package.json",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/core/lib/config/files/package.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/ROOT_DESCRIBE_BLOCK_NAME.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "ROOT_DESCRIBE_BLOCK_NAME",
 3 |   "description": "Prompt template extracted from state.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "ROOT_DESCRIBE_BLOCK",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-circus/build/state.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/str.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "str",
 3 |   "description": "Prompt template extracted from test.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\u70eb\u70eb\u70eb\\r\\n\u70eb\u70eb\u70eb",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/split2/test.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/PACKAGE_FILENAME.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "PACKAGE_FILENAME",
 3 |   "description": "Prompt template extracted from package.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "package.json",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@babel/core/lib/config/files/package.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/ROOT_DESCRIBE_BLOCK_NAME.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "ROOT_DESCRIBE_BLOCK_NAME",
 3 |   "description": "Prompt template extracted from state.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "ROOT_DESCRIBE_BLOCK",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-circus/build/state.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/str.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "str",
 3 |   "description": "Prompt template extracted from test.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\u70eb\u70eb\u70eb\\r\\n\u70eb\u70eb\u70eb",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/split2/test.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/input.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "input",
 3 |   "description": "Prompt template extracted from index.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "The quick brown ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@isaacs/cliui/node_modules/wrap-ansi/index.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/INSPECT_MAX_BYTES.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "INSPECT_MAX_BYTES",
 3 |   "description": "Prompt template extracted from buffer.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\\u00bd + \\u00bc = \\u00be",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@types/node/buffer.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/octetStreamType.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "octetStreamType",
 3 |   "description": "Prompt template extracted from octetstream.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "octet-stream",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/formidable/src/plugins/octetstream.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/input.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "input",
 3 |   "description": "Prompt template extracted from index.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "The quick brown ",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@isaacs/cliui/node_modules/wrap-ansi/index.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/INSPECT_MAX_BYTES.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "INSPECT_MAX_BYTES",
 3 |   "description": "Prompt template extracted from buffer.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "\\u00bd + \\u00bc = \\u00be",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@types/node/buffer.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/octetStreamType.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "octetStreamType",
 3 |   "description": "Prompt template extracted from octetstream.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "octet-stream",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/formidable/src/plugins/octetstream.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/error.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "ERROR",
 3 |   "description": "Prompt template extracted from normalize.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${_utils.BULLET}Validation Error",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-config/build/normalize.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/ERROR.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "ERROR",
 3 |   "description": "Prompt template extracted from normalize.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${_utils.BULLET}Validation Error",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-config/build/normalize.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/error.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "ERROR",
 3 |   "description": "Prompt template extracted from normalize.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${_utils.BULLET}Validation Error",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-config/build/normalize.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/ERROR.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "ERROR",
 3 |   "description": "Prompt template extracted from normalize.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "${_utils.BULLET}Validation Error",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-config/build/normalize.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/DID_NOT_THROW.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "DID_NOT_THROW",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "Received function did not throw",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-snapshot/build/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/earlyHintsLink.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "earlyHintsLink",
 3 |   "description": "Prompt template extracted from http.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "</styles.css>; rel=preload; as=style",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@types/node/http.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/resolverDir.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "resolverDir",
 3 |   "description": "Prompt template extracted from faulty_basedir.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "C:\\\\a\\\\b\\\\c\\\\d",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/resolve/test/faulty_basedir.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/coding/UNMATCHED_SURROGATE_PAIR_REPLACE.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "UNMATCHED_SURROGATE_PAIR_REPLACE",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "$1\\uFFFD$2",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/custom-mcp/node_modules/encodeurl/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/DID_NOT_THROW.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "DID_NOT_THROW",
 3 |   "description": "Prompt template extracted from index.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "Received function did not throw",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/jest-snapshot/build/index.js",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/earlyHintsLink.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "earlyHintsLink",
 3 |   "description": "Prompt template extracted from http.d.ts",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "</styles.css>; rel=preload; as=style",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/@types/node/http.d.ts",
10 |     "imported": true
11 |   }
12 | }
```

--------------------------------------------------------------------------------
/src/mcp_project_orchestrator/prompts/resolverDir.json:
--------------------------------------------------------------------------------

```json
 1 | {
 2 |   "name": "resolverDir",
 3 |   "description": "Prompt template extracted from faulty_basedir.js",
 4 |   "type": "prompt",
 5 |   "category": "coding",
 6 |   "content": "C:\\\\a\\\\b\\\\c\\\\d",
 7 |   "variables": {},
 8 |   "metadata": {
 9 |     "source": "/home/sparrow/projects/mcp-prompts/node_modules/resolve/test/faulty_basedir.js",
10 |     "imported": true
11 |   }
12 | }
```
Page 2/24FirstPrevNextLast