Resolve
Resolve a task into one safe install plan
Calls /api/agent/resolve and returns the selected skill, alternatives, safety profile, and install prompt.
openagentskill resolve "scrape competitor pricing pages" --agent codex --max-risk mediumCLI contract
OpenAgentSkill CLI turns a natural-language task into a selected skill, safety policy decision, target-specific install handoff, and audit trail.
Resolve
Calls /api/agent/resolve and returns the selected skill, alternatives, safety profile, and install prompt.
openagentskill resolve "scrape competitor pricing pages" --agent codex --max-risk mediumInstall
Returns Codex, Claude Code, Cursor, and CLI install handoffs from the canonical skill record.
openagentskill install crawl4ai --agent claude-codeEvaluate
Runs the public recommendation benchmark so ranking changes can be checked before deployment.
openagentskill evalsResolve API
The important product surface is the decision object: selected skill, alternatives, policy result, safety score, install plan, and benchmark link. Agents can call the same endpoint directly without opening a browser.
Request
{
"task": "review a pull request and summarize risky changes",
"agent": "codex",
"constraints": {
"max_risk": "medium",
"needs_install_command": true,
"min_stars": 500
}
}Future lockfile
{
"version": 1,
"skills": {
"crawl4ai": {
"source": "github.com/unclecode/crawl4ai",
"audit_score": 92,
"safety_score": 80,
"resolved_at": "2026-06-10T00:00:00.000Z"
}
}
}