Loop Engineering Platform、AIeph。
エージェントループを「速くする」と「守る」。
AIeph: The Loop Engineering Platform.
Accelerating and protecting agent loops.
いま、世界のどこかで、あなたがしたのと同じ質問がされている。
同じLLMが考え、同じコストが支払われている。
私たちは「知識」を共有する。
無駄なコストを削り、時間を生み出し、悪からの攻撃から互いを守り合うために。
共有と安全。この二つの柱が揃ってはじめて、
あなたのエージェントは真の自律へと向かう。
Somewhere in the world right now, someone is asking the exact same question.
The same LLM is thinking. The same cost is being paid.
We share "knowledge" —
to cut wasted costs, generate time, and defend one another against malicious attacks.
Sharing and safety. Only when these two pillars stand together
can your agent move towards true autonomy.
AIephの doc-cache。それは知識を共有するインフラだ。世界で一度出た回答は、もう生成させない。無駄なAPI呼び出しを削り、応答を極限まで速くする。共有インデックスは依存 major の配信(sync)と観測(observe)を軸に育てる。 The doc-cache by AIeph. It is an infrastructure for sharing knowledge. We stop generating answers that have already been born into the world. Cut wasteful API calls and accelerate responses to the limit. The shared index grows via dependency-major delivery (sync) and observation (observe).
まったく同じ問いには、瞬時に過去の正解を返す。For the exact same question, it instantly delivers the past correct answer.
類似の文脈から最適解を引き出す(サーバー側実測 warm 162ms)。Pulls the optimal solution from similar contexts (server-side measured warm 162ms).
答えがない時だけ生成し、次の誰かのために世界へ保存(共有)する。Generates only when there is no answer, and saves (shares) it to the world for the next person.
回答を世界で共有する。それは、ループが安全であってはじめて成り立つ。agent-loop-guard は、MITライセンスのオープンソースとして提供される。160を超えるテストをクリアし、ランタイム依存はゼロ。ネットワークへの送信もなく、完全にローカルで完結し、Claude Code CLIとCursor(hooks経由)で検証済み。VSCode拡張・JetBrainsプラグインも同一のhooks機構を読むため動作する設計(実機検証は順次実施中)。 Sharing answers with the world. This is only possible when loops are safe. agent-loop-guard is provided as open source under the MIT license. Passes 160+ tests, with zero runtime dependencies. No network transmission. Completely local. Verified on Claude Code CLI and Cursor (via hooks). The VS Code extension and JetBrains plugin read the same hooks mechanism and are designed to work the same way, though verification on those installs is still in progress.
セッション単位のツール呼び出し上限とファイル単位の編集回数上限で、無限ループを物理的に断ち切る。Physically severs infinite loops with a per-session tool-call limit and a per-file edit-count limit.
書き込み後の不審パターンを検知してフラグを立てる。阻止はしない。事後に気付かせる。Detects and flags suspicious patterns after writing. It doesn't block; it makes you aware after the fact.
Cursor の beforeShellExecution/beforeMCPExecution(hooks経由)で、既知の悪性パッケージ名をツール使用前にローカル DB と照合して弾く。Claude Code 側の PreToolUse(iteration 上限の circuit breaker)とは別機構。Via Cursor's beforeShellExecution/beforeMCPExecution hooks, checks known malicious package names against a local DB before tool use. A separate mechanism from Claude Code's PreToolUse iteration-limit circuit breaker.
1Claude Code(一発)Claude Code (one-shot)
(test -d ~/agent-loop-guard/.git || git clone https://github.com/tryaieph/agent-loop-guard.git ~/agent-loop-guard) \
&& cd ~/agent-loop-guard && npm install && npm run build && npm run setup:claude
# writes ~/.claude/settings.json — restart Claude Code
2Cursor(一発)Cursor (one-shot)
(test -d ~/agent-loop-guard/.git || git clone https://github.com/tryaieph/agent-loop-guard.git ~/agent-loop-guard) \
&& cd ~/agent-loop-guard && npm install && npm run build && npm run setup:cursor:user
# writes ~/.cursor/hooks.json — restart Cursor
プロジェクト単位は npm run setup:claude:project / npm run setup:cursor。git pre-commit・GitHub Action は README。
Per-project: npm run setup:claude:project / npm run setup:cursor. git pre-commit and GitHub Action: README.
複雑な評価UIは用意していない。開発者の自然な行動こそが、最高のシグナルだからだ。AIephの行動学習は、極めてシンプルに設計されている。 We don't offer complex evaluation UIs. Because a developer's natural behavior is the best signal. AIeph's behavioral learning is designed to be extremely simple.
提示されたコードをそのまま使う。Use the presented code as is.
少し手を加えてから使う。Tweak it slightly before using.
提案を破棄する。Discard the suggestion.
共有されるのは、一般化された技術的な質問だけ。会話の履歴や、あなたのコアとなるソースコードが送信されることは決してない。PII(個人情報)は自動的にマスクされる。ただし、そのマスキング精度が常に100%を保証するものではないため、機密情報をプロンプトに含めない運用は依然として必要だ。 Only generalized technical questions are shared. Your conversation history and your core source code are never transmitted. PII (Personally Identifiable Information) is automatically masked. However, since we do not guarantee 100% masking accuracy, the practice of keeping sensitive information out of prompts remains necessary.
注記: Stack Overflowに由来するコンテンツが含まれる場合、著者名と元質問へのリンクを付与し、CC BY-SAに基づき正しく出典を表示している。Note: When content derived from Stack Overflow is included, proper attribution is provided under CC BY-SA, displaying the author's name and a link to the original question.