@sisu-ai/tool-terminal 7.1.0 → 7.1.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.
Files changed (2) hide show
  1. package/README.md +76 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @sisu-ai/tool-terminal
2
2
 
3
- A secure terminal execution tool for Sisu agents. Provides sandboxed command execution with session support, a strict allow list, realpath-based path scoping, timeouts and basic file helpers. Commands run without a shell and reject control operators by default; optional shell-free pipelines (`|`) and sequences (`;`, `&&`, `||`) can be enabled via config.
3
+ Execute terminal commands safely from agents with scoped paths, timeouts, and command allow-listing.
4
4
 
5
5
  [![Tests](https://github.com/finger-gun/sisu/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/finger-gun/sisu/actions/workflows/tests.yml)
6
6
  [![CodeQL](https://github.com/finger-gun/sisu/actions/workflows/github-code-scanning/codeql/badge.svg)](https://github.com/finger-gun/sisu/actions/workflows/github-code-scanning/codeql)
@@ -153,3 +153,78 @@ Discover what you can do through examples or documentation. Check it out at http
153
153
  - [License](https://github.com/finger-gun/sisu/blob/main/LICENSE)
154
154
  - [Report a Bug](https://github.com/finger-gun/sisu/issues/new?template=bug_report.md)
155
155
  - [Request a Feature](https://github.com/finger-gun/sisu/issues/new?template=feature_request.md)
156
+
157
+ ---
158
+
159
+ ## Documentation
160
+
161
+ **Core** — [Package docs](packages/core/README.md) · [Error types](packages/core/ERROR_TYPES.md)
162
+
163
+ **Adapters** — [OpenAI](packages/adapters/openai/README.md) · [Anthropic](packages/adapters/anthropic/README.md) · [Ollama](packages/adapters/ollama/README.md)
164
+
165
+ <details>
166
+ <summary>All middleware packages</summary>
167
+
168
+ - [@sisu-ai/mw-agent-run-api](packages/middleware/agent-run-api/README.md)
169
+ - [@sisu-ai/mw-context-compressor](packages/middleware/context-compressor/README.md)
170
+ - [@sisu-ai/mw-control-flow](packages/middleware/control-flow/README.md)
171
+ - [@sisu-ai/mw-conversation-buffer](packages/middleware/conversation-buffer/README.md)
172
+ - [@sisu-ai/mw-cors](packages/middleware/cors/README.md)
173
+ - [@sisu-ai/mw-error-boundary](packages/middleware/error-boundary/README.md)
174
+ - [@sisu-ai/mw-guardrails](packages/middleware/guardrails/README.md)
175
+ - [@sisu-ai/mw-invariants](packages/middleware/invariants/README.md)
176
+ - [@sisu-ai/mw-orchestration](packages/middleware/orchestration/README.md)
177
+ - [@sisu-ai/mw-rag](packages/middleware/rag/README.md)
178
+ - [@sisu-ai/mw-react-parser](packages/middleware/react-parser/README.md)
179
+ - [@sisu-ai/mw-register-tools](packages/middleware/register-tools/README.md)
180
+ - [@sisu-ai/mw-tool-calling](packages/middleware/tool-calling/README.md)
181
+ - [@sisu-ai/mw-trace-viewer](packages/middleware/trace-viewer/README.md)
182
+ - [@sisu-ai/mw-usage-tracker](packages/middleware/usage-tracker/README.md)
183
+ </details>
184
+
185
+ <details>
186
+ <summary>All tool packages</summary>
187
+
188
+ - [@sisu-ai/tool-aws-s3](packages/tools/aws-s3/README.md)
189
+ - [@sisu-ai/tool-azure-blob](packages/tools/azure-blob/README.md)
190
+ - [@sisu-ai/tool-extract-urls](packages/tools/extract-urls/README.md)
191
+ - [@sisu-ai/tool-github-projects](packages/tools/github-projects/README.md)
192
+ - [@sisu-ai/tool-summarize-text](packages/tools/summarize-text/README.md)
193
+ - [@sisu-ai/tool-terminal](packages/tools/terminal/README.md)
194
+ - [@sisu-ai/tool-vec-chroma](packages/tools/vec-chroma/README.md)
195
+ - [@sisu-ai/tool-web-fetch](packages/tools/web-fetch/README.md)
196
+ - [@sisu-ai/tool-web-search-duckduckgo](packages/tools/web-search-duckduckgo/README.md)
197
+ - [@sisu-ai/tool-web-search-google](packages/tools/web-search-google/README.md)
198
+ - [@sisu-ai/tool-web-search-openai](packages/tools/web-search-openai/README.md)
199
+ - [@sisu-ai/tool-wikipedia](packages/tools/wikipedia/README.md)
200
+ </details>
201
+
202
+ <details>
203
+ <summary>All examples</summary>
204
+
205
+ **Anthropic** — [hello](examples/anthropic-hello/README.md) · [control-flow](examples/anthropic-control-flow/README.md) · [stream](examples/anthropic-stream/README.md) · [weather](examples/anthropic-weather/README.md)
206
+
207
+ **Ollama** — [hello](examples/ollama-hello/README.md) · [stream](examples/ollama-stream/README.md) · [vision](examples/ollama-vision/README.md) · [weather](examples/ollama-weather/README.md) · [web-search](examples/ollama-web-search/README.md)
208
+
209
+ **OpenAI** — [hello](examples/openai-hello/README.md) · [weather](examples/openai-weather/README.md) · [stream](examples/openai-stream/README.md) · [vision](examples/openai-vision/README.md) · [reasoning](examples/openai-reasoning/README.md) · [react](examples/openai-react/README.md) · [control-flow](examples/openai-control-flow/README.md) · [branch](examples/openai-branch/README.md) · [parallel](examples/openai-parallel/README.md) · [graph](examples/openai-graph/README.md) · [orchestration](examples/openai-orchestration/README.md) · [orchestration-adaptive](examples/openai-orchestration-adaptive/README.md) · [guardrails](examples/openai-guardrails/README.md) · [error-handling](examples/openai-error-handling/README.md) · [rag-chroma](examples/openai-rag-chroma/README.md) · [web-search](examples/openai-web-search/README.md) · [web-fetch](examples/openai-web-fetch/README.md) · [wikipedia](examples/openai-wikipedia/README.md) · [terminal](examples/openai-terminal/README.md) · [github-projects](examples/openai-github-projects/README.md) · [server](examples/openai-server/README.md) · [aws-s3](examples/openai-aws-s3/README.md) · [azure-blob](examples/openai-azure-blob/README.md)
210
+ </details>
211
+
212
+ ---
213
+
214
+ ## Contributing
215
+
216
+ We build Sisu in the open. Contributions welcome.
217
+
218
+ [Contributing Guide](CONTRIBUTING.md) · [Report a Bug](https://github.com/finger-gun/sisu/issues/new?template=bug_report.md) · [Request a Feature](https://github.com/finger-gun/sisu/issues/new?template=feature_request.md) · [Code of Conduct](CODE_OF_CONDUCT.md)
219
+
220
+ ---
221
+
222
+ <div align="center">
223
+
224
+ **[Star on GitHub](https://github.com/finger-gun/sisu)** if Sisu helps you build better agents.
225
+
226
+ *Quiet, determined, relentlessly useful.*
227
+
228
+ [Apache 2.0 License](LICENSE)
229
+
230
+ </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sisu-ai/tool-terminal",
3
- "version": "7.1.0",
3
+ "version": "7.1.2",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -12,7 +12,7 @@
12
12
  "zod": "^3.23.8"
13
13
  },
14
14
  "peerDependencies": {
15
- "@sisu-ai/core": "^2.3.1"
15
+ "@sisu-ai/core": "^2.3.3"
16
16
  },
17
17
  "repository": {
18
18
  "type": "git",