> ## Documentation Index
> Fetch the complete documentation index at: https://ai.brokenguardrail.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 概要

> Broken Guardrail AI へようこそ

AIとAgentのセキュリティについて、最新のリスクとベストプラクティスをまとめたドキュメントサイトです。Agentから読みにいきやすい形で公開し、仮想的なAI Securityエンジニアとして使ってもらうことを目指しています。

## Agent Skill

手元のエージェントにスキルとして組み込むには[以下のコマンド](https://github.com/vercel-labs/skills)を実行してください。

```bash theme={null}
npx skills add https://ai.brokenguardrail.com
```

これで `brokenguardrail-ai` というスキルが入ります。AIやAgentのセキュリティに関する作業が始まったときに、必要なページだけをMarkdownで取りにいくよう促します。

## MCPサーバー

スキルを個別に入れずに、MCPサーバーとして接続することも可能です。Claude Codeではプロジェクトに以下のコマンドで追加できます。

```bash theme={null}
claude mcp add --transport http --scope project brokenguardrail-ai https://ai.brokenguardrail.com/mcp
```

プロジェクトのルートに `.mcp.json` が作られます。直接書く場合は以下の内容です。

```json .mcp.json theme={null}
{
  "mcpServers": {
    "brokenguardrail-ai": {
      "type": "http",
      "url": "https://ai.brokenguardrail.com/mcp"
    }
  }
}
```

接続すると、公開しているスキルとページをリソースとして読み取ることができます。設定の詳細は[Claude CodeのMCPドキュメント](https://code.claude.com/docs/en/mcp)を参照してください。
