sfcc-dev-mcp 1.0.8 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/ISSUE_TEMPLATE/bug_report.yml +129 -0
- package/.github/ISSUE_TEMPLATE/config.yml +9 -0
- package/.github/ISSUE_TEMPLATE/documentation.yml +117 -0
- package/.github/ISSUE_TEMPLATE/feature_request.yml +151 -0
- package/.github/ISSUE_TEMPLATE/question.yml +102 -0
- package/.github/PULL_REQUEST_TEMPLATE/bug_fix.md +59 -0
- package/.github/PULL_REQUEST_TEMPLATE/documentation.md +48 -0
- package/.github/PULL_REQUEST_TEMPLATE/new_tool.md +55 -0
- package/.github/copilot-instructions.md +280 -0
- package/.github/dependabot.yml +65 -0
- package/.github/pull_request_template.md +103 -0
- package/.github/workflows/ci.yml +2 -2
- package/.github/workflows/publish.yml +69 -0
- package/README.md +332 -15
- package/dist/clients/base/http-client.d.ts +54 -0
- package/dist/clients/base/http-client.d.ts.map +1 -0
- package/dist/clients/base/http-client.js +117 -0
- package/dist/clients/base/http-client.js.map +1 -0
- package/dist/{oauth-token.d.ts → clients/base/oauth-token.d.ts} +1 -1
- package/dist/clients/base/oauth-token.d.ts.map +1 -0
- package/dist/clients/base/oauth-token.js.map +1 -0
- package/dist/clients/base/ocapi-auth-client.d.ts +42 -0
- package/dist/clients/base/ocapi-auth-client.d.ts.map +1 -0
- package/dist/clients/base/ocapi-auth-client.js +104 -0
- package/dist/clients/base/ocapi-auth-client.js.map +1 -0
- package/dist/{best-practices-client.d.ts → clients/best-practices-client.d.ts} +1 -1
- package/dist/clients/best-practices-client.d.ts.map +1 -0
- package/dist/{best-practices-client.js → clients/best-practices-client.js} +48 -4
- package/dist/clients/best-practices-client.js.map +1 -0
- package/dist/{docs-client.d.ts → clients/docs-client.d.ts} +1 -1
- package/dist/clients/docs-client.d.ts.map +1 -0
- package/dist/{docs-client.js → clients/docs-client.js} +59 -10
- package/dist/clients/docs-client.js.map +1 -0
- package/dist/{log-client.d.ts → clients/log-client.d.ts} +1 -1
- package/dist/clients/log-client.d.ts.map +1 -0
- package/dist/{log-client.js → clients/log-client.js} +2 -2
- package/dist/clients/log-client.js.map +1 -0
- package/dist/clients/ocapi/site-preferences-client.d.ts +76 -0
- package/dist/clients/ocapi/site-preferences-client.d.ts.map +1 -0
- package/dist/clients/ocapi/site-preferences-client.js +54 -0
- package/dist/clients/ocapi/site-preferences-client.js.map +1 -0
- package/dist/clients/ocapi/system-objects-client.d.ts +82 -0
- package/dist/clients/ocapi/system-objects-client.d.ts.map +1 -0
- package/dist/clients/ocapi/system-objects-client.js +82 -0
- package/dist/clients/ocapi/system-objects-client.js.map +1 -0
- package/dist/clients/ocapi-client.d.ts +105 -0
- package/dist/clients/ocapi-client.d.ts.map +1 -0
- package/dist/clients/ocapi-client.js +102 -0
- package/dist/clients/ocapi-client.js.map +1 -0
- package/dist/clients/sfra-client.d.ts +71 -0
- package/dist/clients/sfra-client.d.ts.map +1 -0
- package/dist/clients/sfra-client.js +384 -0
- package/dist/clients/sfra-client.js.map +1 -0
- package/dist/config/configuration-factory.d.ts +75 -0
- package/dist/config/configuration-factory.d.ts.map +1 -0
- package/dist/{configuration-factory.js → config/configuration-factory.js} +65 -18
- package/dist/config/configuration-factory.js.map +1 -0
- package/dist/config/dw-json-loader.d.ts +20 -0
- package/dist/config/dw-json-loader.d.ts.map +1 -0
- package/dist/config/dw-json-loader.js +137 -0
- package/dist/config/dw-json-loader.js.map +1 -0
- package/dist/{server.d.ts → core/server.d.ts} +6 -1
- package/dist/core/server.d.ts.map +1 -0
- package/dist/{server.js → core/server.js} +105 -26
- package/dist/core/server.js.map +1 -0
- package/dist/{tool-definitions.d.ts → core/tool-definitions.d.ts} +205 -14
- package/dist/core/tool-definitions.d.ts.map +1 -0
- package/dist/core/tool-definitions.js +885 -0
- package/dist/core/tool-definitions.js.map +1 -0
- package/dist/docs/TopLevel/APIException.md +68 -0
- package/dist/docs/TopLevel/Array.md +897 -0
- package/dist/docs/TopLevel/ArrayBuffer.md +79 -0
- package/dist/docs/TopLevel/BigInt.md +132 -0
- package/dist/docs/TopLevel/Boolean.md +62 -0
- package/dist/docs/TopLevel/ConversionError.md +23 -0
- package/dist/docs/TopLevel/DataView.md +352 -0
- package/dist/docs/TopLevel/Date.md +924 -0
- package/dist/docs/TopLevel/ES6Iterator.md +33 -0
- package/dist/docs/TopLevel/Error.md +88 -0
- package/dist/docs/TopLevel/EvalError.md +23 -0
- package/dist/docs/TopLevel/Fault.md +87 -0
- package/dist/docs/TopLevel/Float32Array.md +124 -0
- package/dist/docs/TopLevel/Float64Array.md +124 -0
- package/dist/docs/TopLevel/Function.md +105 -0
- package/dist/docs/TopLevel/Generator.md +78 -0
- package/dist/docs/TopLevel/IOError.md +62 -0
- package/dist/docs/TopLevel/Int16Array.md +124 -0
- package/dist/docs/TopLevel/Int32Array.md +124 -0
- package/dist/docs/TopLevel/Int8Array.md +124 -0
- package/dist/docs/TopLevel/InternalError.md +23 -0
- package/dist/docs/TopLevel/Iterable.md +41 -0
- package/dist/docs/TopLevel/Iterator.md +48 -0
- package/dist/docs/TopLevel/JSON.md +162 -0
- package/dist/docs/TopLevel/Map.md +216 -0
- package/dist/docs/TopLevel/Math.md +865 -0
- package/dist/docs/TopLevel/Module.md +45 -0
- package/dist/docs/TopLevel/Namespace.md +96 -0
- package/dist/docs/TopLevel/Number.md +375 -0
- package/dist/docs/TopLevel/Object.md +641 -0
- package/dist/docs/TopLevel/QName.md +96 -0
- package/dist/docs/TopLevel/RangeError.md +23 -0
- package/dist/docs/TopLevel/ReferenceError.md +23 -0
- package/dist/docs/TopLevel/RegExp.md +109 -0
- package/dist/docs/TopLevel/Set.md +165 -0
- package/dist/docs/TopLevel/StopIteration.md +20 -0
- package/dist/docs/TopLevel/String.md +1299 -0
- package/dist/docs/TopLevel/Symbol.md +78 -0
- package/dist/docs/TopLevel/SyntaxError.md +23 -0
- package/dist/docs/TopLevel/SystemError.md +62 -0
- package/dist/docs/TopLevel/TypeError.md +23 -0
- package/dist/docs/TopLevel/URIError.md +23 -0
- package/dist/docs/TopLevel/Uint16Array.md +124 -0
- package/dist/docs/TopLevel/Uint32Array.md +124 -0
- package/dist/docs/TopLevel/Uint8Array.md +124 -0
- package/dist/docs/TopLevel/Uint8ClampedArray.md +124 -0
- package/dist/docs/TopLevel/WeakMap.md +137 -0
- package/dist/docs/TopLevel/WeakSet.md +92 -0
- package/dist/docs/TopLevel/XML.md +937 -0
- package/dist/docs/TopLevel/XMLList.md +484 -0
- package/dist/docs/TopLevel/XMLStreamError.md +74 -0
- package/dist/docs/TopLevel/arguments.md +34 -0
- package/dist/docs/TopLevel/global.md +462 -0
- package/dist/docs/best-practices/cartridge_creation.md +397 -0
- package/dist/docs/best-practices/isml_templates.md +412 -0
- package/dist/docs/best-practices/job_framework.md +1116 -0
- package/dist/docs/best-practices/ocapi_hooks.md +297 -0
- package/dist/docs/best-practices/performance.md +356 -0
- package/dist/docs/best-practices/scapi_custom_endpoint.md +675 -0
- package/dist/docs/best-practices/scapi_hooks.md +297 -0
- package/dist/docs/best-practices/security.md +274 -0
- package/dist/docs/best-practices/sfra_controllers.md +192 -0
- package/dist/docs/dw_campaign/ABTest.md +47 -0
- package/dist/docs/dw_campaign/ABTestMgr.md +70 -0
- package/dist/docs/dw_campaign/ABTestSegment.md +96 -0
- package/dist/docs/dw_campaign/AmountDiscount.md +51 -0
- package/dist/docs/dw_campaign/ApproachingDiscount.md +124 -0
- package/dist/docs/dw_campaign/BonusChoiceDiscount.md +146 -0
- package/dist/docs/dw_campaign/BonusDiscount.md +48 -0
- package/dist/docs/dw_campaign/Campaign.md +365 -0
- package/dist/docs/dw_campaign/CampaignMgr.md +395 -0
- package/dist/docs/dw_campaign/CampaignStatusCodes.md +24 -0
- package/dist/docs/dw_campaign/Coupon.md +292 -0
- package/dist/docs/dw_campaign/CouponMgr.md +138 -0
- package/dist/docs/dw_campaign/CouponRedemption.md +94 -0
- package/dist/docs/dw_campaign/CouponStatusCodes.md +20 -0
- package/dist/docs/dw_campaign/Discount.md +160 -0
- package/dist/docs/dw_campaign/DiscountPlan.md +282 -0
- package/dist/docs/dw_campaign/FixedPriceDiscount.md +52 -0
- package/dist/docs/dw_campaign/FixedPriceShippingDiscount.md +52 -0
- package/dist/docs/dw_campaign/FreeDiscount.md +17 -0
- package/dist/docs/dw_campaign/FreeShippingDiscount.md +17 -0
- package/dist/docs/dw_campaign/PercentageDiscount.md +52 -0
- package/dist/docs/dw_campaign/PercentageOptionDiscount.md +48 -0
- package/dist/docs/dw_campaign/PriceBookPriceDiscount.md +47 -0
- package/dist/docs/dw_campaign/Promotion.md +826 -0
- package/dist/docs/dw_campaign/PromotionMgr.md +386 -0
- package/dist/docs/dw_campaign/PromotionPlan.md +318 -0
- package/dist/docs/dw_campaign/SlotContent.md +144 -0
- package/dist/docs/dw_campaign/SourceCodeGroup.md +72 -0
- package/dist/docs/dw_campaign/SourceCodeInfo.md +126 -0
- package/dist/docs/dw_campaign/SourceCodeStatusCodes.md +24 -0
- package/dist/docs/dw_campaign/TotalFixedPriceDiscount.md +47 -0
- package/dist/docs/dw_catalog/Catalog.md +122 -0
- package/dist/docs/dw_catalog/CatalogMgr.md +182 -0
- package/dist/docs/dw_catalog/Category.md +1296 -0
- package/dist/docs/dw_catalog/CategoryAssignment.md +192 -0
- package/dist/docs/dw_catalog/CategoryLink.md +96 -0
- package/dist/docs/dw_catalog/PriceBook.md +242 -0
- package/dist/docs/dw_catalog/PriceBookMgr.md +205 -0
- package/dist/docs/dw_catalog/Product.md +2593 -0
- package/dist/docs/dw_catalog/ProductActiveData.md +1275 -0
- package/dist/docs/dw_catalog/ProductAttributeModel.md +277 -0
- package/dist/docs/dw_catalog/ProductAvailabilityLevels.md +142 -0
- package/dist/docs/dw_catalog/ProductAvailabilityModel.md +356 -0
- package/dist/docs/dw_catalog/ProductInventoryList.md +140 -0
- package/dist/docs/dw_catalog/ProductInventoryMgr.md +99 -0
- package/dist/docs/dw_catalog/ProductInventoryRecord.md +563 -0
- package/dist/docs/dw_catalog/ProductLink.md +96 -0
- package/dist/docs/dw_catalog/ProductMgr.md +138 -0
- package/dist/docs/dw_catalog/ProductOption.md +214 -0
- package/dist/docs/dw_catalog/ProductOptionModel.md +246 -0
- package/dist/docs/dw_catalog/ProductOptionValue.md +123 -0
- package/dist/docs/dw_catalog/ProductPriceInfo.md +172 -0
- package/dist/docs/dw_catalog/ProductPriceModel.md +745 -0
- package/dist/docs/dw_catalog/ProductPriceTable.md +134 -0
- package/dist/docs/dw_catalog/ProductSearchHit.md +545 -0
- package/dist/docs/dw_catalog/ProductSearchModel.md +1912 -0
- package/dist/docs/dw_catalog/ProductSearchRefinementDefinition.md +97 -0
- package/dist/docs/dw_catalog/ProductSearchRefinementValue.md +73 -0
- package/dist/docs/dw_catalog/ProductSearchRefinements.md +216 -0
- package/dist/docs/dw_catalog/ProductVariationAttribute.md +100 -0
- package/dist/docs/dw_catalog/ProductVariationAttributeValue.md +238 -0
- package/dist/docs/dw_catalog/ProductVariationModel.md +849 -0
- package/dist/docs/dw_catalog/Recommendation.md +296 -0
- package/dist/docs/dw_catalog/SearchModel.md +877 -0
- package/dist/docs/dw_catalog/SearchRefinementDefinition.md +146 -0
- package/dist/docs/dw_catalog/SearchRefinementValue.md +185 -0
- package/dist/docs/dw_catalog/SearchRefinements.md +156 -0
- package/dist/docs/dw_catalog/SortingOption.md +120 -0
- package/dist/docs/dw_catalog/SortingRule.md +47 -0
- package/dist/docs/dw_catalog/Store.md +562 -0
- package/dist/docs/dw_catalog/StoreGroup.md +96 -0
- package/dist/docs/dw_catalog/StoreInventoryFilter.md +74 -0
- package/dist/docs/dw_catalog/StoreInventoryFilterValue.md +74 -0
- package/dist/docs/dw_catalog/StoreMgr.md +236 -0
- package/dist/docs/dw_catalog/Variant.md +859 -0
- package/dist/docs/dw_catalog/VariationGroup.md +792 -0
- package/dist/docs/dw_content/Content.md +534 -0
- package/dist/docs/dw_content/ContentMgr.md +160 -0
- package/dist/docs/dw_content/ContentSearchModel.md +670 -0
- package/dist/docs/dw_content/ContentSearchRefinementDefinition.md +49 -0
- package/dist/docs/dw_content/ContentSearchRefinementValue.md +17 -0
- package/dist/docs/dw_content/ContentSearchRefinements.md +208 -0
- package/dist/docs/dw_content/Folder.md +467 -0
- package/dist/docs/dw_content/Library.md +121 -0
- package/dist/docs/dw_content/MarkupText.md +88 -0
- package/dist/docs/dw_content/MediaFile.md +317 -0
- package/dist/docs/dw_crypto/CertificateRef.md +42 -0
- package/dist/docs/dw_crypto/Cipher.md +524 -0
- package/dist/docs/dw_crypto/Encoding.md +220 -0
- package/dist/docs/dw_crypto/JWE.md +182 -0
- package/dist/docs/dw_crypto/JWS.md +264 -0
- package/dist/docs/dw_crypto/JWSHeader.md +148 -0
- package/dist/docs/dw_crypto/KeyRef.md +44 -0
- package/dist/docs/dw_crypto/Mac.md +109 -0
- package/dist/docs/dw_crypto/MessageDigest.md +139 -0
- package/dist/docs/dw_crypto/SecureRandom.md +148 -0
- package/dist/docs/dw_crypto/Signature.md +246 -0
- package/dist/docs/dw_crypto/WeakCipher.md +532 -0
- package/dist/docs/dw_crypto/WeakMac.md +109 -0
- package/dist/docs/dw_crypto/WeakMessageDigest.md +139 -0
- package/dist/docs/dw_crypto/WeakSignature.md +242 -0
- package/dist/docs/dw_customer/AddressBook.md +163 -0
- package/dist/docs/dw_customer/AgentUserMgr.md +83 -0
- package/dist/docs/dw_customer/AgentUserStatusCodes.md +24 -0
- package/dist/docs/dw_customer/AuthenticationStatus.md +96 -0
- package/dist/docs/dw_customer/Credentials.md +494 -0
- package/dist/docs/dw_customer/Customer.md +571 -0
- package/dist/docs/dw_customer/CustomerActiveData.md +552 -0
- package/dist/docs/dw_customer/CustomerAddress.md +852 -0
- package/dist/docs/dw_customer/CustomerCDPData.md +70 -0
- package/dist/docs/dw_customer/CustomerContextMgr.md +64 -0
- package/dist/docs/dw_customer/CustomerGroup.md +134 -0
- package/dist/docs/dw_customer/CustomerList.md +71 -0
- package/dist/docs/dw_customer/CustomerMgr.md +735 -0
- package/dist/docs/dw_customer/CustomerPasswordConstraints.md +142 -0
- package/dist/docs/dw_customer/CustomerPaymentInstrument.md +125 -0
- package/dist/docs/dw_customer/CustomerStatusCodes.md +24 -0
- package/dist/docs/dw_customer/EncryptedObject.md +18 -0
- package/dist/docs/dw_customer/ExternalProfile.md +160 -0
- package/dist/docs/dw_customer/OrderHistory.md +111 -0
- package/dist/docs/dw_customer/ProductList.md +952 -0
- package/dist/docs/dw_customer/ProductListItem.md +492 -0
- package/dist/docs/dw_customer/ProductListItemPurchase.md +145 -0
- package/dist/docs/dw_customer/ProductListMgr.md +234 -0
- package/dist/docs/dw_customer/ProductListRegistrant.md +193 -0
- package/dist/docs/dw_customer/Profile.md +1128 -0
- package/dist/docs/dw_customer/Wallet.md +118 -0
- package/dist/docs/dw_extensions.applepay/ApplePayHookResult.md +161 -0
- package/dist/docs/dw_extensions.applepay/ApplePayHooks.md +255 -0
- package/dist/docs/dw_extensions.facebook/FacebookFeedHooks.md +47 -0
- package/dist/docs/dw_extensions.facebook/FacebookProduct.md +1483 -0
- package/dist/docs/dw_extensions.paymentrequest/PaymentRequestHookResult.md +159 -0
- package/dist/docs/dw_extensions.paymentrequest/PaymentRequestHooks.md +160 -0
- package/dist/docs/dw_extensions.payments/SalesforceBancontactPaymentDetails.md +79 -0
- package/dist/docs/dw_extensions.payments/SalesforceCardPaymentDetails.md +103 -0
- package/dist/docs/dw_extensions.payments/SalesforceEpsPaymentDetails.md +51 -0
- package/dist/docs/dw_extensions.payments/SalesforceIdealPaymentDetails.md +51 -0
- package/dist/docs/dw_extensions.payments/SalesforceKlarnaPaymentDetails.md +51 -0
- package/dist/docs/dw_extensions.payments/SalesforcePayPalOrder.md +234 -0
- package/dist/docs/dw_extensions.payments/SalesforcePayPalOrderAddress.md +191 -0
- package/dist/docs/dw_extensions.payments/SalesforcePayPalOrderPayer.md +118 -0
- package/dist/docs/dw_extensions.payments/SalesforcePayPalPaymentDetails.md +79 -0
- package/dist/docs/dw_extensions.payments/SalesforcePaymentDetails.md +57 -0
- package/dist/docs/dw_extensions.payments/SalesforcePaymentIntent.md +269 -0
- package/dist/docs/dw_extensions.payments/SalesforcePaymentMethod.md +304 -0
- package/dist/docs/dw_extensions.payments/SalesforcePaymentRequest.md +622 -0
- package/dist/docs/dw_extensions.payments/SalesforcePaymentsHooks.md +45 -0
- package/dist/docs/dw_extensions.payments/SalesforcePaymentsMgr.md +592 -0
- package/dist/docs/dw_extensions.payments/SalesforcePaymentsSiteConfiguration.md +95 -0
- package/dist/docs/dw_extensions.payments/SalesforceSepaDebitPaymentDetails.md +51 -0
- package/dist/docs/dw_extensions.payments/SalesforceVenmoPaymentDetails.md +79 -0
- package/dist/docs/dw_extensions.pinterest/PinterestAvailability.md +86 -0
- package/dist/docs/dw_extensions.pinterest/PinterestFeedHooks.md +69 -0
- package/dist/docs/dw_extensions.pinterest/PinterestOrder.md +172 -0
- package/dist/docs/dw_extensions.pinterest/PinterestOrderHooks.md +45 -0
- package/dist/docs/dw_extensions.pinterest/PinterestProduct.md +814 -0
- package/dist/docs/dw_io/CSVStreamReader.md +80 -0
- package/dist/docs/dw_io/CSVStreamWriter.md +60 -0
- package/dist/docs/dw_io/File.md +554 -0
- package/dist/docs/dw_io/FileReader.md +41 -0
- package/dist/docs/dw_io/FileWriter.md +103 -0
- package/dist/docs/dw_io/InputStream.md +34 -0
- package/dist/docs/dw_io/OutputStream.md +34 -0
- package/dist/docs/dw_io/PrintWriter.md +71 -0
- package/dist/docs/dw_io/RandomAccessFileReader.md +167 -0
- package/dist/docs/dw_io/Reader.md +274 -0
- package/dist/docs/dw_io/StringWriter.md +81 -0
- package/dist/docs/dw_io/Writer.md +92 -0
- package/dist/docs/dw_io/XMLIndentingStreamWriter.md +112 -0
- package/dist/docs/dw_io/XMLStreamConstants.md +24 -0
- package/dist/docs/dw_io/XMLStreamReader.md +1043 -0
- package/dist/docs/dw_io/XMLStreamWriter.md +572 -0
- package/dist/docs/dw_job/JobExecution.md +107 -0
- package/dist/docs/dw_job/JobStepExecution.md +151 -0
- package/dist/docs/dw_net/FTPClient.md +675 -0
- package/dist/docs/dw_net/FTPFileInfo.md +122 -0
- package/dist/docs/dw_net/HTTPClient.md +769 -0
- package/dist/docs/dw_net/HTTPRequestPart.md +206 -0
- package/dist/docs/dw_net/Mail.md +431 -0
- package/dist/docs/dw_net/SFTPClient.md +579 -0
- package/dist/docs/dw_net/SFTPFileInfo.md +122 -0
- package/dist/docs/dw_net/WebDAVClient.md +667 -0
- package/dist/docs/dw_net/WebDAVFileInfo.md +184 -0
- package/dist/docs/dw_object/ActiveData.md +75 -0
- package/dist/docs/dw_object/CustomAttributes.md +16 -0
- package/dist/docs/dw_object/CustomObject.md +73 -0
- package/dist/docs/dw_object/CustomObjectMgr.md +291 -0
- package/dist/docs/dw_object/Extensible.md +64 -0
- package/dist/docs/dw_object/ExtensibleObject.md +68 -0
- package/dist/docs/dw_object/Note.md +121 -0
- package/dist/docs/dw_object/ObjectAttributeDefinition.md +373 -0
- package/dist/docs/dw_object/ObjectAttributeGroup.md +170 -0
- package/dist/docs/dw_object/ObjectAttributeValueDefinition.md +72 -0
- package/dist/docs/dw_object/ObjectTypeDefinition.md +216 -0
- package/dist/docs/dw_object/PersistentObject.md +94 -0
- package/dist/docs/dw_object/SimpleExtensible.md +46 -0
- package/dist/docs/dw_object/SystemObjectMgr.md +153 -0
- package/dist/docs/dw_order/AbstractItem.md +244 -0
- package/dist/docs/dw_order/AbstractItemCtnr.md +240 -0
- package/dist/docs/dw_order/Appeasement.md +325 -0
- package/dist/docs/dw_order/AppeasementItem.md +90 -0
- package/dist/docs/dw_order/Basket.md +362 -0
- package/dist/docs/dw_order/BasketMgr.md +402 -0
- package/dist/docs/dw_order/BonusDiscountLineItem.md +248 -0
- package/dist/docs/dw_order/CouponLineItem.md +272 -0
- package/dist/docs/dw_order/CreateAgentBasketLimitExceededException.md +18 -0
- package/dist/docs/dw_order/CreateBasketFromOrderException.md +26 -0
- package/dist/docs/dw_order/CreateCouponLineItemException.md +26 -0
- package/dist/docs/dw_order/CreateOrderException.md +18 -0
- package/dist/docs/dw_order/CreateTemporaryBasketLimitExceededException.md +18 -0
- package/dist/docs/dw_order/GiftCertificate.md +545 -0
- package/dist/docs/dw_order/GiftCertificateLineItem.md +324 -0
- package/dist/docs/dw_order/GiftCertificateMgr.md +161 -0
- package/dist/docs/dw_order/GiftCertificateStatusCodes.md +24 -0
- package/dist/docs/dw_order/Invoice.md +316 -0
- package/dist/docs/dw_order/InvoiceItem.md +222 -0
- package/dist/docs/dw_order/LineItem.md +532 -0
- package/dist/docs/dw_order/LineItemCtnr.md +2317 -0
- package/dist/docs/dw_order/Order.md +2441 -0
- package/dist/docs/dw_order/OrderAddress.md +807 -0
- package/dist/docs/dw_order/OrderItem.md +476 -0
- package/dist/docs/dw_order/OrderMgr.md +535 -0
- package/dist/docs/dw_order/OrderPaymentInstrument.md +220 -0
- package/dist/docs/dw_order/OrderProcessStatusCodes.md +24 -0
- package/dist/docs/dw_order/PaymentCard.md +217 -0
- package/dist/docs/dw_order/PaymentInstrument.md +1414 -0
- package/dist/docs/dw_order/PaymentMethod.md +242 -0
- package/dist/docs/dw_order/PaymentMgr.md +117 -0
- package/dist/docs/dw_order/PaymentProcessor.md +70 -0
- package/dist/docs/dw_order/PaymentStatusCodes.md +24 -0
- package/dist/docs/dw_order/PaymentTransaction.md +304 -0
- package/dist/docs/dw_order/PriceAdjustment.md +640 -0
- package/dist/docs/dw_order/PriceAdjustmentLimitTypes.md +20 -0
- package/dist/docs/dw_order/ProductLineItem.md +1821 -0
- package/dist/docs/dw_order/ProductShippingCost.md +96 -0
- package/dist/docs/dw_order/ProductShippingLineItem.md +320 -0
- package/dist/docs/dw_order/ProductShippingModel.md +125 -0
- package/dist/docs/dw_order/Return.md +318 -0
- package/dist/docs/dw_order/ReturnCase.md +340 -0
- package/dist/docs/dw_order/ReturnCaseItem.md +343 -0
- package/dist/docs/dw_order/ReturnItem.md +362 -0
- package/dist/docs/dw_order/Shipment.md +1227 -0
- package/dist/docs/dw_order/ShipmentShippingCost.md +46 -0
- package/dist/docs/dw_order/ShipmentShippingModel.md +146 -0
- package/dist/docs/dw_order/ShippingLineItem.md +272 -0
- package/dist/docs/dw_order/ShippingLocation.md +366 -0
- package/dist/docs/dw_order/ShippingMethod.md +266 -0
- package/dist/docs/dw_order/ShippingMgr.md +158 -0
- package/dist/docs/dw_order/ShippingOrder.md +507 -0
- package/dist/docs/dw_order/ShippingOrderItem.md +331 -0
- package/dist/docs/dw_order/SumItem.md +147 -0
- package/dist/docs/dw_order/TaxGroup.md +143 -0
- package/dist/docs/dw_order/TaxItem.md +74 -0
- package/dist/docs/dw_order/TaxMgr.md +215 -0
- package/dist/docs/dw_order/TrackingInfo.md +312 -0
- package/dist/docs/dw_order/TrackingRef.md +113 -0
- package/dist/docs/dw_order.hooks/CalculateHooks.md +77 -0
- package/dist/docs/dw_order.hooks/OrderHooks.md +41 -0
- package/dist/docs/dw_order.hooks/PaymentHooks.md +180 -0
- package/dist/docs/dw_order.hooks/ReturnHooks.md +135 -0
- package/dist/docs/dw_order.hooks/ShippingOrderHooks.md +245 -0
- package/dist/docs/dw_rpc/SOAPUtil.md +333 -0
- package/dist/docs/dw_rpc/Stub.md +259 -0
- package/dist/docs/dw_rpc/WebReference.md +83 -0
- package/dist/docs/dw_suggest/BrandSuggestions.md +17 -0
- package/dist/docs/dw_suggest/CategorySuggestions.md +53 -0
- package/dist/docs/dw_suggest/ContentSuggestions.md +53 -0
- package/dist/docs/dw_suggest/CustomSuggestions.md +17 -0
- package/dist/docs/dw_suggest/ProductSuggestions.md +53 -0
- package/dist/docs/dw_suggest/SearchPhraseSuggestions.md +117 -0
- package/dist/docs/dw_suggest/SuggestModel.md +397 -0
- package/dist/docs/dw_suggest/SuggestedCategory.md +46 -0
- package/dist/docs/dw_suggest/SuggestedContent.md +46 -0
- package/dist/docs/dw_suggest/SuggestedPhrase.md +70 -0
- package/dist/docs/dw_suggest/SuggestedProduct.md +47 -0
- package/dist/docs/dw_suggest/SuggestedTerm.md +143 -0
- package/dist/docs/dw_suggest/SuggestedTerms.md +132 -0
- package/dist/docs/dw_suggest/Suggestions.md +179 -0
- package/dist/docs/dw_svc/FTPService.md +118 -0
- package/dist/docs/dw_svc/FTPServiceDefinition.md +69 -0
- package/dist/docs/dw_svc/HTTPFormService.md +18 -0
- package/dist/docs/dw_svc/HTTPFormServiceDefinition.md +18 -0
- package/dist/docs/dw_svc/HTTPService.md +415 -0
- package/dist/docs/dw_svc/HTTPServiceDefinition.md +303 -0
- package/dist/docs/dw_svc/LocalServiceRegistry.md +43 -0
- package/dist/docs/dw_svc/Result.md +255 -0
- package/dist/docs/dw_svc/SOAPService.md +115 -0
- package/dist/docs/dw_svc/SOAPServiceDefinition.md +17 -0
- package/dist/docs/dw_svc/Service.md +295 -0
- package/dist/docs/dw_svc/ServiceCallback.md +268 -0
- package/dist/docs/dw_svc/ServiceConfig.md +120 -0
- package/dist/docs/dw_svc/ServiceCredential.md +150 -0
- package/dist/docs/dw_svc/ServiceDefinition.md +176 -0
- package/dist/docs/dw_svc/ServiceProfile.md +168 -0
- package/dist/docs/dw_svc/ServiceRegistry.md +109 -0
- package/dist/docs/dw_system/AgentUserStatusCodes.md +21 -0
- package/dist/docs/dw_system/Cache.md +102 -0
- package/dist/docs/dw_system/CacheMgr.md +42 -0
- package/dist/docs/dw_system/HookMgr.md +66 -0
- package/dist/docs/dw_system/InternalObject.md +56 -0
- package/dist/docs/dw_system/JobProcessMonitor.md +124 -0
- package/dist/docs/dw_system/Log.md +237 -0
- package/dist/docs/dw_system/LogNDC.md +88 -0
- package/dist/docs/dw_system/Logger.md +263 -0
- package/dist/docs/dw_system/OrganizationPreferences.md +18 -0
- package/dist/docs/dw_system/Pipeline.md +73 -0
- package/dist/docs/dw_system/PipelineDictionary.md +16 -0
- package/dist/docs/dw_system/RESTErrorResponse.md +66 -0
- package/dist/docs/dw_system/RESTResponseMgr.md +258 -0
- package/dist/docs/dw_system/RESTSuccessResponse.md +39 -0
- package/dist/docs/dw_system/RemoteInclude.md +74 -0
- package/dist/docs/dw_system/Request.md +839 -0
- package/dist/docs/dw_system/RequestHooks.md +59 -0
- package/dist/docs/dw_system/Response.md +318 -0
- package/dist/docs/dw_system/SearchStatus.md +91 -0
- package/dist/docs/dw_system/Session.md +476 -0
- package/dist/docs/dw_system/Site.md +567 -0
- package/dist/docs/dw_system/SitePreferences.md +49 -0
- package/dist/docs/dw_system/Status.md +273 -0
- package/dist/docs/dw_system/StatusItem.md +273 -0
- package/dist/docs/dw_system/System.md +182 -0
- package/dist/docs/dw_system/Transaction.md +84 -0
- package/dist/docs/dw_util/ArrayList.md +50 -0
- package/dist/docs/dw_util/Assert.md +391 -0
- package/dist/docs/dw_util/BigInteger.md +326 -0
- package/dist/docs/dw_util/Bytes.md +246 -0
- package/dist/docs/dw_util/Calendar.md +663 -0
- package/dist/docs/dw_util/Collection.md +338 -0
- package/dist/docs/dw_util/Currency.md +163 -0
- package/dist/docs/dw_util/DateUtils.md +86 -0
- package/dist/docs/dw_util/Decimal.md +438 -0
- package/dist/docs/dw_util/FilteringCollection.md +87 -0
- package/dist/docs/dw_util/Geolocation.md +271 -0
- package/dist/docs/dw_util/HashMap.md +43 -0
- package/dist/docs/dw_util/HashSet.md +46 -0
- package/dist/docs/dw_util/Iterator.md +97 -0
- package/dist/docs/dw_util/LinkedHashMap.md +43 -0
- package/dist/docs/dw_util/LinkedHashSet.md +46 -0
- package/dist/docs/dw_util/List.md +519 -0
- package/dist/docs/dw_util/Locale.md +267 -0
- package/dist/docs/dw_util/Map.md +313 -0
- package/dist/docs/dw_util/MapEntry.md +70 -0
- package/dist/docs/dw_util/MappingKey.md +76 -0
- package/dist/docs/dw_util/MappingMgr.md +122 -0
- package/dist/docs/dw_util/PropertyComparator.md +51 -0
- package/dist/docs/dw_util/SecureEncoder.md +350 -0
- package/dist/docs/dw_util/SecureFilter.md +350 -0
- package/dist/docs/dw_util/SeekableIterator.md +176 -0
- package/dist/docs/dw_util/Set.md +19 -0
- package/dist/docs/dw_util/SortedMap.md +148 -0
- package/dist/docs/dw_util/SortedSet.md +151 -0
- package/dist/docs/dw_util/StringUtils.md +717 -0
- package/dist/docs/dw_util/Template.md +88 -0
- package/dist/docs/dw_util/UUIDUtils.md +38 -0
- package/dist/docs/dw_value/EnumValue.md +92 -0
- package/dist/docs/dw_value/MimeEncodedText.md +103 -0
- package/dist/docs/dw_value/Money.md +604 -0
- package/dist/docs/dw_value/Quantity.md +376 -0
- package/dist/docs/dw_web/CSRFProtection.md +83 -0
- package/dist/docs/dw_web/ClickStream.md +157 -0
- package/dist/docs/dw_web/ClickStreamEntry.md +289 -0
- package/dist/docs/dw_web/Cookie.md +390 -0
- package/dist/docs/dw_web/Cookies.md +46 -0
- package/dist/docs/dw_web/Form.md +74 -0
- package/dist/docs/dw_web/FormAction.md +199 -0
- package/dist/docs/dw_web/FormElement.md +220 -0
- package/dist/docs/dw_web/FormElementValidationResult.md +157 -0
- package/dist/docs/dw_web/FormField.md +603 -0
- package/dist/docs/dw_web/FormFieldOption.md +238 -0
- package/dist/docs/dw_web/FormFieldOptions.md +42 -0
- package/dist/docs/dw_web/FormGroup.md +199 -0
- package/dist/docs/dw_web/FormList.md +126 -0
- package/dist/docs/dw_web/FormListItem.md +48 -0
- package/dist/docs/dw_web/Forms.md +16 -0
- package/dist/docs/dw_web/HttpParameter.md +513 -0
- package/dist/docs/dw_web/HttpParameterMap.md +185 -0
- package/dist/docs/dw_web/LoopIterator.md +261 -0
- package/dist/docs/dw_web/PageMetaData.md +230 -0
- package/dist/docs/dw_web/PageMetaTag.md +142 -0
- package/dist/docs/dw_web/PagingModel.md +365 -0
- package/dist/docs/dw_web/Resource.md +126 -0
- package/dist/docs/dw_web/URL.md +213 -0
- package/dist/docs/dw_web/URLAction.md +26 -0
- package/dist/docs/dw_web/URLParameter.md +22 -0
- package/dist/docs/dw_web/URLRedirect.md +71 -0
- package/dist/docs/dw_web/URLRedirectMgr.md +73 -0
- package/dist/docs/dw_web/URLUtils.md +1246 -0
- package/dist/docs/sfra/querystring.md +240 -0
- package/dist/docs/sfra/render.md +354 -0
- package/dist/docs/sfra/request.md +210 -0
- package/dist/docs/sfra/response.md +391 -0
- package/dist/docs/sfra/server.md +375 -0
- package/dist/index.d.ts +6 -9
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -8
- package/dist/index.js.map +1 -1
- package/dist/main.js +3 -3
- package/dist/main.js.map +1 -1
- package/dist/{types.d.ts → types/types.d.ts} +2 -0
- package/dist/types/types.d.ts.map +1 -0
- package/dist/types/types.js.map +1 -0
- package/dist/utils/cache.d.ts.map +1 -0
- package/dist/utils/cache.js.map +1 -0
- package/dist/{logger.d.ts → utils/logger.d.ts} +14 -3
- package/dist/utils/logger.d.ts.map +1 -0
- package/dist/{logger.js → utils/logger.js} +46 -9
- package/dist/utils/logger.js.map +1 -0
- package/dist/{path-resolver.d.ts → utils/path-resolver.d.ts} +4 -0
- package/dist/utils/path-resolver.d.ts.map +1 -0
- package/dist/{path-resolver.js → utils/path-resolver.js} +6 -0
- package/dist/utils/path-resolver.js.map +1 -0
- package/dist/utils/query-builder.d.ts +38 -0
- package/dist/utils/query-builder.d.ts.map +1 -0
- package/dist/utils/query-builder.js +77 -0
- package/dist/utils/query-builder.js.map +1 -0
- package/dist/utils/utils.d.ts.map +1 -0
- package/dist/utils/utils.js.map +1 -0
- package/dist/utils/validator.d.ts +48 -0
- package/dist/utils/validator.d.ts.map +1 -0
- package/dist/utils/validator.js +137 -0
- package/dist/utils/validator.js.map +1 -0
- package/docs/best-practices/isml_templates.md +412 -0
- package/docs/best-practices/job_framework.md +1116 -0
- package/docs/best-practices/scapi_custom_endpoint.md +498 -1
- package/docs/dw_job/JobExecution.md +107 -0
- package/docs/dw_job/JobStepExecution.md +151 -0
- package/docs/sfra/querystring.md +240 -0
- package/docs/sfra/render.md +354 -0
- package/docs/sfra/request.md +210 -0
- package/docs/sfra/response.md +391 -0
- package/docs/sfra/server.md +375 -0
- package/eslint.config.js +1 -0
- package/package.json +4 -7
- package/sfcc-ai-instructions.md +15 -0
- package/src/clients/base/http-client.ts +152 -0
- package/src/{oauth-token.ts → clients/base/oauth-token.ts} +1 -1
- package/src/clients/base/ocapi-auth-client.ts +120 -0
- package/src/{best-practices-client.ts → clients/best-practices-client.ts} +58 -4
- package/src/{docs-client.ts → clients/docs-client.ts} +72 -14
- package/src/{log-client.ts → clients/log-client.ts} +3 -3
- package/src/clients/ocapi/site-preferences-client.ts +108 -0
- package/src/clients/ocapi/system-objects-client.ts +150 -0
- package/src/clients/ocapi-client.ts +181 -0
- package/src/clients/sfra-client.ts +453 -0
- package/src/{configuration-factory.ts → config/configuration-factory.ts} +75 -23
- package/src/config/dw-json-loader.ts +159 -0
- package/src/{server.ts → core/server.ts} +95 -24
- package/src/core/tool-definitions.ts +889 -0
- package/src/index.ts +6 -10
- package/src/main.ts +3 -3
- package/src/{types.ts → types/types.ts} +2 -0
- package/src/{logger.ts → utils/logger.ts} +54 -9
- package/src/{path-resolver.ts → utils/path-resolver.ts} +7 -0
- package/src/utils/query-builder.ts +84 -0
- package/src/utils/validator.ts +162 -0
- package/tests/__mocks__/src/clients/base/http-client.js +43 -0
- package/tests/base-http-client.test.ts +287 -0
- package/tests/cache.test.ts +1 -1
- package/tests/config.test.ts +120 -164
- package/tests/configuration-factory.test.ts +3 -3
- package/tests/log-client.test.ts +4 -4
- package/tests/logger.test.ts +185 -392
- package/tests/oauth-token.test.ts +2 -2
- package/tests/ocapi-auth-client.test.ts +252 -0
- package/tests/ocapi-client.test.ts +123 -839
- package/tests/query-builder.test.ts +281 -0
- package/tests/site-preferences-client.test.ts +358 -0
- package/tests/system-objects-client.test.ts +310 -0
- package/tests/utils.test.ts +1 -1
- package/tests/validator.test.ts +416 -0
- package/dist/base-client.d.ts +0 -36
- package/dist/base-client.d.ts.map +0 -1
- package/dist/base-client.js +0 -80
- package/dist/base-client.js.map +0 -1
- package/dist/best-practices-client.d.ts.map +0 -1
- package/dist/best-practices-client.js.map +0 -1
- package/dist/cache.d.ts.map +0 -1
- package/dist/cache.js.map +0 -1
- package/dist/config.d.ts +0 -19
- package/dist/config.d.ts.map +0 -1
- package/dist/config.js +0 -51
- package/dist/config.js.map +0 -1
- package/dist/configuration-factory.d.ts +0 -42
- package/dist/configuration-factory.d.ts.map +0 -1
- package/dist/configuration-factory.js.map +0 -1
- package/dist/constants.d.ts +0 -40
- package/dist/constants.d.ts.map +0 -1
- package/dist/constants.js +0 -49
- package/dist/constants.js.map +0 -1
- package/dist/docs-client.d.ts.map +0 -1
- package/dist/docs-client.js.map +0 -1
- package/dist/log-client.d.ts.map +0 -1
- package/dist/log-client.js.map +0 -1
- package/dist/logger.d.ts.map +0 -1
- package/dist/logger.js.map +0 -1
- package/dist/oauth-token.d.ts.map +0 -1
- package/dist/oauth-token.js.map +0 -1
- package/dist/ocapi-client.d.ts +0 -187
- package/dist/ocapi-client.d.ts.map +0 -1
- package/dist/ocapi-client.js +0 -330
- package/dist/ocapi-client.js.map +0 -1
- package/dist/path-resolver.d.ts.map +0 -1
- package/dist/path-resolver.js.map +0 -1
- package/dist/server.d.ts.map +0 -1
- package/dist/server.js.map +0 -1
- package/dist/tool-definitions.d.ts.map +0 -1
- package/dist/tool-definitions.js +0 -464
- package/dist/tool-definitions.js.map +0 -1
- package/dist/types.d.ts.map +0 -1
- package/dist/types.js.map +0 -1
- package/dist/utils.d.ts.map +0 -1
- package/dist/utils.js.map +0 -1
- package/src/base-client.ts +0 -95
- package/src/config.ts +0 -58
- package/src/constants.ts +0 -57
- package/src/ocapi-client.ts +0 -482
- package/src/tool-definitions.ts +0 -467
- /package/dist/{oauth-token.js → clients/base/oauth-token.js} +0 -0
- /package/dist/{types.js → types/types.js} +0 -0
- /package/dist/{cache.d.ts → utils/cache.d.ts} +0 -0
- /package/dist/{cache.js → utils/cache.js} +0 -0
- /package/dist/{utils.d.ts → utils/utils.d.ts} +0 -0
- /package/dist/{utils.js → utils/utils.js} +0 -0
- /package/src/{cache.ts → utils/cache.ts} +0 -0
- /package/src/{utils.ts → utils/utils.ts} +0 -0
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
name: 🐛 Bug Report
|
|
2
|
+
description: Report a bug or unexpected behavior in the SFCC Development MCP Server
|
|
3
|
+
title: "[Bug]: "
|
|
4
|
+
labels: ["bug", "needs-triage"]
|
|
5
|
+
assignees: []
|
|
6
|
+
body:
|
|
7
|
+
- type: markdown
|
|
8
|
+
attributes:
|
|
9
|
+
value: |
|
|
10
|
+
Thanks for taking the time to report a bug! Please fill out the information below to help us investigate and fix the issue.
|
|
11
|
+
|
|
12
|
+
- type: checkboxes
|
|
13
|
+
id: terms
|
|
14
|
+
attributes:
|
|
15
|
+
label: Pre-flight Checklist
|
|
16
|
+
description: Please confirm you have completed these steps before submitting the bug report.
|
|
17
|
+
options:
|
|
18
|
+
- label: I have searched existing issues to ensure this bug hasn't been reported already
|
|
19
|
+
required: true
|
|
20
|
+
- label: I have read the documentation and troubleshooting guide
|
|
21
|
+
required: true
|
|
22
|
+
- label: I am using a supported Node.js version (18+)
|
|
23
|
+
required: true
|
|
24
|
+
|
|
25
|
+
- type: dropdown
|
|
26
|
+
id: operating-mode
|
|
27
|
+
attributes:
|
|
28
|
+
label: Operating Mode
|
|
29
|
+
description: Which mode were you using when the bug occurred?
|
|
30
|
+
options:
|
|
31
|
+
- Documentation-only mode
|
|
32
|
+
- Full mode (with SFCC credentials)
|
|
33
|
+
- Not sure
|
|
34
|
+
validations:
|
|
35
|
+
required: true
|
|
36
|
+
|
|
37
|
+
- type: textarea
|
|
38
|
+
id: bug-description
|
|
39
|
+
attributes:
|
|
40
|
+
label: Bug Description
|
|
41
|
+
description: A clear and concise description of what the bug is.
|
|
42
|
+
placeholder: Describe what happened and what you expected to happen instead.
|
|
43
|
+
validations:
|
|
44
|
+
required: true
|
|
45
|
+
|
|
46
|
+
- type: textarea
|
|
47
|
+
id: reproduction-steps
|
|
48
|
+
attributes:
|
|
49
|
+
label: Steps to Reproduce
|
|
50
|
+
description: Detailed steps to reproduce the behavior.
|
|
51
|
+
placeholder: |
|
|
52
|
+
1. Start the MCP server with...
|
|
53
|
+
2. Call the tool...
|
|
54
|
+
3. Observe the error...
|
|
55
|
+
validations:
|
|
56
|
+
required: true
|
|
57
|
+
|
|
58
|
+
- type: textarea
|
|
59
|
+
id: expected-behavior
|
|
60
|
+
attributes:
|
|
61
|
+
label: Expected Behavior
|
|
62
|
+
description: What you expected to happen.
|
|
63
|
+
validations:
|
|
64
|
+
required: true
|
|
65
|
+
|
|
66
|
+
- type: textarea
|
|
67
|
+
id: actual-behavior
|
|
68
|
+
attributes:
|
|
69
|
+
label: Actual Behavior
|
|
70
|
+
description: What actually happened, including any error messages.
|
|
71
|
+
validations:
|
|
72
|
+
required: true
|
|
73
|
+
|
|
74
|
+
- type: textarea
|
|
75
|
+
id: environment
|
|
76
|
+
attributes:
|
|
77
|
+
label: Environment Information
|
|
78
|
+
description: Information about your environment
|
|
79
|
+
value: |
|
|
80
|
+
- OS: [e.g., macOS 14.1, Windows 11, Ubuntu 22.04]
|
|
81
|
+
- Node.js version: [run `node --version`]
|
|
82
|
+
- NPM/Yarn version: [run `npm --version` or `yarn --version`]
|
|
83
|
+
- SFCC Dev MCP version: [check package.json version]
|
|
84
|
+
- MCP Client: [e.g., Claude Desktop, Custom implementation]
|
|
85
|
+
validations:
|
|
86
|
+
required: true
|
|
87
|
+
|
|
88
|
+
- type: textarea
|
|
89
|
+
id: logs
|
|
90
|
+
attributes:
|
|
91
|
+
label: Relevant Logs
|
|
92
|
+
description: Any relevant log output or error messages
|
|
93
|
+
render: shell
|
|
94
|
+
placeholder: Paste any relevant logs here (please remove any sensitive information like credentials)
|
|
95
|
+
|
|
96
|
+
- type: textarea
|
|
97
|
+
id: configuration
|
|
98
|
+
attributes:
|
|
99
|
+
label: Configuration (Sanitized)
|
|
100
|
+
description: Your configuration (with sensitive information removed)
|
|
101
|
+
render: json
|
|
102
|
+
placeholder: |
|
|
103
|
+
{
|
|
104
|
+
"hostname": "your-instance.demandware.net",
|
|
105
|
+
"clientId": "[REDACTED]",
|
|
106
|
+
"version": "v21_3"
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
- type: dropdown
|
|
110
|
+
id: affected-tools
|
|
111
|
+
attributes:
|
|
112
|
+
label: Affected Tools
|
|
113
|
+
description: Which MCP tools are affected by this bug?
|
|
114
|
+
multiple: true
|
|
115
|
+
options:
|
|
116
|
+
- SFCC Class Documentation Tools
|
|
117
|
+
- Best Practices Guide Tools
|
|
118
|
+
- Log Analysis Tools
|
|
119
|
+
- System Object Tools
|
|
120
|
+
- Authentication/OAuth
|
|
121
|
+
- Configuration Loading
|
|
122
|
+
- All Tools
|
|
123
|
+
- Not sure
|
|
124
|
+
|
|
125
|
+
- type: textarea
|
|
126
|
+
id: additional-context
|
|
127
|
+
attributes:
|
|
128
|
+
label: Additional Context
|
|
129
|
+
description: Any other context, screenshots, or information that might be helpful.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
blank_issues_enabled: false
|
|
2
|
+
contact_links:
|
|
3
|
+
- name: 📖 Documentation
|
|
4
|
+
url: https://github.com/taurgis/sfcc-dev-mcp/blob/main/README.md
|
|
5
|
+
about: Read the project documentation and setup guide
|
|
6
|
+
- name: 🔒 Security Issues
|
|
7
|
+
url: https://github.com/taurgis/sfcc-dev-mcp/security/advisories/new
|
|
8
|
+
about: Report security vulnerabilities privately
|
|
9
|
+
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
name: 📚 Documentation Issue
|
|
2
|
+
description: Report issues with documentation or suggest documentation improvements
|
|
3
|
+
title: "[Docs]: "
|
|
4
|
+
labels: ["documentation", "needs-triage"]
|
|
5
|
+
assignees: []
|
|
6
|
+
body:
|
|
7
|
+
- type: markdown
|
|
8
|
+
attributes:
|
|
9
|
+
value: |
|
|
10
|
+
Thanks for helping improve our documentation! Please provide details about the documentation issue or improvement.
|
|
11
|
+
|
|
12
|
+
- type: dropdown
|
|
13
|
+
id: doc-type
|
|
14
|
+
attributes:
|
|
15
|
+
label: Documentation Type
|
|
16
|
+
description: What type of documentation is this about?
|
|
17
|
+
options:
|
|
18
|
+
- README.md
|
|
19
|
+
- API Documentation (docs/ folder)
|
|
20
|
+
- Best Practices Guides
|
|
21
|
+
- Code Comments/JSDoc
|
|
22
|
+
- Setup/Installation Instructions
|
|
23
|
+
- Configuration Guide
|
|
24
|
+
- Troubleshooting Guide
|
|
25
|
+
- Contributing Guidelines
|
|
26
|
+
- GitHub Templates
|
|
27
|
+
- Other
|
|
28
|
+
validations:
|
|
29
|
+
required: true
|
|
30
|
+
|
|
31
|
+
- type: dropdown
|
|
32
|
+
id: issue-type
|
|
33
|
+
attributes:
|
|
34
|
+
label: Issue Type
|
|
35
|
+
description: What kind of documentation issue is this?
|
|
36
|
+
options:
|
|
37
|
+
- Missing documentation
|
|
38
|
+
- Incorrect/outdated information
|
|
39
|
+
- Unclear or confusing content
|
|
40
|
+
- Broken links or references
|
|
41
|
+
- Formatting issues
|
|
42
|
+
- Grammar/spelling errors
|
|
43
|
+
- Missing examples
|
|
44
|
+
- Inconsistent information
|
|
45
|
+
- Accessibility issues
|
|
46
|
+
- Other
|
|
47
|
+
validations:
|
|
48
|
+
required: true
|
|
49
|
+
|
|
50
|
+
- type: textarea
|
|
51
|
+
id: location
|
|
52
|
+
attributes:
|
|
53
|
+
label: Location
|
|
54
|
+
description: Where is the documentation issue located?
|
|
55
|
+
placeholder: |
|
|
56
|
+
- File path: docs/best-practices/cartridge_creation.md
|
|
57
|
+
- Section: "Setting up Authentication"
|
|
58
|
+
- Line number: 45
|
|
59
|
+
- URL: (if applicable)
|
|
60
|
+
validations:
|
|
61
|
+
required: true
|
|
62
|
+
|
|
63
|
+
- type: textarea
|
|
64
|
+
id: current-content
|
|
65
|
+
attributes:
|
|
66
|
+
label: Current Content (if applicable)
|
|
67
|
+
description: Quote or describe the current problematic content
|
|
68
|
+
render: markdown
|
|
69
|
+
|
|
70
|
+
- type: textarea
|
|
71
|
+
id: issue-description
|
|
72
|
+
attributes:
|
|
73
|
+
label: Issue Description
|
|
74
|
+
description: Clearly describe what's wrong or what's missing
|
|
75
|
+
placeholder: Explain what makes the current documentation problematic or what information is missing...
|
|
76
|
+
validations:
|
|
77
|
+
required: true
|
|
78
|
+
|
|
79
|
+
- type: textarea
|
|
80
|
+
id: suggested-improvement
|
|
81
|
+
attributes:
|
|
82
|
+
label: Suggested Improvement
|
|
83
|
+
description: How should this be fixed or what should be added?
|
|
84
|
+
placeholder: Provide your suggestion for improving the documentation...
|
|
85
|
+
validations:
|
|
86
|
+
required: true
|
|
87
|
+
|
|
88
|
+
- type: textarea
|
|
89
|
+
id: user-impact
|
|
90
|
+
attributes:
|
|
91
|
+
label: User Impact
|
|
92
|
+
description: How does this documentation issue affect users?
|
|
93
|
+
placeholder: |
|
|
94
|
+
- Makes it difficult to get started
|
|
95
|
+
- Causes confusion during setup
|
|
96
|
+
- Leads to incorrect implementation
|
|
97
|
+
- Wastes developer time...
|
|
98
|
+
|
|
99
|
+
- type: dropdown
|
|
100
|
+
id: audience
|
|
101
|
+
attributes:
|
|
102
|
+
label: Target Audience
|
|
103
|
+
description: Who is primarily affected by this documentation issue?
|
|
104
|
+
multiple: true
|
|
105
|
+
options:
|
|
106
|
+
- New users/first-time setup
|
|
107
|
+
- SFCC developers
|
|
108
|
+
- MCP server developers
|
|
109
|
+
- Contributors
|
|
110
|
+
- All users
|
|
111
|
+
- Advanced users only
|
|
112
|
+
|
|
113
|
+
- type: textarea
|
|
114
|
+
id: additional-context
|
|
115
|
+
attributes:
|
|
116
|
+
label: Additional Context
|
|
117
|
+
description: Any additional context, examples, or references that would help improve the documentation
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
name: ✨ Feature Request
|
|
2
|
+
description: Suggest a new feature or enhancement for the SFCC Development MCP Server
|
|
3
|
+
title: "[Feature]: "
|
|
4
|
+
labels: ["enhancement", "needs-triage"]
|
|
5
|
+
assignees: []
|
|
6
|
+
body:
|
|
7
|
+
- type: markdown
|
|
8
|
+
attributes:
|
|
9
|
+
value: |
|
|
10
|
+
Thanks for suggesting a new feature! Please provide detailed information to help us understand and evaluate your request.
|
|
11
|
+
|
|
12
|
+
- type: checkboxes
|
|
13
|
+
id: terms
|
|
14
|
+
attributes:
|
|
15
|
+
label: Pre-submission Checklist
|
|
16
|
+
description: Please confirm you have completed these steps before submitting the feature request.
|
|
17
|
+
options:
|
|
18
|
+
- label: I have searched existing issues and discussions to ensure this feature hasn't been requested already
|
|
19
|
+
required: true
|
|
20
|
+
- label: I have reviewed the roadmap and documentation to confirm this feature doesn't already exist
|
|
21
|
+
required: true
|
|
22
|
+
- label: This feature aligns with the project's goals of improving SFCC development workflows
|
|
23
|
+
required: true
|
|
24
|
+
|
|
25
|
+
- type: dropdown
|
|
26
|
+
id: feature-category
|
|
27
|
+
attributes:
|
|
28
|
+
label: Feature Category
|
|
29
|
+
description: Which category does this feature request fall into?
|
|
30
|
+
options:
|
|
31
|
+
- New MCP Tool
|
|
32
|
+
- SFCC API Integration Enhancement
|
|
33
|
+
- Documentation/Best Practices
|
|
34
|
+
- Authentication/Security
|
|
35
|
+
- Performance/Caching
|
|
36
|
+
- Configuration/Setup
|
|
37
|
+
- Developer Experience
|
|
38
|
+
- Testing/Quality Assurance
|
|
39
|
+
- Other
|
|
40
|
+
validations:
|
|
41
|
+
required: true
|
|
42
|
+
|
|
43
|
+
- type: textarea
|
|
44
|
+
id: problem-statement
|
|
45
|
+
attributes:
|
|
46
|
+
label: Problem Statement
|
|
47
|
+
description: What problem does this feature solve? What pain point are you experiencing?
|
|
48
|
+
placeholder: Describe the current limitation or challenge you're facing in SFCC development...
|
|
49
|
+
validations:
|
|
50
|
+
required: true
|
|
51
|
+
|
|
52
|
+
- type: textarea
|
|
53
|
+
id: proposed-solution
|
|
54
|
+
attributes:
|
|
55
|
+
label: Proposed Solution
|
|
56
|
+
description: Describe your ideal solution to this problem.
|
|
57
|
+
placeholder: Explain how you envision this feature working...
|
|
58
|
+
validations:
|
|
59
|
+
required: true
|
|
60
|
+
|
|
61
|
+
- type: textarea
|
|
62
|
+
id: use-cases
|
|
63
|
+
attributes:
|
|
64
|
+
label: Use Cases
|
|
65
|
+
description: Provide specific examples of how this feature would be used.
|
|
66
|
+
placeholder: |
|
|
67
|
+
1. As a developer, I want to... so that...
|
|
68
|
+
2. When working on cartridge development, I need to...
|
|
69
|
+
3. During debugging sessions, it would help if...
|
|
70
|
+
validations:
|
|
71
|
+
required: true
|
|
72
|
+
|
|
73
|
+
- type: dropdown
|
|
74
|
+
id: target-mode
|
|
75
|
+
attributes:
|
|
76
|
+
label: Target Operating Mode
|
|
77
|
+
description: Which operating mode should this feature support?
|
|
78
|
+
multiple: true
|
|
79
|
+
options:
|
|
80
|
+
- Documentation-only mode
|
|
81
|
+
- Full mode (with SFCC credentials)
|
|
82
|
+
- Both modes
|
|
83
|
+
- New mode (please specify in additional context)
|
|
84
|
+
validations:
|
|
85
|
+
required: true
|
|
86
|
+
|
|
87
|
+
- type: dropdown
|
|
88
|
+
id: priority
|
|
89
|
+
attributes:
|
|
90
|
+
label: Priority Level
|
|
91
|
+
description: How would you rate the priority of this feature?
|
|
92
|
+
options:
|
|
93
|
+
- Critical - Blocking my work
|
|
94
|
+
- High - Would significantly improve my workflow
|
|
95
|
+
- Medium - Nice to have improvement
|
|
96
|
+
- Low - Minor enhancement
|
|
97
|
+
validations:
|
|
98
|
+
required: true
|
|
99
|
+
|
|
100
|
+
- type: textarea
|
|
101
|
+
id: alternatives
|
|
102
|
+
attributes:
|
|
103
|
+
label: Alternative Solutions
|
|
104
|
+
description: Have you considered any alternative approaches or workarounds?
|
|
105
|
+
placeholder: Describe any workarounds you're currently using or other solutions you've considered...
|
|
106
|
+
|
|
107
|
+
- type: textarea
|
|
108
|
+
id: implementation-ideas
|
|
109
|
+
attributes:
|
|
110
|
+
label: Implementation Ideas (Optional)
|
|
111
|
+
description: If you have ideas about how this could be implemented, please share them.
|
|
112
|
+
placeholder: |
|
|
113
|
+
- Could be implemented as a new tool in the clients/ directory
|
|
114
|
+
- Might require changes to the authentication flow
|
|
115
|
+
- Would need new SFCC API endpoints...
|
|
116
|
+
|
|
117
|
+
- type: dropdown
|
|
118
|
+
id: sfcc-apis
|
|
119
|
+
attributes:
|
|
120
|
+
label: SFCC APIs Involved
|
|
121
|
+
description: Which SFCC APIs would this feature likely interact with?
|
|
122
|
+
multiple: true
|
|
123
|
+
options:
|
|
124
|
+
- OCAPI (Open Commerce API)
|
|
125
|
+
- SCAPI (Shopper API)
|
|
126
|
+
- WebDAV
|
|
127
|
+
- SFCC Logs
|
|
128
|
+
- System Object Definitions
|
|
129
|
+
- Site Preferences
|
|
130
|
+
- Custom Objects
|
|
131
|
+
- Not sure
|
|
132
|
+
- Not applicable
|
|
133
|
+
|
|
134
|
+
- type: textarea
|
|
135
|
+
id: additional-context
|
|
136
|
+
attributes:
|
|
137
|
+
label: Additional Context
|
|
138
|
+
description: Any other context, mockups, examples, or references that would help understand this feature request.
|
|
139
|
+
|
|
140
|
+
- type: checkboxes
|
|
141
|
+
id: contribution
|
|
142
|
+
attributes:
|
|
143
|
+
label: Contribution Intent
|
|
144
|
+
description: Are you interested in contributing to this feature?
|
|
145
|
+
options:
|
|
146
|
+
- label: I'm willing to help implement this feature
|
|
147
|
+
required: false
|
|
148
|
+
- label: I can help with testing and validation
|
|
149
|
+
required: false
|
|
150
|
+
- label: I can provide domain expertise or consultation
|
|
151
|
+
required: false
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
name: ❓ Question/Help
|
|
2
|
+
description: Ask a question or get help with using the SFCC Development MCP Server
|
|
3
|
+
title: "[Question]: "
|
|
4
|
+
labels: ["question", "needs-triage"]
|
|
5
|
+
assignees: []
|
|
6
|
+
body:
|
|
7
|
+
- type: markdown
|
|
8
|
+
attributes:
|
|
9
|
+
value: |
|
|
10
|
+
Need help or have a question? We're here to help! Please provide as much detail as possible so we can assist you effectively.
|
|
11
|
+
|
|
12
|
+
- type: checkboxes
|
|
13
|
+
id: terms
|
|
14
|
+
attributes:
|
|
15
|
+
label: Pre-submission Checklist
|
|
16
|
+
description: Please confirm you have completed these steps before asking your question.
|
|
17
|
+
options:
|
|
18
|
+
- label: I have searched existing issues and discussions for similar questions
|
|
19
|
+
required: true
|
|
20
|
+
- label: I have read the README.md and relevant documentation
|
|
21
|
+
required: true
|
|
22
|
+
- label: I have checked the troubleshooting section (if applicable)
|
|
23
|
+
required: true
|
|
24
|
+
|
|
25
|
+
- type: dropdown
|
|
26
|
+
id: question-category
|
|
27
|
+
attributes:
|
|
28
|
+
label: Question Category
|
|
29
|
+
description: What category does your question fall into?
|
|
30
|
+
options:
|
|
31
|
+
- Installation and Setup
|
|
32
|
+
- Configuration and Authentication
|
|
33
|
+
- Using MCP Tools
|
|
34
|
+
- SFCC Integration
|
|
35
|
+
- Troubleshooting
|
|
36
|
+
- Best Practices
|
|
37
|
+
- Performance
|
|
38
|
+
- Security
|
|
39
|
+
- Development/Contributing
|
|
40
|
+
- Other
|
|
41
|
+
validations:
|
|
42
|
+
required: true
|
|
43
|
+
|
|
44
|
+
- type: textarea
|
|
45
|
+
id: question
|
|
46
|
+
attributes:
|
|
47
|
+
label: Your Question
|
|
48
|
+
description: What would you like to know?
|
|
49
|
+
placeholder: Please ask your question clearly and provide context...
|
|
50
|
+
validations:
|
|
51
|
+
required: true
|
|
52
|
+
|
|
53
|
+
- type: textarea
|
|
54
|
+
id: context
|
|
55
|
+
attributes:
|
|
56
|
+
label: Context and Background
|
|
57
|
+
description: Provide relevant context about what you're trying to accomplish
|
|
58
|
+
placeholder: |
|
|
59
|
+
- What are you trying to achieve?
|
|
60
|
+
- What's your current setup?
|
|
61
|
+
- What have you tried so far?
|
|
62
|
+
|
|
63
|
+
- type: textarea
|
|
64
|
+
id: current-setup
|
|
65
|
+
attributes:
|
|
66
|
+
label: Current Setup
|
|
67
|
+
description: Describe your current configuration and environment
|
|
68
|
+
value: |
|
|
69
|
+
- OS: [e.g., macOS 14.1, Windows 11, Ubuntu 22.04]
|
|
70
|
+
- Node.js version: [run `node --version`]
|
|
71
|
+
- SFCC Dev MCP version: [check package.json version]
|
|
72
|
+
- Operating mode: [Documentation-only or Full mode]
|
|
73
|
+
- MCP Client: [e.g., Claude Desktop, Custom implementation]
|
|
74
|
+
|
|
75
|
+
- type: textarea
|
|
76
|
+
id: attempted-solutions
|
|
77
|
+
attributes:
|
|
78
|
+
label: What Have You Tried?
|
|
79
|
+
description: What steps have you already taken to solve this?
|
|
80
|
+
placeholder: |
|
|
81
|
+
1. I tried...
|
|
82
|
+
2. I looked at...
|
|
83
|
+
3. I configured...
|
|
84
|
+
|
|
85
|
+
- type: textarea
|
|
86
|
+
id: expected-outcome
|
|
87
|
+
attributes:
|
|
88
|
+
label: Expected Outcome
|
|
89
|
+
description: What do you expect or hope to happen?
|
|
90
|
+
|
|
91
|
+
- type: textarea
|
|
92
|
+
id: relevant-logs
|
|
93
|
+
attributes:
|
|
94
|
+
label: Relevant Logs or Error Messages
|
|
95
|
+
description: Include any relevant logs or error messages (remove sensitive information)
|
|
96
|
+
render: shell
|
|
97
|
+
|
|
98
|
+
- type: textarea
|
|
99
|
+
id: additional-info
|
|
100
|
+
attributes:
|
|
101
|
+
label: Additional Information
|
|
102
|
+
description: Any other information that might be helpful
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
## 🐛 Bug Fix
|
|
2
|
+
|
|
3
|
+
### Bug Summary
|
|
4
|
+
<!-- Brief description of the bug being fixed -->
|
|
5
|
+
|
|
6
|
+
### Root Cause Analysis
|
|
7
|
+
<!-- Explain what caused the bug -->
|
|
8
|
+
|
|
9
|
+
### Solution Approach
|
|
10
|
+
<!-- Describe how the fix addresses the root cause -->
|
|
11
|
+
|
|
12
|
+
### Changes Made
|
|
13
|
+
- [ ] Code changes in specific files
|
|
14
|
+
- [ ] Configuration updates
|
|
15
|
+
- [ ] Dependency updates
|
|
16
|
+
- [ ] Test additions/modifications
|
|
17
|
+
|
|
18
|
+
### Files Modified
|
|
19
|
+
<!-- List the main files changed -->
|
|
20
|
+
-
|
|
21
|
+
-
|
|
22
|
+
-
|
|
23
|
+
|
|
24
|
+
### Testing Strategy
|
|
25
|
+
- [ ] Regression tests added to prevent reoccurrence
|
|
26
|
+
- [ ] Existing tests updated if needed
|
|
27
|
+
- [ ] Manual testing performed
|
|
28
|
+
- [ ] Edge cases validated
|
|
29
|
+
- [ ] Both operating modes tested (if applicable)
|
|
30
|
+
|
|
31
|
+
### Backward Compatibility
|
|
32
|
+
- [ ] No breaking changes
|
|
33
|
+
- [ ] Breaking changes documented and justified
|
|
34
|
+
- [ ] Migration guide provided (if breaking)
|
|
35
|
+
|
|
36
|
+
### Risk Assessment
|
|
37
|
+
- [ ] Low risk - isolated change
|
|
38
|
+
- [ ] Medium risk - affects multiple components
|
|
39
|
+
- [ ] High risk - core functionality changes
|
|
40
|
+
|
|
41
|
+
### Verification Steps
|
|
42
|
+
<!-- How to verify the fix works -->
|
|
43
|
+
1.
|
|
44
|
+
2.
|
|
45
|
+
3.
|
|
46
|
+
|
|
47
|
+
### Performance Impact
|
|
48
|
+
- [ ] No performance impact
|
|
49
|
+
- [ ] Performance improvement
|
|
50
|
+
- [ ] Minimal performance impact (acceptable)
|
|
51
|
+
|
|
52
|
+
### Related Issues
|
|
53
|
+
Fixes #
|
|
54
|
+
|
|
55
|
+
### Additional Notes
|
|
56
|
+
<!-- Any other relevant information -->
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
**This PR resolves a bug while maintaining system stability and backward compatibility.**
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
## 📚 Documentation Update
|
|
2
|
+
|
|
3
|
+
### Documentation Type
|
|
4
|
+
- [ ] README.md updates
|
|
5
|
+
- [ ] copilot-instructions.md updates
|
|
6
|
+
- [ ] API documentation (docs/ folder)
|
|
7
|
+
- [ ] Best practices guides
|
|
8
|
+
- [ ] Code comments/JSDoc
|
|
9
|
+
- [ ] Configuration examples
|
|
10
|
+
- [ ] Troubleshooting guide
|
|
11
|
+
|
|
12
|
+
### Changes Made
|
|
13
|
+
<!-- Describe what documentation was updated and why -->
|
|
14
|
+
|
|
15
|
+
### Content Updates
|
|
16
|
+
- [ ] New sections added
|
|
17
|
+
- [ ] Existing content revised for accuracy
|
|
18
|
+
- [ ] Broken links fixed
|
|
19
|
+
- [ ] Examples updated/added
|
|
20
|
+
- [ ] Structure/organization improved
|
|
21
|
+
- [ ] Grammar/spelling corrections
|
|
22
|
+
- [ ] Accessibility improvements
|
|
23
|
+
|
|
24
|
+
### Consistency Checks
|
|
25
|
+
- [ ] README.md and copilot-instructions.md kept in sync
|
|
26
|
+
- [ ] Tool counts accurate in both files
|
|
27
|
+
- [ ] File structure diagrams updated
|
|
28
|
+
- [ ] Version numbers consistent
|
|
29
|
+
- [ ] Links and references validated
|
|
30
|
+
|
|
31
|
+
### Target Audience
|
|
32
|
+
- [ ] New users/first-time setup
|
|
33
|
+
- [ ] SFCC developers using the MCP server
|
|
34
|
+
- [ ] Contributors and maintainers
|
|
35
|
+
- [ ] Advanced users and integrators
|
|
36
|
+
|
|
37
|
+
### Validation
|
|
38
|
+
- [ ] Markdown syntax validated
|
|
39
|
+
- [ ] Links tested and functional
|
|
40
|
+
- [ ] Code examples tested
|
|
41
|
+
- [ ] Configuration examples verified
|
|
42
|
+
- [ ] Screenshots/diagrams current
|
|
43
|
+
|
|
44
|
+
### Related Issues
|
|
45
|
+
Closes #
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
**This PR improves project documentation to enhance user experience and maintainability.**
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
## 🔧 New MCP Tool Implementation
|
|
2
|
+
|
|
3
|
+
### Tool Overview
|
|
4
|
+
**Tool Name:** `mcp_sfcc-dev_[tool_name]`
|
|
5
|
+
**Category:** <!-- SFCC Documentation / Best Practices / Log Analysis / System Objects -->
|
|
6
|
+
**Description:**
|
|
7
|
+
|
|
8
|
+
### Implementation Details
|
|
9
|
+
- **Client Modified/Created:**
|
|
10
|
+
- **New Dependencies:**
|
|
11
|
+
- **SFCC APIs Used:**
|
|
12
|
+
|
|
13
|
+
### Tool Schema
|
|
14
|
+
```typescript
|
|
15
|
+
// Tool definition schema
|
|
16
|
+
{
|
|
17
|
+
name: "mcp_sfcc-dev_[tool_name]",
|
|
18
|
+
description: "",
|
|
19
|
+
inputSchema: {
|
|
20
|
+
// Schema details
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Testing Performed
|
|
26
|
+
- [ ] Unit tests for tool handler
|
|
27
|
+
- [ ] Integration tests with mock SFCC responses
|
|
28
|
+
- [ ] Manual testing in documentation-only mode
|
|
29
|
+
- [ ] Manual testing in full mode (if applicable)
|
|
30
|
+
- [ ] Error handling validation
|
|
31
|
+
- [ ] Parameter validation testing
|
|
32
|
+
|
|
33
|
+
### Documentation Updates
|
|
34
|
+
- [ ] Tool added to copilot-instructions.md tool categories
|
|
35
|
+
- [ ] README.md feature list updated
|
|
36
|
+
- [ ] Tool count updated in both documentation files
|
|
37
|
+
- [ ] JSDoc comments added to implementation
|
|
38
|
+
- [ ] Usage examples provided
|
|
39
|
+
|
|
40
|
+
### Security Considerations
|
|
41
|
+
- [ ] Input validation implemented
|
|
42
|
+
- [ ] No sensitive data logged
|
|
43
|
+
- [ ] Proper error handling without data leaks
|
|
44
|
+
- [ ] Authentication requirements verified
|
|
45
|
+
|
|
46
|
+
### Performance Notes
|
|
47
|
+
- [ ] Caching strategy implemented (if applicable)
|
|
48
|
+
- [ ] Resource usage reasonable for single-developer workload
|
|
49
|
+
- [ ] No blocking operations without proper async handling
|
|
50
|
+
|
|
51
|
+
### Related Issues
|
|
52
|
+
Closes #
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
**This PR adds a new MCP tool following the project's architecture patterns and security guidelines.**
|