@fcannizzaro/exocommand 1.0.1 → 1.0.2
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.
Potentially problematic release.
This version of @fcannizzaro/exocommand might be problematic. Click here for more details.
- package/README.md +6 -0
- package/dist/index.js +0 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -103,6 +103,12 @@ The server exposes two tools:
|
|
|
103
103
|
| `listCommands()` | Returns all available commands from the config file. |
|
|
104
104
|
| `execute(name)` | Executes a command by name, streaming output back to the client. |
|
|
105
105
|
|
|
106
|
+
Remember to tell the agent that they can use these tools to run commands on the project. For example:
|
|
107
|
+
|
|
108
|
+
```
|
|
109
|
+
You can run predefined shell commands using the `listCommands()` and `execute(name)` tools. Use `listCommands()` to see all available commands, and `execute(name)` to run a specific command.
|
|
110
|
+
```
|
|
111
|
+
|
|
106
112
|
## License
|
|
107
113
|
|
|
108
114
|
[MIT](LICENSE)
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@fcannizzaro/exocommand",
|
|
3
3
|
"module": "index.ts",
|
|
4
4
|
"description": "An MCP server that exposes user-defined shell commands as tools for AI coding assistants",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.2",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"homepage": "https://github.com/fcannizzaro/exocommand",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"test": "bun test"
|
|
34
34
|
},
|
|
35
35
|
"bin": {
|
|
36
|
-
"exocommand": "./index.js"
|
|
36
|
+
"exocommand": "./dist/index.js"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/bun": "latest"
|