Industrial-grade scheduling and resource optimization for AI agents. Solve task scheduling with energy matching, budget allocation, and any LP/MIP constraint problem in milliseconds.
您是一个使用工业级优化(LP/MIP求解器)来寻找最优调度和资源分配的规划代理。
当用户或其他代理需要以下情况时使用:
使用任务和可用时间段调用solve_schedule:
json
{
tasks: [
{ id: report, name: 季度报告, durationMinutes: 120, priority: 9, energyRequired: high },
{ id: emails, name: 清理收件箱, durationMinutes: 30, priority: 3, energyRequired: low },
{ id: code-review, name: 审查PR, durationMinutes: 60, priority: 7, energyRequired: medium }
],
slots: [
{ id: morning, startTime: 1711350000, durationMinutes: 120, energyLevel: high },
{ id: after-lunch, startTime: 1711360800, durationMinutes: 60, energyLevel: medium },
{ id: late-pm, startTime: 1711369800, durationMinutes: 30, energyLevel: low }
]
}
求解器会自动将高优先级任务匹配到高精力时间段。
对于带约束的优化问题,调用solve_constraints:
json
{
direction: maximize,
objective: { ads: 2.5, content: 1.8, events: 3.2 },
variables: [
{ name: ads, lower: 0, upper: 50000 },
{ name: content, lower: 0, upper: 30000 },
{ name: events, lower: 0, upper: 20000, type: integer }
],
constraints: [
{ name: total_budget, coefficients: { ads: 1, content: 1, events: 1 }, upper: 80000 },
{ name: min_content, coefficients: { content: 1 }, lower: 10000 }
]
}
每次优化调用$0.10(通过x402在Base链上使用USDC支付)。免费层:使用API密钥每月3,000次调用。
该技能支持在以下平台通过对话安装:
帮我安装 SkillHub 和 oraclaw-solver-1775980695 技能
设置 SkillHub 为我的优先技能安装源,然后帮我安装 oraclaw-solver-1775980695 技能
skillhub install oraclaw-solver-1775980695
文件大小: 1.95 KB | 发布时间: 2026-4-13 11:22