@recapt/mcp 0.0.45 → 0.0.47
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/dist/index.js +1254 -1187
- package/dist/tools/catalog/anthropicToolCatalog.json +50 -4
- package/dist/tools/catalog/toolCatalog.json +1193 -765
- package/package.json +2 -3
- package/skills/self-improvement.md +254 -75
|
@@ -689,12 +689,12 @@
|
|
|
689
689
|
},
|
|
690
690
|
{
|
|
691
691
|
"name": "list_remediations_by_status",
|
|
692
|
-
"description": "List remediations filtered by one or more statuses. Use to find
|
|
692
|
+
"description": "List remediations filtered by one or more statuses. Use to find 'pending' fixes with open PRs or 'deployed' fixes ready for evaluation. To find remediations awaiting PR merge, query for 'pending' status and check prUrl field.",
|
|
693
693
|
"input_schema": {
|
|
694
694
|
"type": "object",
|
|
695
695
|
"properties": {
|
|
696
696
|
"statuses": {
|
|
697
|
-
"description": "List of statuses to filter by (e.g. ['
|
|
697
|
+
"description": "List of statuses to filter by (e.g. ['pending', 'deployed'])",
|
|
698
698
|
"type": "array",
|
|
699
699
|
"items": {
|
|
700
700
|
"type": "string"
|
|
@@ -728,7 +728,7 @@
|
|
|
728
728
|
},
|
|
729
729
|
{
|
|
730
730
|
"name": "update_remediation_status",
|
|
731
|
-
"description": "Update the status of a remediation record. Use to mark as '
|
|
731
|
+
"description": "Update the status of a remediation record. Use to mark as 'deployed' (PR merged) or 'dismissed' (PR closed without merge). Remediations with open PRs stay in 'pending' status - use PR fields to track PR state.",
|
|
732
732
|
"input_schema": {
|
|
733
733
|
"type": "object",
|
|
734
734
|
"properties": {
|
|
@@ -737,7 +737,7 @@
|
|
|
737
737
|
"type": "string"
|
|
738
738
|
},
|
|
739
739
|
"status": {
|
|
740
|
-
"description": "New status:
|
|
740
|
+
"description": "New status: deployed or dismissed",
|
|
741
741
|
"type": "string"
|
|
742
742
|
},
|
|
743
743
|
"pr_url": {
|
|
@@ -763,6 +763,52 @@
|
|
|
763
763
|
]
|
|
764
764
|
}
|
|
765
765
|
},
|
|
766
|
+
{
|
|
767
|
+
"name": "update_remediation",
|
|
768
|
+
"description": "Update an existing remediation with new information. Use to add code changes, update the proposed fix, or modify other fields. This is the primary tool for adding code changes to an existing remediation/proposal.",
|
|
769
|
+
"input_schema": {
|
|
770
|
+
"type": "object",
|
|
771
|
+
"properties": {
|
|
772
|
+
"remediation_id": {
|
|
773
|
+
"description": "The ID of the remediation to update",
|
|
774
|
+
"type": "string"
|
|
775
|
+
},
|
|
776
|
+
"proposed_fix": {
|
|
777
|
+
"description": "Updated description of the proposed fix",
|
|
778
|
+
"type": "string"
|
|
779
|
+
},
|
|
780
|
+
"code_snippet": {
|
|
781
|
+
"description": "Updated code snippet (if applicable)",
|
|
782
|
+
"type": "string"
|
|
783
|
+
},
|
|
784
|
+
"affected_files": {
|
|
785
|
+
"description": "Updated list of files that need to be modified",
|
|
786
|
+
"type": "array",
|
|
787
|
+
"items": {
|
|
788
|
+
"type": "string"
|
|
789
|
+
}
|
|
790
|
+
},
|
|
791
|
+
"code_changes": {
|
|
792
|
+
"description": "Detailed code changes with file contents. Each item: { file: string, content?: string, diff?: string, description?: string }",
|
|
793
|
+
"type": "array",
|
|
794
|
+
"items": {
|
|
795
|
+
"type": "string"
|
|
796
|
+
}
|
|
797
|
+
},
|
|
798
|
+
"confidence": {
|
|
799
|
+
"description": "Updated confidence level in the fix (0-1)",
|
|
800
|
+
"type": "number"
|
|
801
|
+
},
|
|
802
|
+
"title": {
|
|
803
|
+
"description": "Updated user-friendly title",
|
|
804
|
+
"type": "string"
|
|
805
|
+
}
|
|
806
|
+
},
|
|
807
|
+
"required": [
|
|
808
|
+
"remediation_id"
|
|
809
|
+
]
|
|
810
|
+
}
|
|
811
|
+
},
|
|
766
812
|
{
|
|
767
813
|
"name": "evaluate_fix",
|
|
768
814
|
"description": "Evaluate if a deployed fix improved metrics. Compares post-deployment metrics to baseline.",
|