genesis-ai-cli 7.15.5 → 7.15.6
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/src/cli/dispatcher.js +15 -0
- package/package.json +1 -1
|
@@ -172,6 +172,21 @@ const TOOL_ALIASES = {
|
|
|
172
172
|
'github_create_issue': 'create_issue',
|
|
173
173
|
'github_list_issues': 'list_issues',
|
|
174
174
|
'github_create_pull_request': 'create_pull_request',
|
|
175
|
+
// v7.15.6: GitHub dot-separated patterns
|
|
176
|
+
'github.search_repositories': 'search_repositories',
|
|
177
|
+
'github.searchRepositories': 'search_repositories',
|
|
178
|
+
'github.list_issues': 'list_issues',
|
|
179
|
+
'github.listIssues': 'list_issues',
|
|
180
|
+
'github.create_issue': 'create_issue',
|
|
181
|
+
'github.createIssue': 'create_issue',
|
|
182
|
+
'github.get_issue': 'get_issue',
|
|
183
|
+
'github.getIssue': 'get_issue',
|
|
184
|
+
'github.create_pull_request': 'create_pull_request',
|
|
185
|
+
'github.createPullRequest': 'create_pull_request',
|
|
186
|
+
'github.list_pull_requests': 'list_pull_requests',
|
|
187
|
+
'github.listPullRequests': 'list_pull_requests',
|
|
188
|
+
'github.get_file_contents': 'get_file_contents',
|
|
189
|
+
'github.getFileContents': 'get_file_contents',
|
|
175
190
|
// Meta-commands (handled specially)
|
|
176
191
|
'mcp_list_tools': '_meta_list_tools',
|
|
177
192
|
'list_tools': '_meta_list_tools',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "genesis-ai-cli",
|
|
3
|
-
"version": "7.15.
|
|
3
|
+
"version": "7.15.6",
|
|
4
4
|
"description": "Autonomous AI System Creator - Brain ON by default, Active Inference integrated, Curiosity-driven, Φ monitoring in every response",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|