Files
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 13:10:45 +08:00

129 lines
4.0 KiB
Python

"""Sample alert tool."""
from __future__ import annotations
from collections.abc import Callable
from typing import Any
from rich.console import Console
from core.agent_harness.tools.tool_context import (
ActionToolContext,
execute_with_action_context,
object_schema,
string_property,
)
from core.tool_framework.registered_tool import RegisteredTool
from platform.common.task_types import TaskRecord
from surfaces.interactive_shell.session import Session
from tools.interactive_shell.shared.investigation_launch import launch_investigation
_SAMPLE_ALERT_TEMPLATES = ("generic",)
def run_sample_alert(
template_name: str,
session: Session,
console: Console,
*,
confirm_fn: Callable[[str], str] | None = None,
is_tty: bool | None = None,
action_already_listed: bool = False,
) -> None:
from surfaces.interactive_shell.runtime.investigation_adapter import (
repl_investigation_launch_ports,
run_sample_alert_for_session,
)
def _run(task: TaskRecord) -> dict[str, object]:
return run_sample_alert_for_session(
template_name=template_name,
context_overrides=session.accumulated_context or None,
cancel_requested=task.cancel_requested,
)
def _start_background() -> None:
from surfaces.interactive_shell.runtime.background.runner import (
start_background_template_investigation,
)
start_background_template_investigation(
template_name=template_name,
session=session,
console=console,
display_command=f"sample alert:{template_name}",
)
launch_investigation(
session=session,
console=console,
ports=repl_investigation_launch_ports(),
tool_type="sample_alert",
action_summary=f"sample alert investigation ({template_name})",
announce_label="sample alert",
announce_value=template_name,
record_value=f"sample:{template_name}",
foreground_task_command=f"sample alert:{template_name}",
exception_context="surfaces.interactive_shell.sample_alert",
run=_run,
start_background=_start_background,
confirm_fn=confirm_fn,
is_tty=is_tty,
action_already_listed=action_already_listed,
)
def execute_sample_alert_tool(args: dict[str, Any], ctx: ActionToolContext) -> bool:
template = str(args.get("template", "")).strip()
if not template:
return False
run_sample_alert(
template,
ctx.session,
ctx.console,
confirm_fn=ctx.confirm_fn,
is_tty=ctx.is_tty,
action_already_listed=ctx.action_already_listed,
)
return True
def run_sample_alert_action(*, template: str, context: Any) -> dict[str, Any]:
return execute_with_action_context(
{"template": template},
context,
execute_sample_alert_tool,
)
alert_sample_tool = RegisteredTool(
name="alert_sample",
description=(
"Run the built-in synthetic sample alert end-to-end (read alert → "
"investigate → diagnose). Use for any request to run/try/start/launch/"
"fire/trigger/investigate/look at a 'sample alert', 'test alert', or "
"'demo alert' (e.g. 'investigate a sample test alert?', 'kick off a "
"sample alert'). These requests carry NO real pasted alert text — that "
"is what separates them from investigation_start. Prefer this over "
"investigation_start and assistant_handoff for sample/test/demo alerts, "
"regardless of the verb or a trailing '?'."
),
input_schema=object_schema(
properties={
"template": string_property(
description="Sample alert template name to run.",
enum=_SAMPLE_ALERT_TEMPLATES,
)
},
required=("template",),
),
source="interactive_shell",
surfaces=("action",),
parallel_safe=False,
accepts_runtime_context=True,
run=run_sample_alert_action,
)
__all__ = ["alert_sample_tool", "execute_sample_alert_tool", "run_sample_alert"]