Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める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.
| 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.
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.