返回顶部
m

mali-builder码力搭建器

自动调用码力搭建平台完成应用搭建。触发词:码力搭建、mali、低代码搭建、搭建应用、创建应用、管理系统、数据看板、表单系统。自动打开Chrome填充需求并点击发送。适合内部工具、数据展示、表单收集、快速原型开发。

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.1
安全检测
已通过
284
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

mali-builder

码力搭建 Skill

功能说明

该 Skill 用于调用码力搭建平台(Mali App Builder),自动化完成以下操作:
  1. 1. 在用户的 Chrome 浏览器中打开码力搭建平台
  2. 确保用户已登录
  3. 将用户的搭建需求自动填入对话框
  4. 触发搭建流程

触发条件

  • - 用户明确要求使用码力搭建、Mali或低代码搭建
  • 用户提出应用搭建需求,且适合使用低代码平台实现

操作流程

步骤 1: 打开码力搭建平台

使用 AppleScript(macOS)或其他系统命令打开 Chrome 浏览器并导航到码力搭建平台:

bash

macOS 使用 AppleScript


osascript -e tell application Google Chrome
activate
open location https://lowcode.baidu-int.com/ai-coding
end tell

Linux 使用 xdg-open

xdg-open https://lowcode.baidu-int.com/ai-coding

Windows 使用 start

start chrome https://lowcode.baidu-int.com/ai-coding

步骤 2: 等待页面加载

等待 3-5 秒确保页面完全加载,并检查用户登录状态。

步骤 3: 注入需求并触发搭建

使用 Chrome DevTools Protocol 或 JavaScript 注入来填充搭建需求:

javascript
// 通过 Chrome DevTools Protocol 执行
// 1. 找到输入框并填入需求
const inputBox = document.querySelector(textarea[placeholder*=描述], input[type=text]);
if (inputBox) {
inputBox.value = 用户的搭建需求内容;
inputBox.dispatchEvent(new Event(input, { bubbles: true }));
}

// 2. 找到发送按钮并点击
const sendButton = document.querySelector(button[type=submit], button.send-btn);
if (sendButton) {
sendButton.click();
}

步骤 4: 确认执行状态

  • - 验证请求已发送
  • 监控搭建进度
  • 向用户反馈当前状态

输出格式

执行完成后返回:

✅ 码力搭建已启动!

🌐 浏览器: Chrome
📍 平台地址: https://lowcode.baidu-int.com/ai-coding

📋 提交的需求:
{用户的原始需求}

⏳ 请在浏览器中查看搭建进度...

错误处理

浏览器未安装

❌ 未找到 Chrome 浏览器
💡 建议: 请安装 Chrome 浏览器后重试

登录状态异常

⚠️ 检测到未登录状态
💡 建议: 请先在浏览器中登录码力搭建平台
🔗 登录地址: https://lowcode.baidu-int.com/ai-coding

页面加载失败

❌ 页面加载失败
💡 建议:

  1. 1. 检查网络连接
  2. 确认是否在公司内网环境
  3. 手动访问平台进行搭建

技术实现

方案 A: AppleScript + Chrome (推荐 macOS)

applescript tell application Google Chrome activate set myTab to make new tab at end of tabs of window 1 set URL of myTab to https://lowcode.baidu-int.com/ai-coding delay 3 execute myTab javascript const input = document.querySelector(textarea, input[type=\text\]); if (input) { input.value = 用户需求内容; input.dispatchEvent(new Event(input, {bubbles: true})); const btn = document.querySelector(button[type=\submit\]); if (btn) btn.click(); }

end tell

方案 B: Python + Selenium (跨平台)

python from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC import time

def launchmalibuilder(user_requirement):
driver = webdriver.Chrome()
driver.get(https://lowcode.baidu-int.com/ai-coding)

# 等待页面加载
time.sleep(3)

# 查找输入框
try:
input_box = WebDriverWait(driver, 10).until(
EC.presenceofelementlocated((By.CSSSELECTOR, textarea, input[type=text]))
)
inputbox.sendkeys(user_requirement)

# 查找发送按钮
sendbtn = driver.findelement(By.CSS_SELECTOR, button[type=submit])
send_btn.click()

print(✅ 搭建需求已提交)
except Exception as e:
print(f❌ 操作失败: {str(e)})

方案 C: 纯命令行 (最简单)

bash #!/bin/bash

简单地打开浏览器到指定页面

用户需要手动输入需求

MALI_URL=https://lowcode.baidu-int.com/ai-coding

case $(uname -s) in
Darwin*)
open -a Google Chrome $MALI_URL
;;
Linux*)
xdg-open $MALIURL || google-chrome $MALIURL
;;
CYGWIN|MINGW|MSYS*)
start chrome $MALI_URL
;;
esac

echo ✅ 已在浏览器中打开码力搭建平台
echo 📍 $MALI_URL
echo
echo 📋 请手动输入以下需求:
echo $1

使用示例

示例 1: 简单应用搭建

用户: 帮我用码力搭建一个任务管理应用
助手: [执行 mali-builder skill]
✅ 码力搭建已启动!
📋 提交的需求: 任务管理应用

示例 2: 复杂需求搭建

用户: 使用码力搭建创建一个包含用户登录、数据看板、报表导出的管理系统
助手: [执行 mali-builder skill]
✅ 码力搭建已启动!
📋 提交的需求: 包含用户登录、数据看板、报表导出的管理系统

注意事项

  1. 1. 网络要求: 需要在公司内网或 VPN 环境下使用
  2. 浏览器要求: 推荐使用 Chrome 浏览器(最新版本)
  3. 登录状态: 首次使用需要手动登录一次
  4. 权限要求: 需要系统允许脚本控制浏览器的权限
  5. 自动化限制: 部分页面可能有反自动化机制,需要用户手动确认

兼容性

操作系统ChromeSafariFirefoxEdge
macOS⚠️
Linux
✅ | ❌ | ⚠️ | ❌ | | Windows | ✅ | ❌ | ⚠️ | ✅ |

✅ 完全支持 ⚠️ 部分支持 ❌ 不支持

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 mailprocess-1776158119 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 mailprocess-1776158119 技能

通过命令行安装

skillhub install mailprocess-1776158119

下载

⬇ 下载 mali-builder v1.0.1(免费)

文件大小: 12.55 KB | 发布时间: 2026-4-15 11:24

v1.0.1 最新 2026-4-15 11:24
No user-facing changes detected in this version.

- No file changes detected between this and the previous version.
- Functionality, triggers, and descriptions remain the same.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部