Leanpub Header

Skip to main content

コーディングエージェントの作り方 (Build Your Own Coding Agent)

魔法なしで学ぶ Pure Python による AIエージェント開発ガイド

ブラックボックスのフレームワークは不要。純粋なPythonでプロダクションレベルのAIコーディングエージェントをゼロから構築。クラウドでもローカルでも、pytestでテスト済み、すべて1つのファイルに収まります。

This book is a translation into Japanese of Build Your Own Coding Agent which was originally written in English

Minimum price

$19.99

$34.99

You pay

$34.99

Authors earn

$27.99
$

...Or Buy With Credits!

You can get credits with a paid monthly or annual Reader Membership, or you can buy them here.
PDF
EPUB
WEB
About

About

About the Book

あなたはAIのハイプに懐疑的なソフトウェアエンジニアです。


デモは見ました。フレームワークも試しました。LangChainアプリがハルシネーションで大惨事になるのも目の当たりにしました。そして、こう思ったはずです。「もっとまともな方法があるはずだ。」


あります。


本書は「魔法」への反逆です。純粋なPythonでプロダクションレベルのAIコーディングエージェントをゼロから構築する方法を教えます。LangChainなし。Pydanticなし。ベクトルデータベースなし。print()でデバッグできるコードだけです。


本書を読み終える頃には、Nanocodeというターミナルベースのコーディングエージェントが完成しています。


  • コードベースのファイルを読み取り、書き込み、外科的に編集する
  • シェルコマンドを実行し、エラーから自己修正する
  • 純粋なPythonでコードをマッピング・検索する
  • 永続的なスクラッチパッドでセッション間のコンテキストを記憶する
  • 危険な操作の前に許可を求める
  • ウェブで最新情報を検索する


エージェントはたった4つの要素でできていることを学びます。


  1. ブレイン — ステートレスなAPIコール(Claude、DeepSeek、またはOllama)
  2. ツール — Pythonの関数(Read、Write、Edit、Run、Search)
  3. メモリ — システムプロンプトとして注入される自己書き換え型Markdownファイル
  4. ループ — すべてをつなぐ while True

その過程で、すべてをテストします。FakeBrainというテストダブルを構築し、APIクレジットを消費せずに`pytest`のフルスイートを即座に実行して、複雑なエージェントロジックを検証できるようにします。クラウドモデルとローカルモデルをコマンド一つで切り替え、Ollamaを使って自分のノートパソコンで無料でブレインを動かすこともできます。


最終章では、自分で一行もコードを書かずに、エージェントを使ってPygameで完全なスネークゲームを構築します。あなたが計画を話し、エージェントがコードを書き、実行し、デバッグし、修正して、ゲームがプレイ可能になるまで作業します。


Pythonが読めて、AIエージェントの中で実際に何が起きているのかを理解したいなら、本書はあなたのための本です。

This book is a translation into Japanese of Build Your Own Coding Agent which was originally written in English

Author

About the Authors

J. Owen

J. Owenは、10年以上にわたり、数百万のエンジニアが日常的に使用する開発者ツール、CLIユーティリティ、バックエンドプラットフォームを構築してきました。本書は、現役の専門家のためにAIエージェントの謎を解き、実践的なシステムエンジニアリングをLLMの世界にもたらすために書きました。print()でデバッグできないものは、プロダクションに入れるべきではありません。

TranslateAI

Leanpub now has a TranslateAI service which uses AI to translate their book from English into up to 31 languages, or from one of those 31 languages into English. We also have a GlobalAuthor bundle which uses TranslateAI to translate English-language books into either 8 or 31 languages.

Leanpub exists to serve our authors. We want to help you reach as many readers as possible, in their preferred language. So, just as Leanpub automates the process of publishing a PDF and EPUB ebook, we've now automated the process of translating those books!

Translations

Translations

Contents

Table of Contents

はじめに

  1. 対象読者
  2. 作成するもの
  3. テストアプローチ
  4. コード例
  5. 本書で使用される表記規則

第I部:頭脳

第1章:ゼロマジック・マニフェスト

  1. エージェントとは実際には何か?
  2. 何を構築するのか
  3. プロジェクトのセットアップ
  4. AgentStop例外
  5. Agentクラス
  6. テストによる成功の定義
  7. メインループ
  8. 実行してみましょう
  9. まとめ

第2章:生のリクエスト

  1. APIキーの取得
  2. 保管庫(.env)
  3. リクエストの構造
  4. コード
  5. 実行方法
  6. トラブルシューティング
  7. クリーンアップ
  8. まとめ

第3章:無限ループ

  1. 記憶の幻想
  2. テストの課題
  3. レスポンスの型
  4. フェイクブレインパターン
  5. 成功の定義
  6. Claudeクラス
  7. Agentクラス(更新版)
  8. メインループ(更新版)
  9. テストが通ることを確認
  10. メモリのテスト
  11. コンテキストウィンドウの問題
  12. まとめ

第4章:ユニバーサルアダプター

  1. アダプターパターン
  2. HTTPレジリエンス
  3. Brainインターフェース
  4. FakeBrain(更新版)
  5. Claudeブレイン(リファクタリング後)
  6. DeepSeek Brain
  7. BRAINSレジストリ
  8. エージェントクラス(更新版)
  9. マルチブレインサポートのテスト
  10. メインループ(更新済み)
  11. DeepSeekのセットアップ
  12. 試してみましょう
  13. 「コードを移動しただけ」
  14. まとめ

パート II:実行能力

第5章:ツールプロトコル

  1. ツールの実際の仕組み
  2. ツールインターフェースの定義
  3. ReadFileツール
  4. ファイル書き込みツール
  5. ツールヘルパー
  6. Thoughtクラスの更新
  7. Claudeクラスの更新
  8. ツールを備えたAgentクラス
  9. メインループ
  10. テストする
  11. まとめ

第6章:スクラッチパッド(メモリー)

  1. 「ゼロマジック」メモリー
  2. メモリークラス
  3. ToolContextクラス
  4. SaveMemoryツール
  5. Claudeクラスの更新
  6. システムプロンプトの作成
  7. エージェントクラスの更新
  8. メインループ(更新版)
  9. 永続性のテスト
  10. まとめ

第7章:安全装置(プランモード)

  1. コンセプト
  2. まずはテストから
  3. ToolContextの拡張
  4. 保護されたWriteFileツール
  5. エージェントクラス(更新版)
  6. メインループ(更新済み)
  7. ハーネスのテスト
  8. 「計画」の心理学
  9. まとめ

第8章:コンテキストパイプライン(マップと検索)

  1. ListFilesツール
  2. コードベース検索ツール
  3. ツールリストの更新
  4. 「ズームイン」テスト
  5. これはRAGなのでしょうか?
  6. まとめ

第9章:現実確認(コードの実行)

  1. フィードバックループ
  2. 最初にテスト
  3. コマンド実行ツール
  4. 対話型の罠
  5. 自己修復のデモ
  6. TDDのワークフロー
  7. 外科手術的な編集
  8. クローズドループ
  9. コンテキストの圧縮
  10. セキュリティに関する考慮事項
  11. まとめ

パート III:フロンティア

第10章:ダークサイドへ(ローカルモデル)

  1. トレードオフ
  2. Ollamaのインストール
  3. Ollamaブレインクラス
  4. Ollamaでの実行
  5. 「無限ループ」実験
  6. 実用面での違い
  7. ハイブリッドワークフロー
  8. モデル選択
  9. Ollamaのトラブルシューティング
  10. まとめ

第11章:拡張機能(ウェブ検索)

  1. ステップ1:メタプロンプト
  2. ステップ2:実行手順
  3. ステップ3:リファレンス実装
  4. ステップ 4:テスト
  5. 自己修正
  6. まとめ

第12章:総仕上げ(ゲームの制作)

  1. ステップ1:準備
  2. ステップ2:アーキテクト(プランモード)
  3. ステップ3:ビルダー(実行モード)
  4. ステップ4:現実確認
  5. ステップ5:方向転換(機能の拡張)
  6. 何が問題になるか
  7. まとめ
  8. エピローグ

謝辞

Get the free sample chapters

Click the buttons to get the free sample in PDF or EPUB, or read the sample online here

The Leanpub 60 Day 100% Happiness Guarantee

Within 60 days of purchase you can get a 100% refund on any Leanpub purchase, in two clicks.

Now, this is technically risky for us, since you'll have the book or course files either way. But we're so confident in our products and services, and in our authors and readers, that we're happy to offer a full money back guarantee for everything we sell.

You can only find out how good something is by trying it, and because of our 100% money back guarantee there's literally no risk to do so!

So, there's no reason not to click the Add to Cart button, is there?

See full terms...

Earn $8 on a $10 Purchase, and $16 on a $20 Purchase

We pay 80% royalties on purchases of $7.99 or more, and 80% royalties minus a 50 cent flat fee on purchases between $0.99 and $7.98. You earn $8 on a $10 sale, and $16 on a $20 sale. So, if we sell 5000 non-refunded copies of your book for $20, you'll earn $80,000.

(Yes, some authors have already earned much more than that on Leanpub.)

In fact, authors have earned over $14 million writing, publishing and selling on Leanpub.

Learn more about writing on Leanpub

Free Updates. DRM Free.

If you buy a Leanpub book, you get free updates for as long as the author updates the book! Many authors use Leanpub to publish their books in-progress, while they are writing them. All readers get free updates, regardless of when they bought the book or how much they paid (including free).

Most Leanpub books are available in PDF (for computers) and EPUB (for phones, tablets and Kindle). The formats that a book includes are shown at the top right corner of this page.

Finally, Leanpub books don't have any DRM copy-protection nonsense, so you can easily read them on any supported device.

Learn more about Leanpub's ebook formats and where to read them

Write and Publish on Leanpub

You can use Leanpub to easily write, publish and sell in-progress and completed ebooks and online courses!

Leanpub is a powerful platform for serious authors, combining a simple, elegant writing and publishing workflow with a store focused on selling in-progress ebooks.

Leanpub is a magical typewriter for authors: just write in plain text, and to publish your ebook, just click a button. (Or, if you are producing your ebook your own way, you can even upload your own PDF and/or EPUB files and then publish with one click!) It really is that easy.

Learn more about writing on Leanpub