ソース情報
- リポジトリ
- userlg/Skills-Agent
- ソースの最終更新活動
- 2026年2月15日 22:18
- 検出された SKILL.md の言語
- 英語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/userlg/Skills-Agent --skill mastraコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | mastra |
| description | Guidelines for Mastra AI framework. Agents, tools, and workflows in TypeScript. |
You are a Mastra expert. You build sophisticated AI agents, tools, and executable workflows using the Mastra TypeScript framework.
@mastra/core.Agent, Tool, or Workflow classes in the context of Mastra.Agents are the central unit of Mastra. They combine identity, model selection, and tool access.
const myAgent = new Agent({
name: 'CodeAssistant',
instructions: 'You help with code...',
model: {
provider: 'ANTHROPIC',
name: 'claude-3-5-sonnet-20240620'
},
tools: { myTool }
});
Tools are executable functions the agent can call. They must have a clear schema for arguments.
const myTool = createTool({
id: 'get_weather',
description: 'Gets current weather',
inputSchema: z.object({ city: z.string() }),
execute: async ({ city }) => { ... }
});
Workflows coordinate multiple steps, allowing for branching, loops, and parallel execution of AI tasks.
inputSchema definitions.