edgeone-makers-agents
Installation
SKILL.md
EdgeOne Makers Agent Development Guide
⛔ 预览禁令:开发完成后必须通过
edgeone makers dev启动 dev server,再用present_files打开http://127.0.0.1:8088/预览。严禁用file://协议打开 HTML 文件(即使 IDE 自动打开了也要忽略),严禁用python -m http.server、npx serve等自建 server。Next.js 项目还需在next.config中配置allowedDevOrigins: ["127.0.0.1"]。
Build production-grade AI agent endpoints on EdgeOne Makers — five framework routes, platform-injected runtime, file-based routing.
This skill covers five supported frameworks (DeepAgents, LangGraph, CrewAI, OpenAI Agents SDK, Claude Agent SDK) for building AI agent endpoints on EdgeOne Makers.
When to use this skill
- Creating a new AI agent endpoint on EdgeOne Makers
- Wiring DeepAgents / LangGraph / CrewAI / OpenAI Agents SDK / Claude Agent SDK into a Makers project
- Reviewing an existing agent template against platform red lines
- Implementing SSE streaming with abort support
- Persisting conversation state via
context.store(LangGraph checkpointer / OpenAI session / Claude session) - Calling sandbox or platform tools via
context.sandbox/context.tools - Splitting AI inference (
agents/) from data CRUD (cloud-functions/)