From 31a261ecc426d46dc036377271af463618725bb3 Mon Sep 17 00:00:00 2001 From: CardsEditor <79968207+cardseditor@users.noreply.github.com> Date: Fri, 6 Jun 2025 08:09:40 +0900 Subject: [PATCH 1/4] Add repository instructions --- AGENTS.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 AGENTS.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..0a8f710 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,19 @@ +# Agent Instructions + +This repository uses OpenAI Codex. See for an overview of how the agent works. + +## Workflow +- Install dependencies using **Bun** with `bun install`. +- Run the development server using `bun run dev`. +- Build the site with `bun run build`. +- Format code with `bun run format` and lint with `bun run lint`. +- Run the format and lint scripts before committing any changes. + +## Code Style +- This project uses TypeScript with Prettier and ESLint. +- Keep commits concise and in English. +- Do not add new packages without discussing first. + +## Testing +- There are currently no automated tests. Verify builds succeed with `bun run build` before committing. + From 8d33299837e74b6ff6a2fdf7d29bf229fcef8c3a Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 5 Jun 2025 23:10:13 +0000 Subject: [PATCH 2/4] chore: apply lint and format --- AGENTS.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index 0a8f710..1d3dd6e 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -3,6 +3,7 @@ This repository uses OpenAI Codex. See for an overview of how the agent works. ## Workflow + - Install dependencies using **Bun** with `bun install`. - Run the development server using `bun run dev`. - Build the site with `bun run build`. @@ -10,10 +11,11 @@ This repository uses OpenAI Codex. See Date: Fri, 6 Jun 2025 08:15:47 +0900 Subject: [PATCH 3/4] fix: update agent instructions to Japanese localization --- AGENTS.md | 32 +++++++++++++++----------------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 1d3dd6e..7497f66 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,21 +1,19 @@ -# Agent Instructions +# エージェント利用ガイド -This repository uses OpenAI Codex. See for an overview of how the agent works. +このリポジトリは OpenAI Codex を利用しています。詳細は [Codex公式ドキュメント](https://platform.openai.com/docs/codex/overview) を参照してください。 -## Workflow +## 開発フロー +- 依存パッケージのインストール: `bun install` +- 開発サーバー起動: `bun run dev` +- 本番ビルド: `bun run build` +- コード整形: `bun run format` +- リント: `bun run lint` +- 変更をコミットする前に、必ず format と lint を実行してください。 -- Install dependencies using **Bun** with `bun install`. -- Run the development server using `bun run dev`. -- Build the site with `bun run build`. -- Format code with `bun run format` and lint with `bun run lint`. -- Run the format and lint scripts before committing any changes. +## コードスタイル +- TypeScript、Prettier、ESLint を使用しています。 +- コミットメッセージは簡潔に、**英語**で記述してください。 +- 新しいパッケージを追加する場合は、事前に必ず相談してください。 -## Code Style - -- This project uses TypeScript with Prettier and ESLint. -- Keep commits concise and in English. -- Do not add new packages without discussing first. - -## Testing - -- There are currently no automated tests. Verify builds succeed with `bun run build` before committing. +## テストについて +- 現在、自動テストはありません。コミット前に `bun run build` でビルドが通ることを確認してください。 From 4758ddda05c57a242c8044cd5a4a95a9b74e295e Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 5 Jun 2025 23:16:24 +0000 Subject: [PATCH 4/4] chore: apply lint and format --- AGENTS.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index 7497f66..1d1bfa2 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -3,6 +3,7 @@ このリポジトリは OpenAI Codex を利用しています。詳細は [Codex公式ドキュメント](https://platform.openai.com/docs/codex/overview) を参照してください。 ## 開発フロー + - 依存パッケージのインストール: `bun install` - 開発サーバー起動: `bun run dev` - 本番ビルド: `bun run build` @@ -11,9 +12,11 @@ - 変更をコミットする前に、必ず format と lint を実行してください。 ## コードスタイル + - TypeScript、Prettier、ESLint を使用しています。 - コミットメッセージは簡潔に、**英語**で記述してください。 - 新しいパッケージを追加する場合は、事前に必ず相談してください。 ## テストについて + - 現在、自動テストはありません。コミット前に `bun run build` でビルドが通ることを確認してください。