Developer portal
接入 Lime 能力
这里把可接入的能力按模块放清楚:Agent App、专家、Skill、模型 API、Install器和客户端 SDK。先选当前要接的一层,再看对应document。
Lime 开放平台
这里不是一页 API 列表。首批按三个常见用法组织:Agent App 做完整应用,专家模块做长期复用的专业角色,Skill 做Installable的执行流程。
Agent App:
像小程序一样Install的应用
Agent App 是完整Installable应用,不是聊天专家或script片段。Studio 负责发布工具链;LimeCore 保存目录和Version;Lime Desktop 负责本地Install、校验和运行。
npx agentapp-ref@0.7.0 validate ./my-agent-app --version 0.7
npx agentapp-ref@0.7.0 readiness ./my-agent-app --workspace ./workspaceStudio 发布链路
Studio 是 Agent App Developer发布工具链。当前按开发中 / 路线图展示,不把未完成的 npm 包写成可立即发布Entry。
Developer认证
User Center绑定 developer profile,未通过认证不能上传包或创建 release。
权限与成员
Studio UI / CLI 查询 App role、membership 和可发布渠道。
Dry-run
校验 appId、version、channel、manifest summary 和权限,不写云端。
Package upload
上传 .zip / .lapp,云端静态检查并返回 package URL / hash。
Release & audit
创建 release,写发布、撤销、权限和包审计,客户端 bootstrap 发现更新。
Agent App
currentApp Developer / 企业团队
完整Installable应用,拥有自己的 UI、workflow、storage 和交付物。
Lime Desktop Host 本地运行,LimeCore 只做 catalog、release、license 和 audit。
阅读标准Expert / 专家模块
current / evolving专家作者 / operations团队
可长期复用的专业角色,适合人设、记忆模板、Skill 和 workflow 组合。
LimeCore 做专家云市场控制面;Lime Desktop 专家广场和 Agent Runtime 执行。
看路线图Skill / Workflow
current / evolving流程作者 / App 作者
Installable、可复用的执行流程,适合进入当前Task、专家和 Agent App。
skillCatalog / client/skills 下发目录;service skill 不伪装云端代跑。
进入Skill MarketplaceModel / Gateway
current / evolving模型服务商 / Developer
OpenAI 兼容 API、模型目录、provider 配置、用量和计费。
Lime Gateway / OEM Hub / 客户端 provider 配置共同承接。
查看 LLM APIContent / Template
current / evolving创作者 / operations团队
prompt word、使用案例、场景模板和内容工厂模板等轻量内容资产。
官网内容系统或 App 模板,不等同于 runtime app。
查看prompt wordTool / Connector
plannedSaaS / API 服务商
MCP、HTTP API、浏览器、OAuth、Webhook 和同步适配器。
未来由 ToolHub / Connector Broker 调用,客户端 readiness 授权。
路线图中Knowledge Pack
planned企业知识管理员
知识模板、资料包、检索绑定、freshness 和 provenance。
Knowledge 只作为可信上下文,不执行代码。
路线图中Client Extension
planned客户端扩展Developer
命令、面板、Artifact Viewer、站点适配器、终端和浏览器辅助能力。
未来在 Lime Desktop 宿主内运行,必须走 capability handle。
路线图中LimeCore 控制面
负责 catalog、release、developer profile、license、tenant enablement、ranking、audit 和 bootstrap projection。
Lime Desktop 宿主
负责应用中心、专家广场、Skills、包校验、本地缓存、capability 注入和 Agent Runtime 绑定。
包与目录
Agent App、Expert、Skill 各自拥有边界;可以互相引用,但不能互相替代或绕开平台治理。
Three common paths
Basically enough
Recommended entrance
@limecloud/creative-cli
npm install -g @limecloud/creative-cliTry the CLI link first
It is most suitable to run through the login, self-test and basic calls first. Don't jump to the official product connection at the beginning. It will save time to try out the link first.
Do the installation process or host boot
If you are making an installer, desktop shell, or IDE host, give this layer priority. It's more like bootstrapping than long-term running logic in a formal product.
Recommended entrance
@limecore/creative-installer-sdk
creative-cli client-setup --client-type "ide_host" --host "cursor" --jsonRecommended entrance
@limecore/api-client
creative-cli integration-path --client-type "product_client" --jsonAccess the official product client
Come to this point when you're ready to put logging, capability calls, and result reads into production code. It's more suitable for stable access rather than one-off experiments.
Commonly used documents
Basically these are the entrances
If you already know which floor you want to see, the following entrances are straightforward enough. Read the one most relevant to the current stage first, instead of reading all the documents at once.
Agent App 标准
完整Installable应用的 package、manifest、capability 和运行边界。
Open documentAgent App 快速start
从示例包、校验命令和 readiness start构建第一个 App。
Open document专家云市场路线图
专家目录、release、租户可见性、榜单、审核和审计边界。
Open documentSkill Marketplace
查看当前可直接打开或Install的Creative skill和service skillsEntry。
Enter pageStudio 路线图
Developer认证、Studio UI / CLI、dry-run、上传、release 和审计链路。
Open documentDeveloper认证
进入User Center开通Developer身份,认证后才能使用 Studio / CLI 发布。
Enter page开放平台 PRD
开放平台Category、Agent App 优先开放、专家 / Skill 协同和后续路线图。
Open documentLLM API
Official website entry for the OpenAI / Anthropic-compatible model API.
Enter pageInstallation guide
Let’s first look at the recommended order and who each path is probably suitable for.
Open documentCLI documentation
It is suitable to try out the login, self-test and basic processes first.
Open documentCLI npm package
Directly view package information and installation methods.
Open documentInstaller SDK
Suitable for installers, IDE hosts and desktop shells.
Open documentFormal client access
Start here when actually entering production code.
Open documentSource code warehouse
Enter the warehouse when you need to continue following the code.
Open document结构化Entry
如果你的系统要直接读取接入建议,可以使用这些稳定 URI。它们返回Recommended接法、宿主Install信息和正式接入路径。
Read client setup
creative-capability://owner/client-setup?clientType=product_clientReturns recommended connections, next steps, and optional installation information.
Read the official connection method
creative-capability://owner/integration-path?clientType=product_clientReturns recommended packages, sample commands, and documentation entries.
Read host installation information
creative-capability://owner/host-setup?host=cursorDirectly read how to install the current host to the IDE or installation process.