minovative-mind-cli 2.4.0 → 2.5.0
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 +5 -0
- package/dist/commands/chat.js +1 -0
- package/dist/services/agent/slashCommands.js +106 -2
- package/dist/services/agent/toolLoop.js +5 -17
- package/dist/services/agent-tools.js +26 -14
- package/dist/services/agent.js +1 -0
- package/dist/services/ai.d.ts +1 -1
- package/dist/services/ai.js +128 -13
- package/dist/services/changeLogger.js +2 -2
- package/dist/services/contextAgent.js +5 -35
- package/dist/services/metrics.d.ts +6 -8
- package/dist/services/orchestration/investigationAgent.js +0 -32
- package/dist/services/orchestration/investigationOrchestrator.js +1 -1
- package/dist/services/orchestration/messageBus.d.ts +1 -1
- package/dist/services/orchestration/messageBus.js +14 -14
- package/dist/services/orchestration/readCache.js +1 -1
- package/dist/services/orchestration/scopedTools.js +2 -1
- package/dist/services/orchestration/subAgent.js +10 -26
- package/dist/services/proxyClient.d.ts +8 -0
- package/dist/services/proxyClient.js +17 -0
- package/dist/services/verificationService.js +15 -6
- package/dist/utils/config.d.ts +4 -0
- package/dist/utils/config.js +8 -0
- package/dist/utils/credentialStore.d.ts +7 -0
- package/dist/utils/credentialStore.js +8 -0
- package/dist/utils/syntaxValidator.js +125 -21
- package/oclif.manifest.json +2 -2
- package/package.json +1 -2
package/oclif.manifest.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"chat": {
|
|
4
4
|
"aliases": [],
|
|
5
5
|
"args": {},
|
|
6
|
-
"description": "Start an interactive AI coding agent session powered by Vertex AI.\n\nInside the chat session, you can use the following commands in the slash menu:\n /models - Select the active model\n /plan - Toggle plan mode to review implementation strategies\n /paste - Enter multi-line paste mode for long snippets\n /clear - Clear conversation history\n /debug - Debug tests or command execution in a sandbox loop\n /auto-approve - Toggle automatic approval of tool/command runs\n /sub-agents - Toggle the MMAAK Engine for parallel investigation and execution\n /workspaces - Manage external workspaces for cross-project development\n /stats - View current session statistics and configuration\n /commit - Commit current workspace changes to Git\n /revert - Revert the last file modification made by the agent\n /chats - View, resume, or delete previous chat sessions (includes bulk delete)\n \nChat Controls:\n - Multi-line Input: End a line with \\ to continue on the next line\n - Stop/Abort: Type \"stop\" to immediately interrupt agent generation\n - Exit Session: Type \"exit\" or \"quit\" to end the agent session",
|
|
6
|
+
"description": "Start an interactive AI coding agent session powered by Vertex AI.\n\nInside the chat session, you can use the following commands in the slash menu:\n /models - Select the active model\n /plan - Toggle plan mode to review implementation strategies\n /paste - Enter multi-line paste mode for long snippets\n /clear - Clear conversation history\n /debug - Debug tests or command execution in a sandbox loop\n /auto-approve - Toggle automatic approval of tool/command runs\n /sub-agents - Toggle the MMAAK Engine for parallel investigation and execution\n /workspaces - Manage external workspaces for cross-project development\n /config-key - BYOK (Bring Your Own Key) Configuration\n /stats - View current session statistics and configuration\n /commit - Commit current workspace changes to Git\n /revert - Revert the last file modification made by the agent\n /chats - View, resume, or delete previous chat sessions (includes bulk delete)\n \nChat Controls:\n - Multi-line Input: End a line with \\ to continue on the next line\n - Stop/Abort: Type \"stop\" to immediately interrupt agent generation\n - Exit Session: Type \"exit\" or \"quit\" to end the agent session",
|
|
7
7
|
"examples": [
|
|
8
8
|
"<%= config.bin %> chat",
|
|
9
9
|
"<%= config.bin %> chat --help"
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
]
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
|
-
"version": "2.
|
|
68
|
+
"version": "2.5.0"
|
|
69
69
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "minovative-mind-cli",
|
|
3
3
|
"description": "An automated AI agent powered by Vertex AI that helps you write software",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.5.0",
|
|
5
5
|
"author": "Daniel Ward",
|
|
6
6
|
"bin": {
|
|
7
7
|
"minovative-mind-cli": "bin/run.js"
|
|
@@ -83,7 +83,6 @@
|
|
|
83
83
|
"posttest": "npm run lint",
|
|
84
84
|
"prepack": "npm run build && oclif manifest && oclif readme --no-source-links",
|
|
85
85
|
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
86
|
-
"test:regression": "NODE_NO_WARNINGS=1 mocha --node-option loader=ts-node/esm test/regression/regression.test.ts",
|
|
87
86
|
"version": "oclif readme --no-source-links && git add README.md"
|
|
88
87
|
},
|
|
89
88
|
"types": "dist/index.d.ts"
|