在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用chatos-ai
AI feature development skill. Use when adding models, tools, providers, or streaming features to chatOS.
星标0
分支0
更新时间2026年2月25日 18:57
SKILL.md
readonly菜单
AI feature development skill. Use when adding models, tools, providers, or streaming features to chatOS.
Deployment skill for chatOS. Use when deploying to Vercel, running DB migrations, or configuring environments.
Development workflow skill for the chatOS monorepo. Use when setting up, building, testing, or contributing to chatOS.
| name | chatos-ai |
| description | AI feature development skill. Use when adding models, tools, providers, or streaming features to chatOS. |
Edit packages/ai/src/models.ts:
{
id: "provider/model-name",
name: "Display Name",
provider: "provider",
description: "Brief description",
}
Models are accessed via Vercel AI Gateway (@ai-sdk/gateway).
packages/ai/src/tools/:import { z } from "zod";
export const myTool = {
description: "What this tool does",
parameters: z.object({
param: z.string().describe("Parameter description"),
}),
execute: async ({ param }: { param: string }) => {
// Implementation
return { result: "value" };
},
};
packages/ai/src/tools/index.tsapps/webimport { streamText } from "ai";
import { gateway } from "@ai-sdk/gateway";
const result = streamText({
model: gateway("anthropic/claude-sonnet-4.5"),
messages,
tools: { weather: weatherTool },
});
Redis-backed via resumable-stream package. See packages/ai/src/streaming.ts.
Edit packages/ai/src/prompts.ts. Reasoning models skip artifact prompts.