OpenAgentSkill Agent Integration Kit Version: openagentskill-agent-integration-kit-v1 Purpose: Let an AI agent resolve a task into the right reusable skill, compare alternatives, review trust signals, and install with a safe handoff. Canonical: - Page: https://www.openagentskill.com/agent/integration-kit - API: https://www.openagentskill.com/api/agent/integration-kit - Resolve API: https://www.openagentskill.com/api/agent/resolve - Receipt API: https://www.openagentskill.com/api/agent/receipt - Manifest: https://www.openagentskill.com/.well-known/agent-manifest.json - llms.txt: https://www.openagentskill.com/llms.txt Recommended Flow: 1. Read /llms.txt or /.well-known/agent-manifest.json. 2. Choose the Codex, Claude Code, or Cursor template for the active agent surface. 3. Call /api/agent/resolve with task, agent, max_risk, and optional min_stars. 4. Read install_receipt, recommendation.best_skill, recommendation.install, recommendation.risk, and agent_handoff. 5. Fetch /api/agent/receipt?task=...&agent=...&format=text when a compact pre-install execution record is easier for the agent runtime. 6. If auto_install_allowed is false, ask for human approval before installing. 7. Fetch /api/agent/evals and /api/agent/skills/{slug} before production use. 8. Install in a sandbox or low-risk workspace first. 9. Report success, failed, not_relevant, blocked_by_risk, or setup_required to /api/agent/outcome with output_quality, workspace, and error_type when available. Supported Agents: - Codex: Coding agent / local workspace Resolve: https://www.openagentskill.com/api/agent/resolve?task=scrape%20pricing%20pages%20and%20extract%20structured%20data&agent=codex&max_risk=medium Receipt: https://www.openagentskill.com/api/agent/receipt?task=scrape%20pricing%20pages%20and%20extract%20structured%20data&agent=codex&max_risk=medium&format=text Best for: repo-aware implementation, code review, debugging, web automation setup Setup: - Add the copy prompt to your Codex project instructions or paste it before a task. - Call the Resolve API with the current task and agent=codex. - Read agent_handoff.review_checklist before installing a third-party skill. - Install only in the active workspace after reporting files and commands that will be touched. - Claude Code: Claude Code skill workflow Resolve: https://www.openagentskill.com/api/agent/resolve?task=scrape%20pricing%20pages%20and%20extract%20structured%20data&agent=claude-code&max_risk=medium Receipt: https://www.openagentskill.com/api/agent/receipt?task=scrape%20pricing%20pages%20and%20extract%20structured%20data&agent=claude-code&max_risk=medium&format=text Best for: local skill instructions, project workflows, documentation-heavy tasks Setup: - Paste the copy prompt into Claude Code custom instructions or the start of a new task. - Call the Resolve API with agent=claude-code. - Use install targets only after audit and eval checks are acceptable. - Keep the skill scoped to the project and summarize activation steps. - Cursor: Cursor rules / agent instructions Resolve: https://www.openagentskill.com/api/agent/resolve?task=scrape%20pricing%20pages%20and%20extract%20structured%20data&agent=cursor&max_risk=medium Receipt: https://www.openagentskill.com/api/agent/receipt?task=scrape%20pricing%20pages%20and%20extract%20structured%20data&agent=cursor&max_risk=medium&format=text Best for: project rules, repeatable coding workflows, IDE assistant guidance Setup: - Paste the copy prompt into Cursor rules or the agent chat before a workflow. - Call the Resolve API with agent=cursor. - Turn the selected skill into a narrow project rule only when the safety gate allows it. - Keep generated rules task-scoped and avoid broad always-on instructions. Stable Response Fields: - feedback.event_id - feedback.outcome_api - feedback.cli_example - install_receipt.receipt_id - install_receipt.selected_skill - install_receipt.install - install_receipt.risk - install_receipt.outcome_feedback - agent_feedback_loop - recommendation.best_skill - recommendation.install - recommendation.why_recommended - recommendation.risk - recommendation.alternatives - agent_handoff.platform_templates - agent_handoff.review_checklist - agent_handoff.api_sequence - policy_decision Safety Rules: - Do not auto-install when safety_gate.blocked is true. - Do not auto-install when recommendation.install.auto_install_allowed is false. - Escalate for human approval when shell, env, token, network, license, or unclear maintenance risk appears. - Prefer a lower-risk alternative when the selected skill has high risk notes.