@langadventurellc/task-trellis-mcp 1.1.0 → 1.2.1
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/README.md +37 -323
- package/dist/__tests__/e2e/autoPrune.e2e.test.d.ts +2 -0
- package/dist/__tests__/e2e/autoPrune.e2e.test.d.ts.map +1 -0
- package/dist/__tests__/e2e/autoPrune.e2e.test.js +533 -0
- package/dist/__tests__/e2e/autoPrune.e2e.test.js.map +1 -0
- package/dist/__tests__/e2e/configuration/activation.e2e.test.js +6 -6
- package/dist/__tests__/e2e/configuration/activation.e2e.test.js.map +1 -1
- package/dist/__tests__/e2e/configuration/commandLineArgs.e2e.test.js +55 -6
- package/dist/__tests__/e2e/configuration/commandLineArgs.e2e.test.js.map +1 -1
- package/dist/__tests__/e2e/configuration/directorySetup.e2e.test.js +19 -19
- package/dist/__tests__/e2e/configuration/directorySetup.e2e.test.js.map +1 -1
- package/dist/__tests__/e2e/configuration/invalidConfig.e2e.test.js +9 -9
- package/dist/__tests__/e2e/configuration/invalidConfig.e2e.test.js.map +1 -1
- package/dist/__tests__/e2e/configuration/preActivation.e2e.test.js +15 -15
- package/dist/__tests__/e2e/configuration/preActivation.e2e.test.js.map +1 -1
- package/dist/__tests__/e2e/crud/createObject.e2e.test.js +34 -34
- package/dist/__tests__/e2e/crud/createObject.e2e.test.js.map +1 -1
- package/dist/__tests__/e2e/crud/deleteObject.e2e.test.js +19 -19
- package/dist/__tests__/e2e/crud/deleteObject.e2e.test.js.map +1 -1
- package/dist/__tests__/e2e/crud/fileValidation.e2e.test.js +32 -32
- package/dist/__tests__/e2e/crud/fileValidation.e2e.test.js.map +1 -1
- package/dist/__tests__/e2e/crud/getObject.e2e.test.js +143 -22
- package/dist/__tests__/e2e/crud/getObject.e2e.test.js.map +1 -1
- package/dist/__tests__/e2e/crud/listObjects.e2e.test.js +561 -42
- package/dist/__tests__/e2e/crud/listObjects.e2e.test.js.map +1 -1
- package/dist/__tests__/e2e/crud/updateObject.e2e.test.js +497 -25
- package/dist/__tests__/e2e/crud/updateObject.e2e.test.js.map +1 -1
- package/dist/__tests__/e2e/hierarchicalPrerequisites.e2e.test.d.ts +2 -0
- package/dist/__tests__/e2e/hierarchicalPrerequisites.e2e.test.d.ts.map +1 -0
- package/dist/__tests__/e2e/hierarchicalPrerequisites.e2e.test.js +319 -0
- package/dist/__tests__/e2e/hierarchicalPrerequisites.e2e.test.js.map +1 -0
- package/dist/__tests__/e2e/infrastructure/client.e2e.test.js +4 -4
- package/dist/__tests__/e2e/infrastructure/client.e2e.test.js.map +1 -1
- package/dist/__tests__/e2e/infrastructure/server.e2e.test.js +6 -6
- package/dist/__tests__/e2e/infrastructure/server.e2e.test.js.map +1 -1
- package/dist/__tests__/e2e/utils/extractObjectIds.d.ts +1 -1
- package/dist/__tests__/e2e/utils/extractObjectIds.js +1 -1
- package/dist/__tests__/e2e/utils/mcpTestClient.d.ts.map +1 -1
- package/dist/__tests__/e2e/utils/mcpTestClient.js +3 -2
- package/dist/__tests__/e2e/utils/mcpTestClient.js.map +1 -1
- package/dist/__tests__/e2e/utils/parseListObjectsResponse.d.ts +1 -1
- package/dist/__tests__/e2e/utils/parseListObjectsResponse.js +1 -1
- package/dist/__tests__/e2e/utils/parseUpdateObjectResponse.d.ts +1 -1
- package/dist/__tests__/e2e/utils/parseUpdateObjectResponse.js +1 -1
- package/dist/__tests__/e2e/workflow/appendLog.e2e.test.js +4 -4
- package/dist/__tests__/e2e/workflow/appendLog.e2e.test.js.map +1 -1
- package/dist/__tests__/e2e/workflow/appendModifiedFiles.e2e.test.js +15 -15
- package/dist/__tests__/e2e/workflow/appendModifiedFiles.e2e.test.js.map +1 -1
- package/dist/__tests__/e2e/workflow/claimTask.e2e.test.js +44 -0
- package/dist/__tests__/e2e/workflow/claimTask.e2e.test.js.map +1 -1
- package/dist/__tests__/e2e/workflow/completeTask.e2e.test.js +4 -4
- package/dist/__tests__/e2e/workflow/completeTask.e2e.test.js.map +1 -1
- package/dist/__tests__/e2e/workflow/prerequisites.e2e.test.js +43 -43
- package/dist/__tests__/e2e/workflow/prerequisites.e2e.test.js.map +1 -1
- package/dist/__tests__/e2e/workflow/taskLifecycle.e2e.test.js +19 -19
- package/dist/__tests__/e2e/workflow/taskLifecycle.e2e.test.js.map +1 -1
- package/dist/__tests__/serverStartup.test.d.ts +2 -0
- package/dist/__tests__/serverStartup.test.d.ts.map +1 -0
- package/dist/__tests__/serverStartup.test.js +171 -0
- package/dist/__tests__/serverStartup.test.js.map +1 -0
- package/dist/configuration/ServerConfig.d.ts +2 -1
- package/dist/configuration/ServerConfig.d.ts.map +1 -1
- package/dist/repositories/Repository.d.ts +2 -1
- package/dist/repositories/Repository.d.ts.map +1 -1
- package/dist/repositories/local/LocalRepository.d.ts +2 -1
- package/dist/repositories/local/LocalRepository.d.ts.map +1 -1
- package/dist/repositories/local/LocalRepository.js +4 -0
- package/dist/repositories/local/LocalRepository.js.map +1 -1
- package/dist/repositories/local/__tests__/getChildrenOf.test.d.ts +2 -0
- package/dist/repositories/local/__tests__/getChildrenOf.test.d.ts.map +1 -0
- package/dist/repositories/local/__tests__/getChildrenOf.test.js +306 -0
- package/dist/repositories/local/__tests__/getChildrenOf.test.js.map +1 -0
- package/dist/repositories/local/__tests__/getObjects.test.js +309 -0
- package/dist/repositories/local/__tests__/getObjects.test.js.map +1 -1
- package/dist/repositories/local/deleteObjectById.d.ts.map +1 -1
- package/dist/repositories/local/deleteObjectById.js +2 -0
- package/dist/repositories/local/deleteObjectById.js.map +1 -1
- package/dist/repositories/local/getChildrenOf.d.ts +11 -0
- package/dist/repositories/local/getChildrenOf.d.ts.map +1 -0
- package/dist/repositories/local/getChildrenOf.js +73 -0
- package/dist/repositories/local/getChildrenOf.js.map +1 -0
- package/dist/repositories/local/getObjects.d.ts +1 -1
- package/dist/repositories/local/getObjects.d.ts.map +1 -1
- package/dist/repositories/local/getObjects.js +25 -6
- package/dist/repositories/local/getObjects.js.map +1 -1
- package/dist/server.js +39 -15
- package/dist/server.js.map +1 -1
- package/dist/services/TaskTrellisService.d.ts +4 -13
- package/dist/services/TaskTrellisService.d.ts.map +1 -1
- package/dist/services/local/LocalTaskTrellisService.d.ts +3 -9
- package/dist/services/local/LocalTaskTrellisService.d.ts.map +1 -1
- package/dist/services/local/LocalTaskTrellisService.js +4 -8
- package/dist/services/local/LocalTaskTrellisService.js.map +1 -1
- package/dist/services/local/__tests__/appendModifiedFiles.test.js +1 -0
- package/dist/services/local/__tests__/appendModifiedFiles.test.js.map +1 -1
- package/dist/services/local/__tests__/appendObjectLog.test.js +1 -0
- package/dist/services/local/__tests__/appendObjectLog.test.js.map +1 -1
- package/dist/services/local/__tests__/claimTask.test.js +127 -131
- package/dist/services/local/__tests__/claimTask.test.js.map +1 -1
- package/dist/services/local/__tests__/completeTask.test.js +30 -28
- package/dist/services/local/__tests__/completeTask.test.js.map +1 -1
- package/dist/services/local/__tests__/createObject.test.js +1 -0
- package/dist/services/local/__tests__/createObject.test.js.map +1 -1
- package/dist/services/local/__tests__/listObjects.test.js +135 -10
- package/dist/services/local/__tests__/listObjects.test.js.map +1 -1
- package/dist/services/local/__tests__/pruneClosed.test.js +446 -186
- package/dist/services/local/__tests__/pruneClosed.test.js.map +1 -1
- package/dist/services/local/__tests__/updateObject.test.js +234 -27
- package/dist/services/local/__tests__/updateObject.test.js.map +1 -1
- package/dist/services/local/claimTask.d.ts.map +1 -1
- package/dist/services/local/claimTask.js +25 -34
- package/dist/services/local/claimTask.js.map +1 -1
- package/dist/services/local/completeTask.d.ts +1 -1
- package/dist/services/local/completeTask.d.ts.map +1 -1
- package/dist/services/local/completeTask.js +4 -40
- package/dist/services/local/completeTask.js.map +1 -1
- package/dist/services/local/listObjects.d.ts +1 -1
- package/dist/services/local/listObjects.d.ts.map +1 -1
- package/dist/services/local/listObjects.js +10 -1
- package/dist/services/local/listObjects.js.map +1 -1
- package/dist/services/local/pruneClosed.d.ts.map +1 -1
- package/dist/services/local/pruneClosed.js +63 -6
- package/dist/services/local/pruneClosed.js.map +1 -1
- package/dist/services/local/updateObject.d.ts +2 -1
- package/dist/services/local/updateObject.d.ts.map +1 -1
- package/dist/services/local/updateObject.js +28 -1
- package/dist/services/local/updateObject.js.map +1 -1
- package/dist/tools/__tests__/appendModifiedFilesTool.test.js +1 -0
- package/dist/tools/__tests__/appendModifiedFilesTool.test.js.map +1 -1
- package/dist/tools/__tests__/appendObjectLogTool.test.js +1 -0
- package/dist/tools/__tests__/appendObjectLogTool.test.js.map +1 -1
- package/dist/tools/__tests__/claimTaskTool.test.js +1 -1
- package/dist/tools/__tests__/claimTaskTool.test.js.map +1 -1
- package/dist/tools/__tests__/completeTaskTool.test.js +23 -16
- package/dist/tools/__tests__/completeTaskTool.test.js.map +1 -1
- package/dist/tools/__tests__/createObjectTool.test.js +1 -0
- package/dist/tools/__tests__/createObjectTool.test.js.map +1 -1
- package/dist/tools/__tests__/deleteObjectTool.test.js +1 -0
- package/dist/tools/__tests__/deleteObjectTool.test.js.map +1 -1
- package/dist/tools/__tests__/getObjectTool.test.js +1 -0
- package/dist/tools/__tests__/getObjectTool.test.js.map +1 -1
- package/dist/tools/__tests__/listObjectsTool.test.js +160 -1
- package/dist/tools/__tests__/listObjectsTool.test.js.map +1 -1
- package/dist/tools/__tests__/updateObjectTool.test.js +39 -10
- package/dist/tools/__tests__/updateObjectTool.test.js.map +1 -1
- package/dist/tools/appendModifiedFilesTool.d.ts +2 -2
- package/dist/tools/appendModifiedFilesTool.js +4 -4
- package/dist/tools/appendModifiedFilesTool.js.map +1 -1
- package/dist/tools/appendObjectLogTool.d.ts +3 -3
- package/dist/tools/appendObjectLogTool.js +4 -4
- package/dist/tools/appendObjectLogTool.js.map +1 -1
- package/dist/tools/completeTaskTool.d.ts +1 -1
- package/dist/tools/completeTaskTool.d.ts.map +1 -1
- package/dist/tools/completeTaskTool.js +1 -1
- package/dist/tools/completeTaskTool.js.map +1 -1
- package/dist/tools/createObjectTool.d.ts +8 -8
- package/dist/tools/createObjectTool.js +13 -13
- package/dist/tools/createObjectTool.js.map +1 -1
- package/dist/tools/deleteObjectTool.d.ts +3 -3
- package/dist/tools/deleteObjectTool.js +12 -12
- package/dist/tools/deleteObjectTool.js.map +1 -1
- package/dist/tools/getObjectTool.d.ts +3 -3
- package/dist/tools/getObjectTool.d.ts.map +1 -1
- package/dist/tools/getObjectTool.js +12 -7
- package/dist/tools/getObjectTool.js.map +1 -1
- package/dist/tools/index.d.ts +7 -9
- package/dist/tools/index.d.ts.map +1 -1
- package/dist/tools/index.js +22 -28
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/listObjectsTool.d.ts +20 -11
- package/dist/tools/listObjectsTool.d.ts.map +1 -1
- package/dist/tools/listObjectsTool.js +112 -40
- package/dist/tools/listObjectsTool.js.map +1 -1
- package/dist/tools/updateObjectTool.d.ts +12 -7
- package/dist/tools/updateObjectTool.d.ts.map +1 -1
- package/dist/tools/updateObjectTool.js +20 -14
- package/dist/tools/updateObjectTool.js.map +1 -1
- package/dist/utils/__tests__/checkHierarchicalPrerequisitesComplete.test.d.ts +2 -0
- package/dist/utils/__tests__/checkHierarchicalPrerequisitesComplete.test.d.ts.map +1 -0
- package/dist/utils/__tests__/checkHierarchicalPrerequisitesComplete.test.js +206 -0
- package/dist/utils/__tests__/checkHierarchicalPrerequisitesComplete.test.js.map +1 -0
- package/dist/utils/__tests__/checkPrerequisitesComplete.test.js +5 -0
- package/dist/utils/__tests__/checkPrerequisitesComplete.test.js.map +1 -1
- package/dist/utils/__tests__/filterUnavailableObjects.test.js +51 -25
- package/dist/utils/__tests__/filterUnavailableObjects.test.js.map +1 -1
- package/dist/utils/__tests__/isRequiredForOtherObjects.test.js +5 -0
- package/dist/utils/__tests__/isRequiredForOtherObjects.test.js.map +1 -1
- package/dist/utils/__tests__/updateParentHierarchy.test.d.ts +2 -0
- package/dist/utils/__tests__/updateParentHierarchy.test.d.ts.map +1 -0
- package/dist/utils/__tests__/updateParentHierarchy.test.js +137 -0
- package/dist/utils/__tests__/updateParentHierarchy.test.js.map +1 -0
- package/dist/utils/autoCompleteParentHierarchy.d.ts +11 -0
- package/dist/utils/autoCompleteParentHierarchy.d.ts.map +1 -0
- package/dist/utils/autoCompleteParentHierarchy.js +49 -0
- package/dist/utils/autoCompleteParentHierarchy.js.map +1 -0
- package/dist/utils/checkHierarchicalPrerequisitesComplete.d.ts +14 -0
- package/dist/utils/checkHierarchicalPrerequisitesComplete.d.ts.map +1 -0
- package/dist/utils/checkHierarchicalPrerequisitesComplete.js +47 -0
- package/dist/utils/checkHierarchicalPrerequisitesComplete.js.map +1 -0
- package/dist/utils/filterUnavailableObjects.d.ts +6 -4
- package/dist/utils/filterUnavailableObjects.d.ts.map +1 -1
- package/dist/utils/filterUnavailableObjects.js +16 -22
- package/dist/utils/filterUnavailableObjects.js.map +1 -1
- package/dist/utils/index.d.ts +3 -2
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/index.js +7 -3
- package/dist/utils/index.js.map +1 -1
- package/dist/utils/updateParentHierarchy.d.ts +11 -0
- package/dist/utils/updateParentHierarchy.d.ts.map +1 -0
- package/dist/utils/updateParentHierarchy.js +40 -0
- package/dist/utils/updateParentHierarchy.js.map +1 -0
- package/dist/validation/__tests__/validateObjectCreation.test.js +1 -0
- package/dist/validation/__tests__/validateObjectCreation.test.js.map +1 -1
- package/dist/validation/__tests__/validateParentExists.test.js +1 -0
- package/dist/validation/__tests__/validateParentExists.test.js.map +1 -1
- package/dist/validation/__tests__/validateStatusTransition.test.js +1 -0
- package/dist/validation/__tests__/validateStatusTransition.test.js.map +1 -1
- package/package.json +1 -1
- package/dist/__tests__/e2e/crud/replaceObjectBodyRegex.e2e.test.d.ts +0 -2
- package/dist/__tests__/e2e/crud/replaceObjectBodyRegex.e2e.test.d.ts.map +0 -1
- package/dist/__tests__/e2e/crud/replaceObjectBodyRegex.e2e.test.js +0 -693
- package/dist/__tests__/e2e/crud/replaceObjectBodyRegex.e2e.test.js.map +0 -1
- package/dist/__tests__/e2e/workflow/pruneClosed.e2e.test.d.ts +0 -2
- package/dist/__tests__/e2e/workflow/pruneClosed.e2e.test.d.ts.map +0 -1
- package/dist/__tests__/e2e/workflow/pruneClosed.e2e.test.js +0 -352
- package/dist/__tests__/e2e/workflow/pruneClosed.e2e.test.js.map +0 -1
- package/dist/services/local/__tests__/replaceObjectBodyRegex.test.d.ts +0 -2
- package/dist/services/local/__tests__/replaceObjectBodyRegex.test.d.ts.map +0 -1
- package/dist/services/local/__tests__/replaceObjectBodyRegex.test.js +0 -283
- package/dist/services/local/__tests__/replaceObjectBodyRegex.test.js.map +0 -1
- package/dist/services/local/replaceObjectBodyRegex.d.ts +0 -8
- package/dist/services/local/replaceObjectBodyRegex.d.ts.map +0 -1
- package/dist/services/local/replaceObjectBodyRegex.js +0 -85
- package/dist/services/local/replaceObjectBodyRegex.js.map +0 -1
- package/dist/tools/__tests__/pruneClosedTool.test.d.ts +0 -2
- package/dist/tools/__tests__/pruneClosedTool.test.d.ts.map +0 -1
- package/dist/tools/__tests__/pruneClosedTool.test.js +0 -112
- package/dist/tools/__tests__/pruneClosedTool.test.js.map +0 -1
- package/dist/tools/__tests__/replaceObjectBodyRegexTool.test.d.ts +0 -2
- package/dist/tools/__tests__/replaceObjectBodyRegexTool.test.d.ts.map +0 -1
- package/dist/tools/__tests__/replaceObjectBodyRegexTool.test.js +0 -89
- package/dist/tools/__tests__/replaceObjectBodyRegexTool.test.js.map +0 -1
- package/dist/tools/pruneClosedTool.d.ts +0 -27
- package/dist/tools/pruneClosedTool.d.ts.map +0 -1
- package/dist/tools/pruneClosedTool.js +0 -57
- package/dist/tools/pruneClosedTool.js.map +0 -1
- package/dist/tools/replaceObjectBodyRegexTool.d.ts +0 -36
- package/dist/tools/replaceObjectBodyRegexTool.d.ts.map +0 -1
- package/dist/tools/replaceObjectBodyRegexTool.js +0 -67
- package/dist/tools/replaceObjectBodyRegexTool.js.map +0 -1
- package/dist/utils/ReplaceStringOptions.d.ts +0 -12
- package/dist/utils/ReplaceStringOptions.d.ts.map +0 -1
- package/dist/utils/ReplaceStringOptions.js +0 -3
- package/dist/utils/ReplaceStringOptions.js.map +0 -1
- package/dist/utils/__tests__/replaceStringWithRegex.test.d.ts +0 -2
- package/dist/utils/__tests__/replaceStringWithRegex.test.d.ts.map +0 -1
- package/dist/utils/__tests__/replaceStringWithRegex.test.js +0 -281
- package/dist/utils/__tests__/replaceStringWithRegex.test.js.map +0 -1
- package/dist/utils/replaceStringWithRegex.d.ts +0 -45
- package/dist/utils/replaceStringWithRegex.d.ts.map +0 -1
- package/dist/utils/replaceStringWithRegex.js +0 -91
- package/dist/utils/replaceStringWithRegex.js.map +0 -1
|
@@ -2,13 +2,13 @@ import { Repository } from "../repositories";
|
|
|
2
2
|
import { TaskTrellisService } from "../services/TaskTrellisService";
|
|
3
3
|
export declare const appendModifiedFilesTool: {
|
|
4
4
|
readonly name: "append_modified_files";
|
|
5
|
-
readonly description: "Appends modified files information to a trellis
|
|
5
|
+
readonly description: "Appends modified files information to a trellis issue in the task trellis system\n\nUse this tool to record files that have been modified during task execution, along with descriptions of the modifications made. This helps maintain a comprehensive record of changes associated with each work item for tracking and audit purposes.\n\nFile modification tracking purposes:\n- Record which files were changed during task execution\n- Document the nature of changes made to each file\n- Maintain audit trail of file-level modifications\n- Support code review and change management processes\n- Enable impact analysis for future changes\n\nInput requirements:\n- Issue ID: The unique identifier of the trellis issue to update\n- Files Changed: A record mapping file paths to descriptions of modifications\n\nFile path guidelines:\n- Use relative paths from project root (e.g., \"src/components/Button.tsx\")\n- Include file extensions for clarity\n- Use forward slashes for path separators\n\nDescription guidelines:\n- Provide clear, concise descriptions of what was changed\n- Focus on the purpose and impact of changes rather than implementation details\n- Use consistent terminology across related modifications\n\nThe tool automatically merges descriptions for files that were previously modified, creating a comprehensive change history for each file within the context of the trellis issue.";
|
|
6
6
|
readonly inputSchema: {
|
|
7
7
|
readonly type: "object";
|
|
8
8
|
readonly properties: {
|
|
9
9
|
readonly id: {
|
|
10
10
|
readonly type: "string";
|
|
11
|
-
readonly description: "ID of the trellis
|
|
11
|
+
readonly description: "ID of the trellis issue to update with modified files information";
|
|
12
12
|
};
|
|
13
13
|
readonly filesChanged: {
|
|
14
14
|
readonly type: "object";
|
|
@@ -4,7 +4,7 @@ exports.appendModifiedFilesTool = void 0;
|
|
|
4
4
|
exports.handleAppendModifiedFiles = handleAppendModifiedFiles;
|
|
5
5
|
exports.appendModifiedFilesTool = {
|
|
6
6
|
name: "append_modified_files",
|
|
7
|
-
description: `Appends modified files information to a trellis
|
|
7
|
+
description: `Appends modified files information to a trellis issue in the task trellis system
|
|
8
8
|
|
|
9
9
|
Use this tool to record files that have been modified during task execution, along with descriptions of the modifications made. This helps maintain a comprehensive record of changes associated with each work item for tracking and audit purposes.
|
|
10
10
|
|
|
@@ -16,7 +16,7 @@ File modification tracking purposes:
|
|
|
16
16
|
- Enable impact analysis for future changes
|
|
17
17
|
|
|
18
18
|
Input requirements:
|
|
19
|
-
-
|
|
19
|
+
- Issue ID: The unique identifier of the trellis issue to update
|
|
20
20
|
- Files Changed: A record mapping file paths to descriptions of modifications
|
|
21
21
|
|
|
22
22
|
File path guidelines:
|
|
@@ -29,13 +29,13 @@ Description guidelines:
|
|
|
29
29
|
- Focus on the purpose and impact of changes rather than implementation details
|
|
30
30
|
- Use consistent terminology across related modifications
|
|
31
31
|
|
|
32
|
-
The tool automatically merges descriptions for files that were previously modified, creating a comprehensive change history for each file within the context of the trellis
|
|
32
|
+
The tool automatically merges descriptions for files that were previously modified, creating a comprehensive change history for each file within the context of the trellis issue.`,
|
|
33
33
|
inputSchema: {
|
|
34
34
|
type: "object",
|
|
35
35
|
properties: {
|
|
36
36
|
id: {
|
|
37
37
|
type: "string",
|
|
38
|
-
description: "ID of the trellis
|
|
38
|
+
description: "ID of the trellis issue to update with modified files information",
|
|
39
39
|
},
|
|
40
40
|
filesChanged: {
|
|
41
41
|
type: "object",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"appendModifiedFilesTool.js","sourceRoot":"","sources":["../../src/tools/appendModifiedFilesTool.ts"],"names":[],"mappings":";;;AAoDA,8DAWC;AA5DY,QAAA,uBAAuB,GAAG;IACrC,IAAI,EAAE,uBAAuB;IAC7B,WAAW,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"appendModifiedFilesTool.js","sourceRoot":"","sources":["../../src/tools/appendModifiedFilesTool.ts"],"names":[],"mappings":";;;AAoDA,8DAWC;AA5DY,QAAA,uBAAuB,GAAG;IACrC,IAAI,EAAE,uBAAuB;IAC7B,WAAW,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;mLAyBoK;IACjL,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,EAAE,EAAE;gBACF,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,mEAAmE;aACtE;YACD,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,4DAA4D;gBAC9D,oBAAoB,EAAE;oBACpB,IAAI,EAAE,QAAQ;iBACf;aACF;SACF;QACD,QAAQ,EAAE,CAAC,IAAI,EAAE,cAAc,CAAC;KACjC;CACO,CAAC;AAEJ,KAAK,UAAU,yBAAyB,CAC7C,OAA2B,EAC3B,UAAsB,EACtB,IAAa;IAEb,MAAM,EAAE,EAAE,EAAE,YAAY,EAAE,GAAG,IAG5B,CAAC;IAEF,OAAO,MAAM,OAAO,CAAC,mBAAmB,CAAC,UAAU,EAAE,EAAE,EAAE,YAAY,CAAC,CAAC;AACzE,CAAC"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { Repository } from "../repositories";
|
|
2
2
|
import { TaskTrellisService } from "../services/TaskTrellisService";
|
|
3
3
|
export declare const appendObjectLogTool: {
|
|
4
|
-
readonly name: "
|
|
5
|
-
readonly description: "Appends content to an
|
|
4
|
+
readonly name: "append_issue_log";
|
|
5
|
+
readonly description: "Appends content to an issue's log in the task trellis system\n\nUse this tool to add progress updates, notes, or activity records to an issue's audit trail. Essential for tracking work history, documenting decisions, and maintaining transparency in task execution.\n\nLog entry purposes:\n- Record progress milestones and status changes\n- Document challenges encountered and solutions applied\n- Note important decisions or changes in approach\n- Track time spent or resources used\n- Log external dependencies or blockers\n- Record completion details and outcomes\n\nLog content guidelines:\n- Use clear, descriptive entries with context\n- Include timestamps (automatically added by system)\n- Reference specific files, commits, or external resources when relevant\n- Note any changes to scope, requirements, or approach\n- Document lessons learned or insights gained\n\nActivity tracking patterns:\n- Starting work: \"Started implementation of feature X\"\n- Progress updates: \"Completed database schema changes, moving to API layer\"\n- Blocking issues: \"Blocked on external API access, contacted team\"\n- Problem resolution: \"Resolved memory leak by optimizing data structure\"\n- Completion: \"Task completed, all tests passing, PR submitted\"\n\nThe log creates a permanent audit trail that helps with project retrospectives, debugging issues, and understanding work evolution over time.";
|
|
6
6
|
readonly inputSchema: {
|
|
7
7
|
readonly type: "object";
|
|
8
8
|
readonly properties: {
|
|
9
9
|
readonly id: {
|
|
10
10
|
readonly type: "string";
|
|
11
|
-
readonly description: "ID of the
|
|
11
|
+
readonly description: "ID of the issue to append log to";
|
|
12
12
|
};
|
|
13
13
|
readonly contents: {
|
|
14
14
|
readonly type: "string";
|
|
@@ -3,10 +3,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.appendObjectLogTool = void 0;
|
|
4
4
|
exports.handleAppendObjectLog = handleAppendObjectLog;
|
|
5
5
|
exports.appendObjectLogTool = {
|
|
6
|
-
name: "
|
|
7
|
-
description: `Appends content to an
|
|
6
|
+
name: "append_issue_log",
|
|
7
|
+
description: `Appends content to an issue's log in the task trellis system
|
|
8
8
|
|
|
9
|
-
Use this tool to add progress updates, notes, or activity records to an
|
|
9
|
+
Use this tool to add progress updates, notes, or activity records to an issue's audit trail. Essential for tracking work history, documenting decisions, and maintaining transparency in task execution.
|
|
10
10
|
|
|
11
11
|
Log entry purposes:
|
|
12
12
|
- Record progress milestones and status changes
|
|
@@ -36,7 +36,7 @@ The log creates a permanent audit trail that helps with project retrospectives,
|
|
|
36
36
|
properties: {
|
|
37
37
|
id: {
|
|
38
38
|
type: "string",
|
|
39
|
-
description: "ID of the
|
|
39
|
+
description: "ID of the issue to append log to",
|
|
40
40
|
},
|
|
41
41
|
contents: {
|
|
42
42
|
type: "string",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"appendObjectLogTool.js","sourceRoot":"","sources":["../../src/tools/appendObjectLogTool.ts"],"names":[],"mappings":";;;AAgDA,sDAWC;AAxDY,QAAA,mBAAmB,GAAG;IACjC,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"appendObjectLogTool.js","sourceRoot":"","sources":["../../src/tools/appendObjectLogTool.ts"],"names":[],"mappings":";;;AAgDA,sDAWC;AAxDY,QAAA,mBAAmB,GAAG;IACjC,IAAI,EAAE,kBAAkB;IACxB,WAAW,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;8IA0B+H;IAC5I,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,EAAE,EAAE;gBACF,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,kCAAkC;aAChD;YACD,QAAQ,EAAE;gBACR,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,+BAA+B;aAC7C;SACF;QACD,QAAQ,EAAE,CAAC,IAAI,EAAE,UAAU,CAAC;KAC7B;CACO,CAAC;AAEJ,KAAK,UAAU,qBAAqB,CACzC,OAA2B,EAC3B,UAAsB,EACtB,IAAa;IAEb,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,GAAG,IAGxB,CAAC;IAEF,OAAO,OAAO,CAAC,eAAe,CAAC,UAAU,EAAE,EAAE,EAAE,QAAQ,CAAC,CAAC;AAC3D,CAAC"}
|
|
@@ -26,7 +26,7 @@ export declare const completeTaskTool: {
|
|
|
26
26
|
readonly required: readonly ["taskId", "summary", "filesChanged"];
|
|
27
27
|
};
|
|
28
28
|
};
|
|
29
|
-
export declare function handleCompleteTask(service: TaskTrellisService, repository: Repository, args: unknown, serverConfig
|
|
29
|
+
export declare function handleCompleteTask(service: TaskTrellisService, repository: Repository, args: unknown, serverConfig: ServerConfig): Promise<{
|
|
30
30
|
content: Array<{
|
|
31
31
|
type: string;
|
|
32
32
|
text: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"completeTaskTool.d.ts","sourceRoot":"","sources":["../../src/tools/completeTaskTool.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AAEpE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;CAqDnB,CAAC;AAEX,wBAAgB,kBAAkB,CAChC,OAAO,EAAE,kBAAkB,EAC3B,UAAU,EAAE,UAAU,EACtB,IAAI,EAAE,OAAO,EACb,YAAY,
|
|
1
|
+
{"version":3,"file":"completeTaskTool.d.ts","sourceRoot":"","sources":["../../src/tools/completeTaskTool.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AAEpE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;CAqDnB,CAAC;AAEX,wBAAgB,kBAAkB,CAChC,OAAO,EAAE,kBAAkB,EAC3B,UAAU,EAAE,UAAU,EACtB,IAAI,EAAE,OAAO,EACb,YAAY,EAAE,YAAY;;;;;GAgB3B"}
|
|
@@ -59,6 +59,6 @@ Task completion automatically notifies dependent tasks and may trigger workflow
|
|
|
59
59
|
function handleCompleteTask(service, repository, args, serverConfig) {
|
|
60
60
|
const { taskId, summary, filesChanged } = args;
|
|
61
61
|
// Delegate to service.completeTask
|
|
62
|
-
return service.completeTask(repository, taskId, summary, filesChanged
|
|
62
|
+
return service.completeTask(repository, serverConfig, taskId, summary, filesChanged);
|
|
63
63
|
}
|
|
64
64
|
//# sourceMappingURL=completeTaskTool.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"completeTaskTool.js","sourceRoot":"","sources":["../../src/tools/completeTaskTool.ts"],"names":[],"mappings":";;;AA2DA,gDAoBC;AA3EY,QAAA,gBAAgB,GAAG;IAC9B,IAAI,EAAE,eAAe;IACrB,WAAW,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oHA6BqG;IAClH,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,4BAA4B;aAC1C;YACD,OAAO,EAAE;gBACP,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,+BAA+B;aAC7C;YACD,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,oBAAoB,EAAE;oBACpB,IAAI,EAAE,QAAQ;iBACf;gBACD,WAAW,EAAE,8CAA8C;aAC5D;SACF;QACD,QAAQ,EAAE,CAAC,QAAQ,EAAE,SAAS,EAAE,cAAc,CAAC;KAChD;CACO,CAAC;AAEX,SAAgB,kBAAkB,CAChC,OAA2B,EAC3B,UAAsB,EACtB,IAAa,EACb,
|
|
1
|
+
{"version":3,"file":"completeTaskTool.js","sourceRoot":"","sources":["../../src/tools/completeTaskTool.ts"],"names":[],"mappings":";;;AA2DA,gDAoBC;AA3EY,QAAA,gBAAgB,GAAG;IAC9B,IAAI,EAAE,eAAe;IACrB,WAAW,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oHA6BqG;IAClH,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,4BAA4B;aAC1C;YACD,OAAO,EAAE;gBACP,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,+BAA+B;aAC7C;YACD,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,oBAAoB,EAAE;oBACpB,IAAI,EAAE,QAAQ;iBACf;gBACD,WAAW,EAAE,8CAA8C;aAC5D;SACF;QACD,QAAQ,EAAE,CAAC,QAAQ,EAAE,SAAS,EAAE,cAAc,CAAC;KAChD;CACO,CAAC;AAEX,SAAgB,kBAAkB,CAChC,OAA2B,EAC3B,UAAsB,EACtB,IAAa,EACb,YAA0B;IAE1B,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,YAAY,EAAE,GAAG,IAIzC,CAAC;IAEF,mCAAmC;IACnC,OAAO,OAAO,CAAC,YAAY,CACzB,UAAU,EACV,YAAY,EACZ,MAAM,EACN,OAAO,EACP,YAAY,CACb,CAAC;AACJ,CAAC"}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import { Repository } from "../repositories";
|
|
2
2
|
import { TaskTrellisService } from "../services/TaskTrellisService";
|
|
3
3
|
export declare const createObjectTool: {
|
|
4
|
-
readonly name: "
|
|
5
|
-
readonly description: "Creates a new
|
|
4
|
+
readonly name: "create_issue";
|
|
5
|
+
readonly description: "Creates a new issue in the task trellis system\n\nUse this tool to create new issues such as tasks, projects, or other work items within the task management hierarchy. Issues can have parent-child relationships and dependencies through prerequisites.\n\nAvailable issue types and hierarchy requirements:\n- 'project': Top-level containers, cannot have a parent\n- 'epic': Can have no parent or a project as a parent\n- 'feature': Can have no parent or an epic as a parent\n- 'task': Can have no parent or a feature as a parent\n\nSupported hierarchy structures:\n- Full hierarchy: project → epic → feature → task\n- Simplified: epic → feature → task\n- Simplified: feature → task \n- Standalone: epic\n- Standalone: task\n\nAvailable status values:\n- 'draft': Initial state for new issues\n- 'open': Ready to begin work (default)\n- 'open': Ready to begin work\n- 'in-progress': Currently being worked on\n- 'done': Completed successfully\n- 'wont-do': Cancelled or decided against\n\nAvailable priority values:\n- 'high': Critical or urgent work\n- 'medium': Standard priority (default)\n- 'low': Nice-to-have or future work\n\nKey aspects:\n- Issues support hierarchical organization via parent relationships\n- Prerequisites define execution order dependencies between issues\n- Parent-child relationships must follow the hierarchy rules above\n- The system validates parent types during creation\n\nBest practices:\n- Use descriptive titles that clearly indicate the work to be done\n- Follow the hierarchy constraints for proper organization\n- Set appropriate status based on current work state\n- Define prerequisites to ensure proper task ordering\n- Include detailed descriptions to provide context for the work";
|
|
6
6
|
readonly inputSchema: {
|
|
7
7
|
readonly type: "object";
|
|
8
8
|
readonly properties: {
|
|
9
9
|
readonly type: {
|
|
10
10
|
readonly type: "string";
|
|
11
|
-
readonly description: "Type of
|
|
11
|
+
readonly description: "Type of issue to create";
|
|
12
12
|
};
|
|
13
13
|
readonly title: {
|
|
14
14
|
readonly type: "string";
|
|
15
|
-
readonly description: "Title of the
|
|
15
|
+
readonly description: "Title of the issue";
|
|
16
16
|
};
|
|
17
17
|
readonly parent: {
|
|
18
18
|
readonly type: "string";
|
|
19
|
-
readonly description: "Parent
|
|
19
|
+
readonly description: "Parent issue ID (optional)";
|
|
20
20
|
};
|
|
21
21
|
readonly priority: {
|
|
22
22
|
readonly type: "string";
|
|
@@ -25,7 +25,7 @@ export declare const createObjectTool: {
|
|
|
25
25
|
};
|
|
26
26
|
readonly status: {
|
|
27
27
|
readonly type: "string";
|
|
28
|
-
readonly description: "Status of the
|
|
28
|
+
readonly description: "Status of the issue (defaults to 'open')";
|
|
29
29
|
readonly default: "open";
|
|
30
30
|
};
|
|
31
31
|
readonly prerequisites: {
|
|
@@ -33,12 +33,12 @@ export declare const createObjectTool: {
|
|
|
33
33
|
readonly items: {
|
|
34
34
|
readonly type: "string";
|
|
35
35
|
};
|
|
36
|
-
readonly description: "Array of prerequisite
|
|
36
|
+
readonly description: "Array of prerequisite issue IDs (defaults to empty array)";
|
|
37
37
|
readonly default: readonly [];
|
|
38
38
|
};
|
|
39
39
|
readonly description: {
|
|
40
40
|
readonly type: "string";
|
|
41
|
-
readonly description: "Description of the
|
|
41
|
+
readonly description: "Description of the issue";
|
|
42
42
|
};
|
|
43
43
|
};
|
|
44
44
|
readonly required: readonly ["type", "title"];
|
|
@@ -3,12 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.createObjectTool = void 0;
|
|
4
4
|
exports.handleCreateObject = handleCreateObject;
|
|
5
5
|
exports.createObjectTool = {
|
|
6
|
-
name: "
|
|
7
|
-
description: `Creates a new
|
|
6
|
+
name: "create_issue",
|
|
7
|
+
description: `Creates a new issue in the task trellis system
|
|
8
8
|
|
|
9
|
-
Use this tool to create new
|
|
9
|
+
Use this tool to create new issues such as tasks, projects, or other work items within the task management hierarchy. Issues can have parent-child relationships and dependencies through prerequisites.
|
|
10
10
|
|
|
11
|
-
Available
|
|
11
|
+
Available issue types and hierarchy requirements:
|
|
12
12
|
- 'project': Top-level containers, cannot have a parent
|
|
13
13
|
- 'epic': Can have no parent or a project as a parent
|
|
14
14
|
- 'feature': Can have no parent or an epic as a parent
|
|
@@ -22,7 +22,7 @@ Supported hierarchy structures:
|
|
|
22
22
|
- Standalone: task
|
|
23
23
|
|
|
24
24
|
Available status values:
|
|
25
|
-
- 'draft': Initial state for new
|
|
25
|
+
- 'draft': Initial state for new issues
|
|
26
26
|
- 'open': Ready to begin work (default)
|
|
27
27
|
- 'open': Ready to begin work
|
|
28
28
|
- 'in-progress': Currently being worked on
|
|
@@ -35,8 +35,8 @@ Available priority values:
|
|
|
35
35
|
- 'low': Nice-to-have or future work
|
|
36
36
|
|
|
37
37
|
Key aspects:
|
|
38
|
-
-
|
|
39
|
-
- Prerequisites define execution order dependencies between
|
|
38
|
+
- Issues support hierarchical organization via parent relationships
|
|
39
|
+
- Prerequisites define execution order dependencies between issues
|
|
40
40
|
- Parent-child relationships must follow the hierarchy rules above
|
|
41
41
|
- The system validates parent types during creation
|
|
42
42
|
|
|
@@ -51,15 +51,15 @@ Best practices:
|
|
|
51
51
|
properties: {
|
|
52
52
|
type: {
|
|
53
53
|
type: "string",
|
|
54
|
-
description: "Type of
|
|
54
|
+
description: "Type of issue to create",
|
|
55
55
|
},
|
|
56
56
|
title: {
|
|
57
57
|
type: "string",
|
|
58
|
-
description: "Title of the
|
|
58
|
+
description: "Title of the issue",
|
|
59
59
|
},
|
|
60
60
|
parent: {
|
|
61
61
|
type: "string",
|
|
62
|
-
description: "Parent
|
|
62
|
+
description: "Parent issue ID (optional)",
|
|
63
63
|
},
|
|
64
64
|
priority: {
|
|
65
65
|
type: "string",
|
|
@@ -68,7 +68,7 @@ Best practices:
|
|
|
68
68
|
},
|
|
69
69
|
status: {
|
|
70
70
|
type: "string",
|
|
71
|
-
description: "Status of the
|
|
71
|
+
description: "Status of the issue (defaults to 'open')",
|
|
72
72
|
default: "open",
|
|
73
73
|
},
|
|
74
74
|
prerequisites: {
|
|
@@ -76,12 +76,12 @@ Best practices:
|
|
|
76
76
|
items: {
|
|
77
77
|
type: "string",
|
|
78
78
|
},
|
|
79
|
-
description: "Array of prerequisite
|
|
79
|
+
description: "Array of prerequisite issue IDs (defaults to empty array)",
|
|
80
80
|
default: [],
|
|
81
81
|
},
|
|
82
82
|
description: {
|
|
83
83
|
type: "string",
|
|
84
|
-
description: "Description of the
|
|
84
|
+
description: "Description of the issue",
|
|
85
85
|
},
|
|
86
86
|
},
|
|
87
87
|
required: ["type", "title"],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createObjectTool.js","sourceRoot":"","sources":["../../src/tools/createObjectTool.ts"],"names":[],"mappings":";;;AA+FA,gDAkCC;AAzHY,QAAA,gBAAgB,GAAG;IAC9B,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"createObjectTool.js","sourceRoot":"","sources":["../../src/tools/createObjectTool.ts"],"names":[],"mappings":";;;AA+FA,gDAkCC;AAzHY,QAAA,gBAAgB,GAAG;IAC9B,IAAI,EAAE,cAAc;IACpB,WAAW,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gEAyCiD;IAC9D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,yBAAyB;aACvC;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,oBAAoB;aAClC;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,4BAA4B;aAC1C;YACD,QAAQ,EAAE;gBACR,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,uCAAuC;gBACpD,OAAO,EAAE,QAAQ;aAClB;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,0CAA0C;gBACvD,OAAO,EAAE,MAAM;aAChB;YACD,aAAa,EAAE;gBACb,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;gBACD,WAAW,EACT,2DAA2D;gBAC7D,OAAO,EAAE,EAAE;aACZ;YACD,WAAW,EAAE;gBACX,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,0BAA0B;aACxC;SACF;QACD,QAAQ,EAAE,CAAC,MAAM,EAAE,OAAO,CAAC;KAC5B;CACO,CAAC;AAEJ,KAAK,UAAU,kBAAkB,CACtC,OAA2B,EAC3B,UAAsB,EACtB,IAAa;IAEb,MAAM,EACJ,IAAI,EACJ,KAAK,EACL,MAAM,EACN,QAAQ,GAAG,QAAQ,EACnB,MAAM,GAAG,MAAM,EACf,aAAa,GAAG,EAAE,EAClB,WAAW,GAAG,EAAE,GACjB,GAAG,IAQH,CAAC;IAEF,4BAA4B;IAC5B,OAAO,OAAO,CAAC,YAAY,CACzB,UAAU,EACV,IAAyB,EACzB,KAAK,EACL,MAAM,EACN,QAAiC,EACjC,MAA6B,EAC7B,aAAa,EACb,WAAW,CACZ,CAAC;AACJ,CAAC"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { Repository } from "../repositories";
|
|
2
2
|
export declare const deleteObjectTool: {
|
|
3
|
-
readonly name: "
|
|
4
|
-
readonly description: "Deletes an
|
|
3
|
+
readonly name: "delete_issue";
|
|
4
|
+
readonly description: "Deletes an issue from the task trellis system\n\nUse this tool to permanently remove issues from the task hierarchy. Exercise caution as deletion affects related issues and cannot be easily undone.\n\nSafety considerations:\n- Standard deletion validates relationships and prevents deletion of issues with dependencies\n- Issues with children or that serve as prerequisites for other issues may be protected\n- Use 'force=true' to bypass safety checks for administrative cleanup\n- Consider updating status to 'cancelled' instead of deletion for audit trail preservation\n\nDeletion impacts:\n- Removes issue and all associated metadata permanently\n- Updates parent-child relationships by removing deleted issue from parent's children list\n- Other issues referencing this as a prerequisite may become invalid\n- Historical references in logs and activity trails are preserved but point to non-existent issue\n\nBest practices:\n- Verify issue has no active dependencies before deletion\n- Use list/get tools to understand relationships before deletion\n- Prefer status updates to 'cancelled' over deletion for important work items\n- Use force deletion only for cleanup of test data or administrative maintenance\n\nThis operation is irreversible - ensure you have the correct issue ID before proceeding.";
|
|
5
5
|
readonly inputSchema: {
|
|
6
6
|
readonly type: "object";
|
|
7
7
|
readonly properties: {
|
|
8
8
|
readonly id: {
|
|
9
9
|
readonly type: "string";
|
|
10
|
-
readonly description: "ID of the
|
|
10
|
+
readonly description: "ID of the issue to delete";
|
|
11
11
|
};
|
|
12
12
|
readonly force: {
|
|
13
13
|
readonly type: "boolean";
|
|
@@ -3,36 +3,36 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.deleteObjectTool = void 0;
|
|
4
4
|
exports.handleDeleteObject = handleDeleteObject;
|
|
5
5
|
exports.deleteObjectTool = {
|
|
6
|
-
name: "
|
|
7
|
-
description: `Deletes an
|
|
6
|
+
name: "delete_issue",
|
|
7
|
+
description: `Deletes an issue from the task trellis system
|
|
8
8
|
|
|
9
|
-
Use this tool to permanently remove
|
|
9
|
+
Use this tool to permanently remove issues from the task hierarchy. Exercise caution as deletion affects related issues and cannot be easily undone.
|
|
10
10
|
|
|
11
11
|
Safety considerations:
|
|
12
|
-
- Standard deletion validates relationships and prevents deletion of
|
|
13
|
-
-
|
|
12
|
+
- Standard deletion validates relationships and prevents deletion of issues with dependencies
|
|
13
|
+
- Issues with children or that serve as prerequisites for other issues may be protected
|
|
14
14
|
- Use 'force=true' to bypass safety checks for administrative cleanup
|
|
15
15
|
- Consider updating status to 'cancelled' instead of deletion for audit trail preservation
|
|
16
16
|
|
|
17
17
|
Deletion impacts:
|
|
18
|
-
- Removes
|
|
19
|
-
- Updates parent-child relationships by removing deleted
|
|
20
|
-
- Other
|
|
21
|
-
- Historical references in logs and activity trails are preserved but point to non-existent
|
|
18
|
+
- Removes issue and all associated metadata permanently
|
|
19
|
+
- Updates parent-child relationships by removing deleted issue from parent's children list
|
|
20
|
+
- Other issues referencing this as a prerequisite may become invalid
|
|
21
|
+
- Historical references in logs and activity trails are preserved but point to non-existent issue
|
|
22
22
|
|
|
23
23
|
Best practices:
|
|
24
|
-
- Verify
|
|
24
|
+
- Verify issue has no active dependencies before deletion
|
|
25
25
|
- Use list/get tools to understand relationships before deletion
|
|
26
26
|
- Prefer status updates to 'cancelled' over deletion for important work items
|
|
27
27
|
- Use force deletion only for cleanup of test data or administrative maintenance
|
|
28
28
|
|
|
29
|
-
This operation is irreversible - ensure you have the correct
|
|
29
|
+
This operation is irreversible - ensure you have the correct issue ID before proceeding.`,
|
|
30
30
|
inputSchema: {
|
|
31
31
|
type: "object",
|
|
32
32
|
properties: {
|
|
33
33
|
id: {
|
|
34
34
|
type: "string",
|
|
35
|
-
description: "ID of the
|
|
35
|
+
description: "ID of the issue to delete",
|
|
36
36
|
},
|
|
37
37
|
force: {
|
|
38
38
|
type: "boolean",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deleteObjectTool.js","sourceRoot":"","sources":["../../src/tools/deleteObjectTool.ts"],"names":[],"mappings":";;;AA4CA,gDA8BC;AAxEY,QAAA,gBAAgB,GAAG;IAC9B,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"deleteObjectTool.js","sourceRoot":"","sources":["../../src/tools/deleteObjectTool.ts"],"names":[],"mappings":";;;AA4CA,gDA8BC;AAxEY,QAAA,gBAAgB,GAAG;IAC9B,IAAI,EAAE,cAAc;IACpB,WAAW,EAAE;;;;;;;;;;;;;;;;;;;;;;yFAsB0E;IACvF,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,EAAE,EAAE;gBACF,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,2BAA2B;aACzC;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,uCAAuC;gBACpD,OAAO,EAAE,KAAK;aACf;SACF;QACD,QAAQ,EAAE,CAAC,IAAI,CAAC;KACjB;CACO,CAAC;AAEJ,KAAK,UAAU,kBAAkB,CACtC,UAAsB,EACtB,IAAa;IAEb,MAAM,EAAE,EAAE,EAAE,KAAK,GAAG,KAAK,EAAE,GAAG,IAG7B,CAAC;IAEF,IAAI,CAAC;QACH,MAAM,UAAU,CAAC,YAAY,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;QAEzC,OAAO;YACL,OAAO,EAAE;gBACP;oBACE,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,gCAAgC,EAAE,EAAE;iBAC3C;aACF;SACF,CAAC;IACJ,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO;YACL,OAAO,EAAE;gBACP;oBACE,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,kCAAkC,EAAE,MAAM,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE;iBACzG;aACF;SACF,CAAC;IACJ,CAAC;AACH,CAAC"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { Repository } from "../repositories";
|
|
2
2
|
export declare const getObjectTool: {
|
|
3
|
-
readonly name: "
|
|
4
|
-
readonly description: "Gets an
|
|
3
|
+
readonly name: "get_issue";
|
|
4
|
+
readonly description: "Gets an issue from the task trellis system\n\nUse this tool to retrieve detailed information about a specific issue by its unique ID. Returns the complete issue data including metadata, relationships, content, and activity history.\n\nKey information retrieved:\n- Issue metadata (type, title, status, priority, timestamps)\n- Hierarchical relationships (parent, children, prerequisites)\n- Content body and description\n- Activity log and change history\n- File associations and modifications\n- Current state and progress indicators\n\nUsage scenarios:\n- Review task details before starting work\n- Check issue status and dependencies\n- Examine change history and activity logs\n- Understand parent-child relationships\n- Verify prerequisite completion\n- Access associated file changes\n\nEssential for understanding the full context of a work item before making modifications or planning next steps.";
|
|
5
5
|
readonly inputSchema: {
|
|
6
6
|
readonly type: "object";
|
|
7
7
|
readonly properties: {
|
|
8
8
|
readonly id: {
|
|
9
9
|
readonly type: "string";
|
|
10
|
-
readonly description: "ID of the
|
|
10
|
+
readonly description: "ID of the issue to retrieve";
|
|
11
11
|
};
|
|
12
12
|
};
|
|
13
13
|
readonly required: readonly ["id"];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getObjectTool.d.ts","sourceRoot":"","sources":["../../src/tools/getObjectTool.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAE7C,eAAO,MAAM,aAAa;;;;;;;;;;;;;CAiChB,CAAC;AAEX,wBAAsB,eAAe,CAAC,UAAU,EAAE,UAAU,EAAE,IAAI,EAAE,OAAO;;;;;
|
|
1
|
+
{"version":3,"file":"getObjectTool.d.ts","sourceRoot":"","sources":["../../src/tools/getObjectTool.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAE7C,eAAO,MAAM,aAAa;;;;;;;;;;;;;CAiChB,CAAC;AAEX,wBAAsB,eAAe,CAAC,UAAU,EAAE,UAAU,EAAE,IAAI,EAAE,OAAO;;;;;GA2C1E"}
|
|
@@ -3,13 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getObjectTool = void 0;
|
|
4
4
|
exports.handleGetObject = handleGetObject;
|
|
5
5
|
exports.getObjectTool = {
|
|
6
|
-
name: "
|
|
7
|
-
description: `Gets an
|
|
6
|
+
name: "get_issue",
|
|
7
|
+
description: `Gets an issue from the task trellis system
|
|
8
8
|
|
|
9
|
-
Use this tool to retrieve detailed information about a specific
|
|
9
|
+
Use this tool to retrieve detailed information about a specific issue by its unique ID. Returns the complete issue data including metadata, relationships, content, and activity history.
|
|
10
10
|
|
|
11
11
|
Key information retrieved:
|
|
12
|
-
-
|
|
12
|
+
- Issue metadata (type, title, status, priority, timestamps)
|
|
13
13
|
- Hierarchical relationships (parent, children, prerequisites)
|
|
14
14
|
- Content body and description
|
|
15
15
|
- Activity log and change history
|
|
@@ -18,7 +18,7 @@ Key information retrieved:
|
|
|
18
18
|
|
|
19
19
|
Usage scenarios:
|
|
20
20
|
- Review task details before starting work
|
|
21
|
-
- Check
|
|
21
|
+
- Check issue status and dependencies
|
|
22
22
|
- Examine change history and activity logs
|
|
23
23
|
- Understand parent-child relationships
|
|
24
24
|
- Verify prerequisite completion
|
|
@@ -30,7 +30,7 @@ Essential for understanding the full context of a work item before making modifi
|
|
|
30
30
|
properties: {
|
|
31
31
|
id: {
|
|
32
32
|
type: "string",
|
|
33
|
-
description: "ID of the
|
|
33
|
+
description: "ID of the issue to retrieve",
|
|
34
34
|
},
|
|
35
35
|
},
|
|
36
36
|
required: ["id"],
|
|
@@ -50,11 +50,16 @@ async function handleGetObject(repository, args) {
|
|
|
50
50
|
],
|
|
51
51
|
};
|
|
52
52
|
}
|
|
53
|
+
// Convert Map objects to plain objects for proper JSON serialization
|
|
54
|
+
const serializedObject = {
|
|
55
|
+
...object,
|
|
56
|
+
affectedFiles: Object.fromEntries(object.affectedFiles),
|
|
57
|
+
};
|
|
53
58
|
return {
|
|
54
59
|
content: [
|
|
55
60
|
{
|
|
56
61
|
type: "text",
|
|
57
|
-
text: `Retrieved object: ${JSON.stringify(
|
|
62
|
+
text: `Retrieved object: ${JSON.stringify(serializedObject, null, 2)}`,
|
|
58
63
|
},
|
|
59
64
|
],
|
|
60
65
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getObjectTool.js","sourceRoot":"","sources":["../../src/tools/getObjectTool.ts"],"names":[],"mappings":";;;AAqCA,
|
|
1
|
+
{"version":3,"file":"getObjectTool.js","sourceRoot":"","sources":["../../src/tools/getObjectTool.ts"],"names":[],"mappings":";;;AAqCA,0CA2CC;AA9EY,QAAA,aAAa,GAAG;IAC3B,IAAI,EAAE,WAAW;IACjB,WAAW,EAAE;;;;;;;;;;;;;;;;;;;;gHAoBiG;IAC9G,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,EAAE,EAAE;gBACF,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,6BAA6B;aAC3C;SACF;QACD,QAAQ,EAAE,CAAC,IAAI,CAAC;KACjB;CACO,CAAC;AAEJ,KAAK,UAAU,eAAe,CAAC,UAAsB,EAAE,IAAa;IACzE,MAAM,EAAE,EAAE,EAAE,GAAG,IAEd,CAAC;IAEF,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,aAAa,CAAC,EAAE,CAAC,CAAC;QAElD,IAAI,CAAC,MAAM,EAAE,CAAC;YACZ,OAAO;gBACL,OAAO,EAAE;oBACP;wBACE,IAAI,EAAE,MAAM;wBACZ,IAAI,EAAE,mBAAmB,EAAE,aAAa;qBACzC;iBACF;aACF,CAAC;QACJ,CAAC;QAED,qEAAqE;QACrE,MAAM,gBAAgB,GAAG;YACvB,GAAG,MAAM;YACT,aAAa,EAAE,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,aAAa,CAAC;SACxD,CAAC;QAEF,OAAO;YACL,OAAO,EAAE;gBACP;oBACE,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,qBAAqB,IAAI,CAAC,SAAS,CAAC,gBAAgB,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE;iBACvE;aACF;SACF,CAAC;IACJ,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO;YACL,OAAO,EAAE;gBACP;oBACE,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,oCAAoC,EAAE,MAAM,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE;iBAC3G;aACF;SACF,CAAC;IACJ,CAAC;AACH,CAAC"}
|
package/dist/tools/index.d.ts
CHANGED
|
@@ -1,13 +1,11 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
3
|
-
export { getObjectTool, handleGetObject } from "./getObjectTool.js";
|
|
4
|
-
export { deleteObjectTool, handleDeleteObject } from "./deleteObjectTool.js";
|
|
5
|
-
export { listObjectsTool, handleListObjects } from "./listObjectsTool.js";
|
|
1
|
+
export { activateTool, handleActivate } from "./activateTool.js";
|
|
2
|
+
export { appendModifiedFilesTool, handleAppendModifiedFiles, } from "./appendModifiedFilesTool.js";
|
|
6
3
|
export { appendObjectLogTool, handleAppendObjectLog, } from "./appendObjectLogTool.js";
|
|
7
4
|
export { claimTaskTool, handleClaimTask } from "./claimTaskTool.js";
|
|
8
5
|
export { completeTaskTool, handleCompleteTask } from "./completeTaskTool.js";
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
12
|
-
export {
|
|
6
|
+
export { createObjectTool, handleCreateObject } from "./createObjectTool.js";
|
|
7
|
+
export { deleteObjectTool, handleDeleteObject } from "./deleteObjectTool.js";
|
|
8
|
+
export { getObjectTool, handleGetObject } from "./getObjectTool.js";
|
|
9
|
+
export { handleListObjects, listObjectsTool } from "./listObjectsTool.js";
|
|
10
|
+
export { handleUpdateObject, updateObjectTool } from "./updateObjectTool.js";
|
|
13
11
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACjE,OAAO,EACL,uBAAuB,EACvB,yBAAyB,GAC1B,MAAM,8BAA8B,CAAC;AACtC,OAAO,EACL,mBAAmB,EACnB,qBAAqB,GACtB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACpE,OAAO,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACpE,OAAO,EAAE,iBAAiB,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAC1E,OAAO,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC"}
|
package/dist/tools/index.js
CHANGED
|
@@ -1,21 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
var
|
|
5
|
-
Object.defineProperty(exports, "
|
|
6
|
-
Object.defineProperty(exports, "
|
|
7
|
-
var
|
|
8
|
-
Object.defineProperty(exports, "
|
|
9
|
-
Object.defineProperty(exports, "
|
|
10
|
-
var getObjectTool_js_1 = require("./getObjectTool.js");
|
|
11
|
-
Object.defineProperty(exports, "getObjectTool", { enumerable: true, get: function () { return getObjectTool_js_1.getObjectTool; } });
|
|
12
|
-
Object.defineProperty(exports, "handleGetObject", { enumerable: true, get: function () { return getObjectTool_js_1.handleGetObject; } });
|
|
13
|
-
var deleteObjectTool_js_1 = require("./deleteObjectTool.js");
|
|
14
|
-
Object.defineProperty(exports, "deleteObjectTool", { enumerable: true, get: function () { return deleteObjectTool_js_1.deleteObjectTool; } });
|
|
15
|
-
Object.defineProperty(exports, "handleDeleteObject", { enumerable: true, get: function () { return deleteObjectTool_js_1.handleDeleteObject; } });
|
|
16
|
-
var listObjectsTool_js_1 = require("./listObjectsTool.js");
|
|
17
|
-
Object.defineProperty(exports, "listObjectsTool", { enumerable: true, get: function () { return listObjectsTool_js_1.listObjectsTool; } });
|
|
18
|
-
Object.defineProperty(exports, "handleListObjects", { enumerable: true, get: function () { return listObjectsTool_js_1.handleListObjects; } });
|
|
3
|
+
exports.updateObjectTool = exports.handleUpdateObject = exports.listObjectsTool = exports.handleListObjects = exports.handleGetObject = exports.getObjectTool = exports.handleDeleteObject = exports.deleteObjectTool = exports.handleCreateObject = exports.createObjectTool = exports.handleCompleteTask = exports.completeTaskTool = exports.handleClaimTask = exports.claimTaskTool = exports.handleAppendObjectLog = exports.appendObjectLogTool = exports.handleAppendModifiedFiles = exports.appendModifiedFilesTool = exports.handleActivate = exports.activateTool = void 0;
|
|
4
|
+
var activateTool_js_1 = require("./activateTool.js");
|
|
5
|
+
Object.defineProperty(exports, "activateTool", { enumerable: true, get: function () { return activateTool_js_1.activateTool; } });
|
|
6
|
+
Object.defineProperty(exports, "handleActivate", { enumerable: true, get: function () { return activateTool_js_1.handleActivate; } });
|
|
7
|
+
var appendModifiedFilesTool_js_1 = require("./appendModifiedFilesTool.js");
|
|
8
|
+
Object.defineProperty(exports, "appendModifiedFilesTool", { enumerable: true, get: function () { return appendModifiedFilesTool_js_1.appendModifiedFilesTool; } });
|
|
9
|
+
Object.defineProperty(exports, "handleAppendModifiedFiles", { enumerable: true, get: function () { return appendModifiedFilesTool_js_1.handleAppendModifiedFiles; } });
|
|
19
10
|
var appendObjectLogTool_js_1 = require("./appendObjectLogTool.js");
|
|
20
11
|
Object.defineProperty(exports, "appendObjectLogTool", { enumerable: true, get: function () { return appendObjectLogTool_js_1.appendObjectLogTool; } });
|
|
21
12
|
Object.defineProperty(exports, "handleAppendObjectLog", { enumerable: true, get: function () { return appendObjectLogTool_js_1.handleAppendObjectLog; } });
|
|
@@ -25,16 +16,19 @@ Object.defineProperty(exports, "handleClaimTask", { enumerable: true, get: funct
|
|
|
25
16
|
var completeTaskTool_js_1 = require("./completeTaskTool.js");
|
|
26
17
|
Object.defineProperty(exports, "completeTaskTool", { enumerable: true, get: function () { return completeTaskTool_js_1.completeTaskTool; } });
|
|
27
18
|
Object.defineProperty(exports, "handleCompleteTask", { enumerable: true, get: function () { return completeTaskTool_js_1.handleCompleteTask; } });
|
|
28
|
-
var
|
|
29
|
-
Object.defineProperty(exports, "
|
|
30
|
-
Object.defineProperty(exports, "
|
|
31
|
-
var
|
|
32
|
-
Object.defineProperty(exports, "
|
|
33
|
-
Object.defineProperty(exports, "
|
|
34
|
-
var
|
|
35
|
-
Object.defineProperty(exports, "
|
|
36
|
-
Object.defineProperty(exports, "
|
|
37
|
-
var
|
|
38
|
-
Object.defineProperty(exports, "
|
|
39
|
-
Object.defineProperty(exports, "
|
|
19
|
+
var createObjectTool_js_1 = require("./createObjectTool.js");
|
|
20
|
+
Object.defineProperty(exports, "createObjectTool", { enumerable: true, get: function () { return createObjectTool_js_1.createObjectTool; } });
|
|
21
|
+
Object.defineProperty(exports, "handleCreateObject", { enumerable: true, get: function () { return createObjectTool_js_1.handleCreateObject; } });
|
|
22
|
+
var deleteObjectTool_js_1 = require("./deleteObjectTool.js");
|
|
23
|
+
Object.defineProperty(exports, "deleteObjectTool", { enumerable: true, get: function () { return deleteObjectTool_js_1.deleteObjectTool; } });
|
|
24
|
+
Object.defineProperty(exports, "handleDeleteObject", { enumerable: true, get: function () { return deleteObjectTool_js_1.handleDeleteObject; } });
|
|
25
|
+
var getObjectTool_js_1 = require("./getObjectTool.js");
|
|
26
|
+
Object.defineProperty(exports, "getObjectTool", { enumerable: true, get: function () { return getObjectTool_js_1.getObjectTool; } });
|
|
27
|
+
Object.defineProperty(exports, "handleGetObject", { enumerable: true, get: function () { return getObjectTool_js_1.handleGetObject; } });
|
|
28
|
+
var listObjectsTool_js_1 = require("./listObjectsTool.js");
|
|
29
|
+
Object.defineProperty(exports, "handleListObjects", { enumerable: true, get: function () { return listObjectsTool_js_1.handleListObjects; } });
|
|
30
|
+
Object.defineProperty(exports, "listObjectsTool", { enumerable: true, get: function () { return listObjectsTool_js_1.listObjectsTool; } });
|
|
31
|
+
var updateObjectTool_js_1 = require("./updateObjectTool.js");
|
|
32
|
+
Object.defineProperty(exports, "handleUpdateObject", { enumerable: true, get: function () { return updateObjectTool_js_1.handleUpdateObject; } });
|
|
33
|
+
Object.defineProperty(exports, "updateObjectTool", { enumerable: true, get: function () { return updateObjectTool_js_1.updateObjectTool; } });
|
|
40
34
|
//# sourceMappingURL=index.js.map
|
package/dist/tools/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":";;;AAAA,qDAAiE;AAAxD,+GAAA,YAAY,OAAA;AAAE,iHAAA,cAAc,OAAA;AACrC,2EAGsC;AAFpC,qIAAA,uBAAuB,OAAA;AACvB,uIAAA,yBAAyB,OAAA;AAE3B,mEAGkC;AAFhC,6HAAA,mBAAmB,OAAA;AACnB,+HAAA,qBAAqB,OAAA;AAEvB,uDAAoE;AAA3D,iHAAA,aAAa,OAAA;AAAE,mHAAA,eAAe,OAAA;AACvC,6DAA6E;AAApE,uHAAA,gBAAgB,OAAA;AAAE,yHAAA,kBAAkB,OAAA;AAC7C,6DAA6E;AAApE,uHAAA,gBAAgB,OAAA;AAAE,yHAAA,kBAAkB,OAAA;AAC7C,6DAA6E;AAApE,uHAAA,gBAAgB,OAAA;AAAE,yHAAA,kBAAkB,OAAA;AAC7C,uDAAoE;AAA3D,iHAAA,aAAa,OAAA;AAAE,mHAAA,eAAe,OAAA;AACvC,2DAA0E;AAAjE,uHAAA,iBAAiB,OAAA;AAAE,qHAAA,eAAe,OAAA;AAC3C,6DAA6E;AAApE,yHAAA,kBAAkB,OAAA;AAAE,uHAAA,gBAAgB,OAAA"}
|