4b6817381b
CI (OpenClaw E2E) / openclaw test (push) Has been cancelled
CI / coverage-report (push) Has been cancelled
CI / test-kubernetes (push) Has been cancelled
CI / should-run-thorough (push) Has been cancelled
CI / test-thorough (cloudwatch-demo) (push) Has been cancelled
CI / test-thorough (flink-ecs) (push) Has been cancelled
CI / test-thorough (upstream-lambda) (push) Has been cancelled
CI / test-thorough (prefect-ecs-fargate) (push) Has been cancelled
Release / build-binaries (zip, opensre.exe, onefile, windows-latest, windows-x64) (push) Has been cancelled
Benchmark image — build + push to ECR (any adapter) / build + push (push) Has been cancelled
CI / quality (ubuntu-latest) (push) Has been cancelled
CI / test (tools-runtime) (push) Has been cancelled
CI / test (e2e-general) (push) Has been cancelled
CI / test (cli-runtime) (push) Has been cancelled
CI / test (e2e-provider-and-openclaw) (push) Has been cancelled
CI / test (integrations-and-misc) (push) Has been cancelled
Release / verify (push) Has been cancelled
Release / build-python-dist (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-15-intel, darwin-x64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-latest, darwin-arm64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04, linux-x64) (push) Has been cancelled
Release / publish-release (push) Has been cancelled
Release / publish-main-release (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-checks (no-LLM) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-live shard ${{ matrix.shard_index }} (push) Has been cancelled
Release / prepare (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04-arm, linux-arm64) (push) Has been cancelled
Synthetic Deterministic Tests / Synthetic offline (deterministic) (push) Has been cancelled
90 lines
2.9 KiB
Plaintext
90 lines
2.9 KiB
Plaintext
---
|
|
description: Tool development patterns for investigation and chat tools
|
|
globs:
|
|
- tools/**
|
|
- integrations/**/tools/**
|
|
---
|
|
|
|
# Tool Development
|
|
|
|
## Where tools live
|
|
|
|
After the V0.2 Phase 1 refactor there are two locations:
|
|
|
|
- `integrations/<vendor>/tools/` — vendor-specific tools (one folder per vendor)
|
|
Example: `integrations/grafana/tools/`
|
|
- `tools/` — non-vendor tools only (fleet monitoring, SRE guidance, investigation
|
|
helpers, etc.)
|
|
|
|
Do NOT create new vendor tool directories directly under `tools/`.
|
|
|
|
## Two Registration Patterns
|
|
|
|
### 1. Function + `@tool` decorator (preferred for simple tools, required for vendor tools)
|
|
|
|
- Vendor tools: add `@tool`-decorated functions in `integrations/<vendor>/tools/__init__.py`
|
|
- Non-vendor tools: single file under `tools/`
|
|
|
|
```python
|
|
from tools.tool_decorator import tool
|
|
|
|
@tool(
|
|
name="my_tool_name",
|
|
source="grafana", # Required: EvidenceSource literal
|
|
description="What this tool does.",
|
|
use_cases=["When to use it"],
|
|
requires=["api_key"],
|
|
input_schema={...}, # Optional: inferred from signature if omitted
|
|
is_available=my_check_fn, # (sources: dict) -> bool
|
|
extract_params=my_extract, # (sources: dict) -> dict
|
|
surfaces=("investigation",), # Default; add "chat" to expose in chat mode
|
|
)
|
|
def my_tool_name(param: str) -> dict:
|
|
...
|
|
```
|
|
|
|
### 2. `BaseTool` subclass (for complex non-vendor tools with helpers)
|
|
|
|
Package directory: `tools/<tool_name>/__init__.py`. Instantiate at module level.
|
|
|
|
```python
|
|
from tools.base import BaseTool
|
|
|
|
class MyToolName(BaseTool):
|
|
name = "my_tool_name"
|
|
source = "grafana"
|
|
description = "..."
|
|
input_schema = {
|
|
"type": "object",
|
|
"properties": {...},
|
|
"required": [...],
|
|
}
|
|
use_cases = [...]
|
|
requires = [...]
|
|
outputs = {"field": "description"}
|
|
|
|
def is_available(self, sources: dict) -> bool: ...
|
|
def extract_params(self, sources: dict) -> dict: ...
|
|
def run(self, param: str, **_kwargs) -> dict: ...
|
|
|
|
my_tool_name = MyToolName()
|
|
```
|
|
|
|
## Rules
|
|
|
|
- `source` is **required** — must be a valid `EvidenceSource` literal from
|
|
`core/domain/types/evidence.py`
|
|
- Tool packages under `tools/` use **snake_case** directory names — no PascalCase, no `Tool` suffix in the dir name
|
|
- The registry auto-discovers tools via `pkgutil.iter_modules`
|
|
- Do NOT add your module to `_SKIP_MODULE_NAMES` in `registry.py`
|
|
- Module names ending in `_test` are auto-skipped by the registry
|
|
- `surfaces` defaults to `("investigation",)` — add `"chat"` explicitly if needed
|
|
- For `BaseTool`: instantiate the class at module level so the registry can find it
|
|
- Return `dict` from `run()` with an `"error"` key on failure, structured data on success
|
|
|
|
## Valid `EvidenceSource` Values
|
|
|
|
`storage`, `batch`, `tracer_web`, `cloudwatch`, `aws_sdk`, `knowledge`, `grafana`,
|
|
`datadog`, `honeycomb`, `coralogix`, `eks`, `github`, `sentry`, `google_docs`,
|
|
`vercel`, `opsgenie`, `elasticsearch`
|