Initial commit: workspace setup with skills, memory, config

This commit is contained in:
root
2026-02-10 14:37:49 -06:00
commit d1357c5463
77 changed files with 10822 additions and 0 deletions

42
skills/searxng/tools.json Normal file
View File

@@ -0,0 +1,42 @@
{
"tools": [
{
"name": "searx_search",
"description": "Search the web using local SearXNG instance at http://10.0.0.8:8888",
"parameters": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The search query to perform"
},
"count": {
"type": "integer",
"description": "Number of results to return (1-20)",
"default": 5,
"minimum": 1,
"maximum": 20
},
"lang": {
"type": "string",
"description": "Language code for search results (e.g., 'en', 'de', 'fr')",
"default": "en"
},
"safesearch": {
"type": "integer",
"description": "Safe search level: 0=off, 1=moderate, 2=strict",
"default": 0,
"minimum": 0,
"maximum": 2
}
},
"required": ["query"]
},
"entry": {
"type": "node",
"path": "searx-search.js",
"args": ["{{args}}"]
}
}
]
}