Lime

Developer portal接入 Lime 能力

这里把可接入的能力按模块放清楚:Agent App、专家、Skill、模型 API、Install器和客户端 SDK。先选当前要接的一层,再看对应document。

P0 current

Agent App:
像小程序一样Install的应用

APP

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 ./workspace

Studio 发布链路

Studio 是 Agent App Developer发布工具链。当前按开发中 / 路线图展示,不把未完成的 npm 包写成可立即发布Entry。

查看 Studio 路线图进入Developer认证
1

Developer认证

User Center绑定 developer profile,未通过认证不能上传包或创建 release。

2

权限与成员

Studio UI / CLI 查询 App role、membership 和可发布渠道。

3

Dry-run

校验 appId、version、channel、manifest summary 和权限,不写云端。

4

Package upload

上传 .zip / .lapp,云端静态检查并返回 package URL / hash。

5

Release & audit

创建 release,写发布、撤销、权限和包审计,客户端 bootstrap 发现更新。

Agent App

current

App 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 Marketplace

Model / Gateway

current / evolving

模型服务商 / Developer

OpenAI 兼容 API、模型目录、provider 配置、用量和计费。

Lime Gateway / OEM Hub / 客户端 provider 配置共同承接。

查看 LLM API

Content / Template

current / evolving

创作者 / operations团队

prompt word、使用案例、场景模板和内容工厂模板等轻量内容资产。

官网内容系统或 App 模板,不等同于 runtime app。

查看prompt word

Tool / Connector

planned

SaaS / 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。

路线图中
CP

LimeCore 控制面

负责 catalog、release、developer profile、license、tenant enablement、ranking、audit 和 bootstrap projection。

HOST

Lime Desktop 宿主

负责应用中心、专家广场、Skills、包校验、本地缓存、capability 注入和 Agent Runtime 绑定。

PKG

包与目录

Agent App、Expert、Skill 各自拥有边界;可以互相引用,但不能互相替代或绕开平台治理。

Three common paths
Basically enough

Recommended entrance

@limecloud/creative-cli

npm install -g @limecloud/creative-cli

Try 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.

Login and self-testBasic callRun through before continuing
View CLI instructions

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.

Installation wizardIDE hostdesktop shell
View installation access

Recommended entrance

@limecore/creative-installer-sdk

creative-cli client-setup --client-type "ide_host" --host "cursor" --json

Recommended entrance

@limecore/api-client

creative-cli integration-path --client-type "product_client" --json

Access 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.

Formal productResult readingStable access
View the official connection method

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.

结构化Entry

如果你的系统要直接读取接入建议,可以使用这些稳定 URI。它们返回Recommended接法、宿主Install信息和正式接入路径。

Read client setup

creative-capability://owner/client-setup?clientType=product_client

Returns recommended connections, next steps, and optional installation information.

Read the official connection method

creative-capability://owner/integration-path?clientType=product_client

Returns recommended packages, sample commands, and documentation entries.

Read host installation information

creative-capability://owner/host-setup?host=cursor

Directly read how to install the current host to the IDE or installation process.