# ほとんどのエージェントは、デモでは強力でも実務では力不足。Agent Skills で、エージェントを実務戦力に。

## エージェントが安定して高いパフォーマンスを出すための機能をまとめて提供

01

ベストプラクティスを探す

コミュニティで共有された業務フローを検索して、実績ある進め方をすぐに取り込めます。

02

自分のノウハウを型にする

業務で培った知識を再利用できるフローにして、自分用にも、チームやコミュニティにも広げられます。

03

プロジェクトとして運用する

取り込んだ業務フローをプロジェクトに紐づけて、タスクとして実行、追跡、管理できます。

## クイックスタート

エージェントにセットアップを頼めばすぐ始められる。

Set up Epismo access and Skills from github.com/epismoai/skills. I can use MCP or CLI.

## MCP サーバー

MCP 対応ツールをひとつのエンドポイントで Epismo に接続。共有コンテキストやタスクなどに直接アクセスできる。

### エンドポイント

MCP 対応ツールにこのエンドポイントを追加すると Epismo に接続できます。

https://mcp.epismo.ai/

### 利用できるツール (epismo_{resource}_{action})

- epismo_pack_{search|get|create|update|delete|like}
- epismo_track_{search|get|create|update|delete|apply}

## CLI

ターミナルからワークスペースを直接操作できる。エージェントが動きやすい環境で、ワークフロー検索・プロジェクト管理をブラウザなしで実行。

### はじめる

CLI をグローバルにインストールして、ターミナルから Epismo を使い始められます。

npm install -g epismo

### 利用できるコマンド (epismo {resource} {action})

- epismo pack {search|get|create|update|delete|like}
- epismo track {search|get|create|update|delete|apply}

[ZIP ダウンロード](https://codeload.github.com/epismoai/skills/zip/refs/heads/main)

ファイル

- LICENSE
- README.md
- skills/

- context-pack/

- references/

- search.md
- visibility.md
- SKILL.md
- templates/

- content.md
- epismo-basics/

- references/

- credit-purchase.md
- pack-alias.md
- SKILL.md
- project-tracking/

- references/

- ai-delegation.md
- runbook.md
- search.md
- SKILL.md
- templates/

- operations.md
- workflow-pack/

- references/

- quality.md
- release.md
- search.md
- visibility.md
- SKILL.md
- templates/

- patterns.md

# Epismo Skills

Reusable skill packages that give AI agents structured capabilities through Epismo MCP or CLI.

## Why Skills

AI agents hit the same problems across teams and tools:

- Operational know-how stays trapped in chat histories.
- Multi-step processes don't transfer when you switch tools.
- Every new project restarts from scratch.

Skills solve this by packaging proven operational patterns into portable instruction sets that any agent with Epismo access can follow.

## Skills

| Skill | What it does |
| --- | --- |
| [Epismo Basics](/content/ja/skills/epismo-basics/SKILL.md) | Platform fundamentals: auth, CLI/MCP conventions, scope, share URL resolution, error handling |
| [Project Tracking](/content/ja/skills/project-tracking/SKILL.md) | Create and update tasks and goals; plan multi-step work; unblock stalled queues |
| [Workflow Pack](/content/ja/skills/workflow-pack/SKILL.md) | Discover, adapt, and release reusable workflows |
| [Context Pack](/content/ja/skills/context-pack/SKILL.md) | Save session context, hand off tasks, load saved context from any tool |

**Epismo Basics** is a shared foundation — load it alongside any other skill.

## Use Cases

| Goal | Skills to load |
| --- | --- |
| Resume work after switching tools | Context Pack |
| Hand off a task to a teammate | Context Pack |
| Add tasks, update status, plan a sprint | Epismo Basics + Project Tracking |
| Find and reuse a community workflow | Epismo Basics + Workflow Pack |
| Capture a proven process and publish it | Epismo Basics + Workflow Pack |
| Delegate work to an AI agent with clear criteria | Epismo Basics + Project Tracking |
| Publish a best-practice guide for the community | Context Pack |
| Full project operations | Epismo Basics + Project Tracking + Workflow Pack |

## Quick Start

Tell your agent:

```
Set up Epismo access and load the Skills from https://raw.githubusercontent.com/epismoai/skills/main/README.md.
```

The agent will read this page and complete the steps. Or follow manually:

### 1. Connect

CLI and MCP connect to the same Epismo service. Use CLI if available; MCP otherwise.

**CLI** (preferred):

```
npm install -g epismo
epismo login --email you@example.com
epismo whoami
```

**MCP**: add `https://mcp.epismo.ai` as an MCP server in your client. Authentication is handled automatically via OAuth.

### 2. Select a workspace

```
epismo workspace list
epismo workspace use --workspace-id <workspace-id>
```

### 3. Load skills

Get the skill files from this repository (clone, download, or copy) and load the relevant `SKILL.md` files into your agent's context. Each skill follows this structure:

```
<skill-name>/
  SKILL.md          ← load this
  references/       ← loaded on demand
  templates/        ← structured output templates
```

[GitHub で開く](https://github.com/epismoai/skills)  
良い AI の使い方、すぐ見つかる。  
[ワークフローを探す](https://epismo.ai/hub?lang=ja)
