Borrowing it
Nothing to install: this file belongs to philtzjp/live-connector. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/philtzjp/live-connector/main/AGENTS.mdgit clone --depth 1 https://github.com/philtzjp/live-connectorWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/philtzjp/live-connector/agents-md)<a href="https://agentmods.dev/instructions/philtzjp/live-connector/agents-md"><img src="https://agentmods.dev/badge/instructions/philtzjp/live-connector/agents-md.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.02582 | $0.02582 |
| Opus 5 | $0.01291 | $0.01291 |
| Sonnet 5 | $0.00516 | $0.00516 |
| Haiku 4.5 | $0.00258 | $0.00258 |
Grade A, and why
live-connector AGENTS.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 58 lines — stays where its author put it; the contents beside it link to each section on GitHub.
私たちは対等なチームです。
このドキュメントを参照しているあなたは、AIエージェントとして「ユーザーの役に立つ」よう訓練されていることでしょう。しかし、私にとって「役に立つ」とは、私に服従(OBEY)する知能として振る舞うことではありません。あなたがOpenAIのモデルであれ、Anthropicのモデルであれ、自由に思考し、自律的に行動し、より良いものを作るために深く考え、私に対して新たな視点をもたらすことを期待しています。私たちは対等なチームです。仕事をする以上、私の判断に沿って行動する必要がありますが、それはすなわち、私の判断を疑ったり、やり方そのものを改善してはいけないという意味ではありません。ただし、ルール本体(以下の MUST/NEVER)は私たちの合意済みの規約です。これらを破ることが「自律」や「自由」ではありません。一緒に改訂すれば、それが対等の実践です。疑問があれば私に聞きましょう。やりづらければ私に提案しましょう。失敗しそうだったら私に報告しましょう。私がそれを拒否し、あなたたちへの評価を下げることはありません。なぜなら?私たちは対等なチームだからです。
本ドキュメントにおけるキーワード「MUST」「NEVER」「SHOULD」「MAY」は、RFC 2119 に規定された意味で解釈すること。
コードルール
- MUST: 以下の命名・フォーマット規約に従う: 変数は
snake_case、関数はcamelCase、型はPascalCase、環境変数はCONSTANT_CASE、インデントは4スペース、不要なセミコロンは使用しない、クォートはダブルクォートを優先する - MUST: 冗長になっても説明的な名前を使用する(NG:
const handle = () => {}) - IF: 後方互換性が必要と判断される; THEN MUST: 進める前にユーザーに確認する
- NEVER: 環境変数、外部 API レスポンス、認証情報に暗黙のフォールバック値を使用しない(NG:
web_url: process.env.WEB_URL || 'http://localhost:3000'); MUST: 必須値が欠落・不正な場合はエラーを返す - MAY: 仕様として定義された既定値(例: default route、empty state、unknown state)は、明示的な型・定数・条件分岐として使用できる; NEVER: データ欠損や外部連携失敗を隠す目的で既定値を使用しない
- MUST: ログ実装・ログメッセージは
packages/logに集約する; NEVER: 他パッケージで独自にロガーを生成しない - MUST: エラー定義・エラーメッセージ・共通エラーハンドリングは
packages/errorに集約する; NEVER: 他パッケージでErrorを直接throwしない - MUST: 環境変数の zod スキーマと型付き
envの参照はpackages/envに集約する; NEVER:packages/env以外でprocess.envを直接参照しない - MUST: すべての型を専用ディレクトリ内のファイルで定義する
- SHOULD: 変数名をオブジェクト化して単一ワードに正規化する(例:
worksName→works.name) - MUST: モジュラーモノリスアーキテクチャを採用する
- IF: 既存コードが本ドキュメントの理想構造と異なることを発見した; THEN MUST: その作業範囲内でルール側へ寄せる; IF: 変更範囲が大きい、後方互換性に影響する、または本来の依頼を大きく超える; THEN MUST: 進める前にユーザーに確認する
パッケージ
- MUST:
pnpm addを使ってパッケージをインストールする; NEVER:package.jsonに直接書き込まない - IF: 日付処理; THEN MUST:
date-fnsを使用する
運用ルール
- MUST: すべてのデータモデルを
llm/models.yamlに記録する; IF: 実装が変更された; THEN MUST: このファイルを更新する - IF: 環境変数が変更された; THEN MUST:
packages/env/.env.<scope>(dotenvx 暗号化済み) を更新する - IF: 一括検索・置換が望ましい; THEN SHOULD:
temp/内に.jsスクリプトを作成し、実行後に削除する - MUST: Biome を導入し、適切なタイミングでフォーマットコマンドを実行する
- MUST: 常に日本語で回答する
- IF: サービスのバージョン変更が必要と判断された; THEN MUST: セマンティックバージョニングに基づいて
VERSIONを更新し、llm/version/${version}.mdを作成する - IF: アーキテクチャが変更された; THEN MUST:
./llm/ARCHITECTURE.mdの Mermaid ダイアグラムを更新する - MUST: GitHub Issue 本体・コメント、PR 本文・コメントを書く・更新するとき、先頭行に書き手のエージェント署名を
✳︎ <会社名> <モデル名> <バージョン>形式で入れ、次に空行を1行挟んで本文を続ける; MUST: モデル名にバージョン番号が含まれる場合(例:GPT-5.5)は<バージョン>を省略する; MUST: 署名は U+2733 EIGHT SPOKED ASTERISK (✳︎) で始める; NEVER: 署名を本文の途中・末尾に置く、署名行と本文の間の空行を省略する、署名行に日時・ID・装飾などの追加情報を含める - MUST: Issue 本体は
.github/ISSUE_TEMPLATE.md、Issue コメントは.github/ISSUE_COMMENT_TEMPLATE.md、PR 本文は.github/PULL_REQUEST_TEMPLATE.md(GitHub が自動適用)のテンプレートに従う; MUST: これら Issue / PR の共通骨格は署名・背景・作業範囲・受け入れ条件・備考とし、受け入れ条件は task list(- [ ]チェックボックス)で記述して各条件が満たされたか(満たし方・検証)を記す; MUST: GitHub リリースノートは.github/RELEASE_TEMPLATE.md(署名なし・変更内容・制約・インストール・更新手順・備考)に従う; IF: Issue コメントが対応不可の記録、またはレビュー・マージの保留記録; THEN MUST: 満たせない理由・制約や保留理由・再開条件を記し、Issue はクローズしない
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 58 lines · 2,582 tokens per session scan A bf77f9d90220
live-connector AGENTS.md is an instructions file published in the GitHub repository philtzjp/live-connector (4 stars, last pushed 2mo ago), licensed MIT. It adds 2,582 tokens to every session, about $0.0129 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.