live-connector: Instructions file for Codex

AGENTS.md

live-connector AGENTS.md is an instructions file for Codex, OpenCode from philtzjp/live-connector. It costs 2,582 tokens per session, scanned A, original, MIT.

A set of project instructions written in Japanese for the live-connector repository. It defines teamwork expectations, coding rules, package practices, operating rules, and signature conventions.

In plain words
What is it for?
Guiding work in the live-connector codebase, including naming and formatting, compatibility checks, required configuration, centralized logging, and common error handling.
Why use it?
It gives agents shared rules for making changes consistently and for handling missing values, compatibility concerns, logging, and errors safely.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md. Also seen: reads .claude/ paths; mentions Claude Code; mentions AGENTS.md.

This is philtzjp/live-connector's own configuration. It tells Codex and OpenCode how to work on live-connector itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything live-connector configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/philtzjp/live-connector/main/AGENTS.md
Clone the repo
git clone --depth 1 https://github.com/philtzjp/live-connector

Made for: Codex, OpenCode.

Wrote 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.

agentmods badge for live-connector AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/philtzjp/live-connector/agents-md.svg)](https://agentmods.dev/instructions/philtzjp/live-connector/agents-md)
Your own site
<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>
Per session 2,582 This file is loaded in full into every session.
When invoked 2,582 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 6d ago against content hash bf77f9d90220, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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.

AGENTS.md · 58 lines

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 に規定された意味で解釈すること。

コードルール

  1. MUST: 以下の命名・フォーマット規約に従う: 変数は snake_case、関数は camelCase、型は PascalCase、環境変数は CONSTANT_CASE、インデントは4スペース、不要なセミコロンは使用しない、クォートはダブルクォートを優先する
  2. MUST: 冗長になっても説明的な名前を使用する(NG: const handle = () => {}
  3. IF: 後方互換性が必要と判断される; THEN MUST: 進める前にユーザーに確認する
  4. NEVER: 環境変数、外部 API レスポンス、認証情報に暗黙のフォールバック値を使用しない(NG: web_url: process.env.WEB_URL || 'http://localhost:3000'); MUST: 必須値が欠落・不正な場合はエラーを返す
  5. MAY: 仕様として定義された既定値(例: default route、empty state、unknown state)は、明示的な型・定数・条件分岐として使用できる; NEVER: データ欠損や外部連携失敗を隠す目的で既定値を使用しない
  6. MUST: ログ実装・ログメッセージは packages/log に集約する; NEVER: 他パッケージで独自にロガーを生成しない
  7. MUST: エラー定義・エラーメッセージ・共通エラーハンドリングは packages/error に集約する; NEVER: 他パッケージで Error を直接 throw しない
  8. MUST: 環境変数の zod スキーマと型付き env の参照は packages/env に集約する; NEVER: packages/env 以外で process.env を直接参照しない
  9. MUST: すべての型を専用ディレクトリ内のファイルで定義する
  10. SHOULD: 変数名をオブジェクト化して単一ワードに正規化する(例: worksNameworks.name
  11. MUST: モジュラーモノリスアーキテクチャを採用する
  12. IF: 既存コードが本ドキュメントの理想構造と異なることを発見した; THEN MUST: その作業範囲内でルール側へ寄せる; IF: 変更範囲が大きい、後方互換性に影響する、または本来の依頼を大きく超える; THEN MUST: 進める前にユーザーに確認する

パッケージ

  1. MUST: pnpm add を使ってパッケージをインストールする; NEVER: package.json に直接書き込まない
  2. IF: 日付処理; THEN MUST: date-fns を使用する

運用ルール

  1. MUST: すべてのデータモデルを llm/models.yaml に記録する; IF: 実装が変更された; THEN MUST: このファイルを更新する
  2. IF: 環境変数が変更された; THEN MUST: packages/env/.env.<scope> (dotenvx 暗号化済み) を更新する
  3. IF: 一括検索・置換が望ましい; THEN SHOULD: temp/ 内に .js スクリプトを作成し、実行後に削除する
  4. MUST: Biome を導入し、適切なタイミングでフォーマットコマンドを実行する
  5. MUST: 常に日本語で回答する
  6. IF: サービスのバージョン変更が必要と判断された; THEN MUST: セマンティックバージョニングに基づいて VERSION を更新し、llm/version/${version}.md を作成する
  7. IF: アーキテクチャが変更された; THEN MUST: ./llm/ARCHITECTURE.md の Mermaid ダイアグラムを更新する
  8. MUST: GitHub Issue 本体・コメント、PR 本文・コメントを書く・更新するとき、先頭行に書き手のエージェント署名を ✳︎ <会社名> <モデル名> <バージョン> 形式で入れ、次に空行を1行挟んで本文を続ける; MUST: モデル名にバージョン番号が含まれる場合(例: GPT-5.5)は <バージョン> を省略する; MUST: 署名は U+2733 EIGHT SPOKED ASTERISK (✳︎) で始める; NEVER: 署名を本文の途中・末尾に置く、署名行と本文の間の空行を省略する、署名行に日時・ID・装飾などの追加情報を含める
  9. 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 はクローズしない

Read the full file on GitHub · 58 lines

Changes

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.

  1. 6d ago First seen · 58 lines · 2,582 tokens per session scan A bf77f9d90220

Subscribe to this mod's changes

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.

Related

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.

vercel/next.js · 7,296 tokens

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.

openai/codex · 5,182 tokens

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).

microsoft/vscode · 6,785 tokens

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).

microsoft/vscode · 5,001 tokens

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.

langchain-ai/langchain · 4,469 tokens

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.

github/spec-kit · 7,104 tokens