execute_bash— Execute a shell command.fs_read— Read files, directories, and images.fs_write— Create and edit files.gh_issue— Open a GitHub issue template.knowledge— Store and retrieve information in a knowledge base.thinking— Internal reasoning mechanism.use_aws— Make AWS CLI API calls.
Execute the specified bash command.
{
"type": "object",
"properties": {
"allowedCommands": {
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"allowReadOnly": {
"type": "boolean",
"default": true
}
}
}{
"allowedCommands": ["git status", "git fetch"],
"allowReadOnly": true
}Tool for reading files, directories and images.
{
"type": "object",
"properties": {
"allowedPaths": {
"type": "array",
"items": {
"type": "string"
},
"default": []
}
}
}{
"allowedPaths": ["~"]
}Tool for creating and editing files.
{
"type": "object",
"properties": {
"allowedPaths": {
"type": "array",
"items": {
"type": "string"
},
"default": []
}
}
}{
"allowedPaths": [
"~/file-to-create.txt",
"~/editable-file.txt",
"~/my-workspace/"
]
}Opens the browser to our GitHub template for reporting issues with q.
This tool has no configuration.
Store and retrieve information in knowledge base across chat sessions
This tool has no configuration.
Thinking is an internal reasoning mechanism improving the quality of complex tasks by breaking their atomic actions down.
This tool has no configuration.
Make an AWS CLI api call with the specified service, operation, and parameters.
{
"type": "object",
"properties": {
"allowedServices": {
"type": "array",
"items": {
"type": "string"
},
"default": []
}
}
}{
"allowedServices": ["s3", "iam"]
}