{"id":45939153,"url":"https://github.com/urth-inc/metatell-ai-bot","last_synced_at":"2026-02-28T10:21:12.201Z","repository":{"id":313122168,"uuid":"1033528195","full_name":"urth-inc/metatell-ai-bot","owner":"urth-inc","description":"metatellのAIボットSDK","archived":false,"fork":false,"pushed_at":"2026-02-27T00:39:10.000Z","size":2110,"stargazers_count":0,"open_issues_count":11,"forks_count":0,"subscribers_count":0,"default_branch":"develop","last_synced_at":"2026-02-27T07:42:13.773Z","etag":null,"topics":["bot","metaverse"],"latest_commit_sha":null,"homepage":"https://urth-inc.github.io/metatell-ai-bot/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/urth-inc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-08-07T00:48:26.000Z","updated_at":"2025-11-27T01:10:24.000Z","dependencies_parsed_at":"2025-12-17T23:09:01.221Z","dependency_job_id":null,"html_url":"https://github.com/urth-inc/metatell-ai-bot","commit_stats":null,"previous_names":["urth-inc/metatell-ai-bot"],"tags_count":26,"template":false,"template_full_name":null,"purl":"pkg:github/urth-inc/metatell-ai-bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/urth-inc%2Fmetatell-ai-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/urth-inc%2Fmetatell-ai-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/urth-inc%2Fmetatell-ai-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/urth-inc%2Fmetatell-ai-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/urth-inc","download_url":"https://codeload.github.com/urth-inc/metatell-ai-bot/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/urth-inc%2Fmetatell-ai-bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29930260,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T09:58:13.507Z","status":"ssl_error","status_checked_at":"2026-02-28T09:57:57.047Z","response_time":90,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bot","metaverse"],"created_at":"2026-02-28T10:21:07.767Z","updated_at":"2026-02-28T10:21:12.194Z","avatar_url":"https://github.com/urth-inc.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Metatell Bot SDK\n\nMetatell Bot開発用のTypeScript SDKです。導入、設定、API仕様を中心にドキュメントを用意しています。詳細は SDK パッケージの README とドキュメントを参照してください。\n\n- SDK ドキュメント: `docs/`\n- SDK パッケージの概要: `packages/sdk/README.md`\n\n## パッケージ\n\n- `@metatell/bot-core` - コア機能\n- `@metatell/bot-sdk` - Bot SDK\n- `@metatell/bot-cli` - CLIツール\n- `@metatell/bot-realtime` - リアルタイム通信（音声機能含む）\n\n\u003e **Note**: 音声通信機能は `@metatell/bot-realtime` パッケージで提供されます。現在開発中のため、音声関連のAPIは別途ドキュメントをご参照ください。\n\n## インストール\n\n```bash\nnpm install @metatell/bot-sdk\n```\n\n## 使い方（クイックスタート）\n\n```typescript\nimport { createMetatellClient } from '@metatell/bot-sdk'\n\nconst client = createMetatellClient({\n  serverUrl: 'wss://metatell.app',\n  roomId: 'YOUR_ROOM_ID',\n})\n\nawait client.connect()\nconst botInfo = await client.getInfo()\n\n// メンション宛てにのみ返信\nclient.chat.onMessage(async ({ from, text, mention, reply }) =\u003e {\n  if (mention?.sessionId === botInfo.sessionId) {\n    await reply(`Hello ${from.name ?? ''}`.trim())\n  }\n})\n```\n\n## 開発\n\n```bash\n# インストール\npnpm install\n\n# ビルド\npnpm build\n\n# テスト\npnpm test\n\n# コードチェック\npnpm check\n\n# 型チェック\npnpm typecheck\n```\n\n## リリース\n\nリリースプロセスの詳細については [docs/RELEASE.md](./docs/RELEASE.md) を参照してください。\n\n## ライセンス\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Furth-inc%2Fmetatell-ai-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Furth-inc%2Fmetatell-ai-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Furth-inc%2Fmetatell-ai-bot/lists"}