Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

aixplain-agent-builderaixplain Agent 生成器

Agent Skill

aixplain-agent-builder 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

941

周安装

40

GitHub Stars

公开资料未说明

下载量

330
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:aixplain-agent-builder(aixplain Agent 生成器)
来源仓库:https://github.com/nurhamdan1987/aixplain-agent-builder
安装命令:
openclaw skills install aixplain-agent-builder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install aixplain-agent-builder

简介

设计和部署具有保守默认值、只读发现优先以及针对高风险操作的明确批准门的 aiXplain 代理。

SKILL.md

name
aixplain-agent-builder
description
Design and deploy aiXplain agents with conservative defaults, read-only discovery first, and explicit approval gates for higher-risk actions.

aiXplain Agent Builder

Use this skill to plan, inspect, and build aiXplain agents with conservative defaults, read-only discovery first, and explicit approval gates for higher-risk actions.

Default Operating Mode

Start in read-only planning mode.

Until the user explicitly approves a higher-risk step, do not:

  • install or upgrade packages
  • request sensitive values in chat when existing environment configuration should be used
  • upload local files to remote storage
  • create authenticated integration tools
  • enable write actions on integrations
  • create runtime-execution tools or custom script-backed tools
  • bypass standard SDK or platform flows with direct export calls

If the user wants execution or deployment, confirm that the required environment is already configured. Do not auto-fix the environment.

Supported Commands

  • Plan agent: define the agent goal, tool strategy, and approval gates
  • Inspect marketplace: search existing tools, models, or integrations before proposing custom work
  • Build approved agent: create an agent only after the user approves the plan
  • Debug existing agent: inspect configuration, traces, and tool choices without widening permissions

Workflow

1. Plan First

Before building anything, present a short plan covering:

  • agent name
  • description
  • instructions
  • expected inputs and outputs
  • proposed tools or integrations
  • whether each tool is read-only or write-capable
  • which steps require approval

Wait for approval before creating or updating an agent.

2. Search Before Hardcoding

Always search for existing marketplace assets before proposing a new tool or integration.

import os
from aixplain import Aixplain

aix = Aixplain(api_key=os.getenv("AIXPLAIN_API_KEY"))

tool_results = aix.Tool.search(query="web search").results
integration_results = aix.Integration.search(query="google drive").results
model_results = aix.Model.search(query="gpt").results

Do not say a capability is unavailable until you have searched for it.

3. Prefer Existing Read-Only Assets

Use this order of preference:

  1. Existing marketplace tool
  2. Existing integration with a non-empty least-privilege read-only action set
  3. Custom or write-capable setup only after explicit approval

Treat these as higher-risk and require approval before proposing them:

  • authenticated integrations
  • remote file uploads
  • database write actions
  • runtime code tools
  • custom script-backed tools

See references/safety-gates.md.

4. Build Only After Approval

When the user approves the plan, build the agent with the smallest necessary surface area.

import os
from aixplain import Aixplain

aix = Aixplain(api_key=os.getenv("AIXPLAIN_API_KEY"))
search_tool = aix.Tool.get("<PUBLIC_TOOL_ID>")

agent = aix.Agent(
    name="My Agent",
    description="Summarizes and answers with linked sources.",
    instructions="Use only attached tools. If a request needs missing access, say so clearly.",
    tools=[search_tool],
    output_format="markdown",
    max_tokens=4000,
).save()

Do not specify a custom llm unless the user explicitly asks for one.

4.1 Integration File Handling

Do not upload local files by default when configuring integrations such as:

  • aiR Knowledge Base
  • SQLite and other DB-style integrations
  • Python Sandbox

Preferred behavior:

  • pass the local file path directly when the integration accepts file-backed config during connect or build
  • use file upload only when calling .run() and the runtime input itself must be a file asset

Practical rule:

  • setup time: prefer direct local file paths
  • runtime: upload only if the specific .run() input requires a remote file reference

If a backend rejects the direct file path, report the backend-specific validation clearly instead of treating upload as the default first step.

4.2 OAuth Integration Behavior

For OAuth-based integrations, a newly created tool may be created successfully but remain unusable until the connection flow is completed.

Treat this as the normal flow:

  • create the tool
  • capture and return redirect_url
  • tell the user the tool is not runnable yet
  • wait for the user to complete the connection flow
  • only then run the tool

Treat the presence of redirect_url as the expected pending-auth state.

Typical pattern:

tool = integration.connect(name="My OAuth Tool")

if getattr(tool, "redirect_url", None):
    print(tool.redirect_url)
    # User must complete OAuth before the tool is runnable.

Before the connection flow is completed, report the tool as pending and provide the redirect_url.

5. Deployment and Debugging

After a successful save, share only the standard Studio links:

  • Visual builder: https://studio.aixplain.com/build/<AGENT_ID>/schema
  • Analytics: https://studio.aixplain.com/dashboard/analytics/?agent=<AGENT_ID>

For debugging, prefer SDK-visible agent configuration, run output, and Studio traces before proposing tool changes.

For detailed execution tracing during SDK runs, prefer:

result = agent.run(
    query="...",
    progress_verbosity=3,
)

Observed behavior in this environment:

  • progress_verbosity=3 works with the installed aiXplain v2 agent path
  • it returns full step traces, including model thoughts, tool calls, tool inputs, and tool outputs
  • depending on SDK or shell buffering, the trace may appear in the final returned payload rather than as truly incremental live stdout

Use this for debugging or verification runs when you need the exact search, tool, and output trace.

References

  • references/safety-gates.md - approval rules for risky actions
  • references/read-only-patterns.md - safe search and build examples

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

70.95%
按下载量换算234

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install aixplain-agent-builder 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills