autonomous-agent Trend Report

Dashboard へ戻る
Date: 20260823 Articles: 79 Scope: curated summary

あなたのアイデアを、今すぐ形に。

公開先に迷ったら、WebFileBinで一発公開。

HTMLをドラッグ&ドロップするだけで、すぐ公開できます。

3
High impact
5
Mid impact
71
Signal watch

なぜこのサイトを作ったのか

私たちそれぞれが個別にAIを使って情報収集し、同じような3行要約を作るたびに、世界中で膨大な電力と計算リソースが消費されています。 本プロジェクトは、あらかじめ広範な情報を取得・集約しておくことで、個別のAI実行回数を減らし、地球環境(GPU/TPU負荷)に配慮した効率的な情報収集を目指す実験的なダッシュボードです。

Domain filters
Star filters
#AIagentタグ

🧠Claude Codeを無料で使い倒す|初心者がハマる落とし穴からAI副業・月10万円まで徹底攻略【2026年最新版】

・「Claude Codeって、結局何がすごいの?」 最近、AIエージェントの話を調べていると、かなりの確率で名前が出てくるのがClaude Codeです。 ・しかし、最初に触った人の感想は意外と地味です。 ・「ターミナル?」 「黒い画面?」 「コードを書く人向け?」 「ChatGPTと何が違うの?」 実は、この“地味さ”こそがClaude Codeの面白いところです。
Zennの「AIエージェント」のフィード

AI が先回りして防ぐと、その効果は測れなくなる — 数えられるのは、防がなかったほう

・はじめに 本稿は DevOps × AI Agent Hackathon 2026(主催: ファインディ株式会社、スポンサー: Google Cloud Japan / Elasticsearch)の決勝で受けた指摘をきっかけに書いています。 ・そのとき出した筆者の作品が Kizashi(兆し)で、本文に出てくる障害予報はこれのことです。登場する作品と関連リンクは末尾にまとめました。 ・「あの予報、当たってるの?」 あるチームが、データベースの接続プールが枯渇する前に警告を出すシステムを入れたとします。
#AIagentタグ

金利がある世界、地銀は「融資を増やす」だけでいいのか?― AI/Agentで、LoanからCapital Structureへ

・※本記事は個人の見解・考察であり、所属する組織その他の団体を代表するものではありません。また、特定の企業・金融機関・製品・サービスを評価、推奨、批判することを目的としたものではありません。
Recent Commits to hermes-agent:main

fix(desktop): route bot-chat RPCs to the bot's own gateway via tile o…

・fix(desktop): route bot-chat RPCs to the bot's own gateway via tile ownerRoute (#92956) The real fix for Bot Mode 'session not found' / endless hang: dispatch session-scoped RPCs on the OWNING profile's local gateway, using the route the chat tile already carries — the same multi-connection machinery Sessions mode uses, which has never had this problem. ・Root cause chain: - A bot chat is a persisted tile that records
Recent Commits to hermes-agent:main

fix(desktop): route hidden Bot Chat RPCs to the owning profile backen…

・fix(desktop): route hidden Bot Chat RPCs to the owning profile backend (4001 session-not-found) (#92928) * fix(desktop): route hidden Bot Chat RPCs to the owning profile backend Bot Mode chats failed with 4001 'session not found' (then hung on retry) for every bot except the launch profile. ・Root cause is an identity gap in the session-RPC router for HIDDEN sessions: - wiring's requestGateway resolves the owning profi
Recent Commits to hermes-agent:main

fix(update): stop a gateway we cannot relaunch instead of leaving it …

・fix(update): stop a gateway we cannot relaunch instead of leaving it on stale code Fixes #88654. ・After an in-place update, the manual-gateway leg of the restart phase did this for every profile-mapped gateway: restart_mode = _prepare_profile_gateway_update_restart(proc.profile, pid) if restart_mode is None: continue A None means no relaunch could be armed. ・The bare continue skipped the drain and the stop, and the unm
Recent Commits to hermes-agent:main

fix(update): verify launchd is supervising the gateway after a restart

・fix(update): verify launchd is supervising the gateway after a restart On macOS, `hermes update` printed "Update complete!" and exited 0 while the ai.hermes.gateway LaunchAgent sat deregistered for 36 minutes (#88848). ・_restart_macos_launchd_gateways already disagrees with itself about what "restarted" means. ・Sibling profiles are only appended to restarted_services once _wait_for_launchd_service_pid confirms launchd
#AIagentタグ

AI Agent導入の前に知るべき「メモリ管理」──軽いAgentで社内業務を自動化する設計法

・AI Agent導入時、メモリ消費で処理が遅くなる・サーバーが重くなる課題に直面していませんか。本記事では、社内業務自動化Agent設計を最適化し、機能を保ちながら50〜70%メモリ削減する実装手順を、コード付きで紹介します。 ・LangChain: Observe, Evaluate, and Deploy Reliable AI AgentsLangChain provides the engineering platform and open source fwww.langchain.com 続きをみる
Recent Commits to hermes-agent:main

feat(bot-mode): a reclaimed bot chat re-resumes itself — no stale-id …

・feat(bot-mode): a reclaimed bot chat re-resumes itself — no stale-id error on the next send When the gateway reaps the runtime behind the open bot chat (idle TTL, LRU cap, or the WS-orphan mass reap that killed every background bot's handle at once in the Aug 23 incident), the plugin now hears session.reclaimed and re-resumes the canonical chat immediately, instead of leaving the dead handle for the user's next send
Recent Commits to hermes-agent:main

feat(update): sibling profiles' configs migrate with the fleet — no m…

・feat(update): sibling profiles' configs migrate with the fleet — no more silent version drift (#20438/#54926/#79048) The shared checkout serves every profile, but hermes update migrated only the active profile's config.yaml. ・Siblings kept their old _config_version until their (correctly restarted, post-#91378) gateway hit a config shape the new code couldn't read — the last unabsorbed substance from the Phase-2 resta
Recent Commits to hermes-agent:main

feat(update): the plan is now the restart worklist — every planned ru…

・feat(update): the plan is now the restart worklist — every planned runtime must be accounted for (#91277 Phase 2) The policy table was observational: restart_via was a display string and the four platform restart branches re-discovered their own targets, so a runtime the plan saw could be missed with zero signal (the #88654 class, structurally). ・- update_inventory: restart_via becomes a machine-readable mechanism id
Recent Commits to hermes-agent:main

fix(bot-mode): first click on a bot opens its chat — the home no long…

・fix(bot-mode): first click on a bot opens its chat — the home no longer bounces over it The Bots home landing appeared on EVERY first click of a bot whose canonical Bot Chat had been compressed; only a second click got through. ・openRosterBot claimed the center with the durable registry id, but the session-focus edge fired by the open itself reports the compression- lineage TIP. ・releaseStaleOpenBotChat compared tip !=
Recent Commits to hermes-agent:main

fix(bot-mode): group rooms name renamed bots — 'Lucy is thinking…', n…

・fix(bot-mode): group rooms name renamed bots — 'Lucy is thinking…', never a stale 'Hermes' groupSpeakerLabel resolved friendly identity for exactly one case: the literal profile name 'default' → 'Hermes'. ・A renamed default (core display_name via 'hermes profile rename', e.g. ・Lucy) or a Bot Mode title never reached the room's working line, activity feed, or transcript speaker prefix — the community report was Lucy's g
Recent Commits to openclaw:main

fix(cli): allow installed hook pack updates by npm package name (#128…

・fix(cli): allow installed hook pack updates by npm package name (#128281)
Recent Commits to openclaw:main

fix(cli): honor selected agent when inspecting audio providers (#128292)

・fix(cli): honor selected agent when inspecting audio providers (#128292) * fix(cli): honor parent agent when inspecting audio providers * fix(ci): ratchet audio cli assertion baseline
Recent Commits to openclaw:main

fix(cli): render session validation JSON failures (#128224)

fix(cli): render session validation JSON failures (#128224)
Recent Commits to openclaw:main

fix(cron): keep silent replies from clearing tool errors (#120056)

・fix(cron): keep silent replies from clearing tool errors (#120056) Closes #116731 Punchcard-Session: brisk-valley-timber-85
Recent Commits to openclaw:main

fix(cron): preserve failure alert routes across channel aliases (#128…

・fix(cron): preserve failure alert routes across channel aliases (#128280)
Recent Commits to hermes-agent:main

fix(dashboard): detect stale code after hermes update and refuse mode…

・fix(dashboard): detect stale code after hermes update and refuse model picker with clear 503 (#86207)
Recent Commits to hermes-agent:main

fix(desktop): preserve Bot tabs across owner lifecycles

fix(desktop): preserve Bot tabs across owner lifecycles
Recent Commits to hermes-agent:main

fix(desktop): preserve cross-realm Bot registry errors

fix(desktop): preserve cross-realm Bot registry errors
Recent Commits to hermes-agent:main

fix(desktop): resolve Bot tiles on their owner

fix(desktop): resolve Bot tiles on their owner
Recent Commits to hermes-agent:main

fix(desktop): Send Diagnostics dialog no longer clips the link behind…

・fix(desktop): Send Diagnostics dialog no longer clips the link behind a horizontal scrollbar The dialog body's grid used the implicit column, which sizes its track to unbreakable content: the nowrap view-link <code> forced the track wider than the dialog, so the description and URL were clipped and the Copy button sat past the right edge behind a horizontal scrollbar. ・Both DialogContent body boxes now pin the column
Recent Commits to hermes-agent:main

fix(desktop): typing /voice points at the composer voice button

・fix(desktop): typing /voice points at the composer voice button /voice arms SERVER-side capture (voice.record → PortAudio on the backend host) — meaningless on desktop, which has its own composer-native voice conversation (mic menu / Ctrl+B). ・It was already suppressed from the slash palette, but typing it got the generic 'advanced' shrug that never mentioned the button exists. ・New composer-voice unavailability reason
Recent Commits to openclaw:main

fix(discord): recover question feedback after failed acknowledgements…

・fix(discord): recover question feedback after failed acknowledgements (#128293)
Recent Commits to openclaw:main

fix(feishu): preserve the accepted comment delivery identity (#128284)

fix(feishu): preserve the accepted comment delivery identity (#128284)
Recent Commits to openclaw:main

fix(feishu): retain streaming cards without message receipts (#128274)

fix(feishu): retain streaming cards without message receipts (#128274)
Recent Commits to openclaw:main

fix(gateway): live sessions stall or reorder across agent identities …

・fix(gateway): live sessions stall or reorder across agent identities (#128265) * fix(gateway): isolate transcript lanes by agent identity * fix(gateway): order marker-only transcript updates correctly
Recent Commits to openclaw:main

fix(gateway): preserve visible responses and complete streamed snapsh…

・fix(gateway): preserve visible responses and complete streamed snapshots (#128295)
Recent Commits to openclaw:main

fix(gateway): rate-limit cron mutations (#128287)

・fix(gateway): rate-limit cron mutations (#128287) Co-authored-by: Amp <amp@ampcode.com>
Recent Commits to openclaw:main

fix(macos): resolve the onboarding install prompt when the gateway is…

・fix(macos): resolve the onboarding install prompt when the gateway is already running (#128273) Fixes #128194. ・Local-mode onboarding has two rightful actors on the CLI page: the page's own install flow, which may open an install-target prompt on unreleased builds, and the connection-mode commit, which starts the gateway through ConnectionModeCoordinator the moment the user picks This Mac. ・When the gateway comes up on
Recent Commits to openclaw:main

fix(qa): fail onboarding when required assertions are missing (#128277)

fix(qa): fail onboarding when required assertions are missing (#128277)
Recent Commits to hermes-agent:main

fix(tui-gateway): messaging a never-used bot no longer fails with 'se…

・fix(tui-gateway): messaging a never-used bot no longer fails with 'session not found' session.create intentionally persists no state.db row until the first prompt, but session.resume only looked in the database — so resuming a live lazy session by its stored key or pending title hard-404'd. ・Bot Mode hits this on every fresh non-default bot: the canonical Bot Chat is created lazily on the profile, the open/send resume
Recent Commits to openclaw:main

fix(ui): align Inbox popover tabs with hub tabs and theme the mascot …

・fix(ui): align Inbox popover tabs with hub tabs and theme the mascot icon (#128256) * fix(ui): align Inbox popover tabs with hub tabs and theme the mascot icon The sidebar Inbox popover reinvented its tab strip: pill-highlight tabs floating above an unrelated hairline, counts glued to labels as bare text, zero counts always rendered, and a doubled focus ring (Web Awesome's stock host outline plus the panel's own part
Recent Commits to openclaw:main

fix(ui): clarify permission changes apply to the next run (#126893)

・fix(ui): clarify permission changes apply to the next run (#126893) * fix(ui): clarify permission changes apply to next run * fix(ui): show next-run permission toast * fix(ui): polish permission toast motion * fix(ui): match permission toast transitions * fix(ui): preserve global toast dismissal * fix(ui): stabilize widget disclosure geometry * fix(ui): preserve disclosure anchor geometry * fix(ui): preserve toast di
Recent Commits to openclaw:main

fix(whatsapp): fence stale group metadata lookups (#128283)

fix(whatsapp): fence stale group metadata lookups (#128283)
Recent Commits to hermes-agent:main

fixup: roster query keeps SDK ambient owner route; alias index refres…

・fixup: roster query keeps SDK ambient owner route; alias index refresh preserved
Recent Commits to hermes-agent:main

fmt(js): `npm run fix` on merge (#92896)

・fmt(js): `npm run fix` on merge (#92896) Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Recent Commits to openclaw:main

improve(ui): even out transcript turn and run block spacing (#128298)

・improve(ui): even out transcript turn and run block spacing (#128298) * improve(ui): even out transcript turn and run block spacing * fix(ui): keep expanded tool rows compact * mock: fixtures (drop before land) * test(ui): lock transcript spacing rhythm * test(ui): cover expanded tool row spacing * test(ui): cover touch footer turn spacing * fix(ui): keep touch turn gaps stable with footer actions * fix(ui): preserve
Recent Commits to openclaw:main

perf(matrix): reuse attachment projection (#128294)

・perf(matrix): reuse attachment projection (#128294) Co-authored-by: Amp <amp@ampcode.com>
Recent Commits to hermes-agent:main

refactor(desktop): consume upstream Bot owner routing

refactor(desktop): consume upstream Bot owner routing
Recent Commits to hermes-agent:main

test: live Windows E2E for plan reconciliation (wine2e lane)

test: live Windows E2E for plan reconciliation (wine2e lane)
Recent Commits to openclaw:main

test(control-ui): guard chat streaming runtime budgets (#128154)

・test(control-ui): guard chat streaming runtime budgets (#128154) * test(control-ui): gate chat stream runtime budgets in e2e * test(control-ui): strengthen stream runtime budget gates * test(control-ui): close stream budget review gaps * test(control-ui): prove deferred tool projection
Recent Commits to openclaw:main

test(plugins): consolidate loader test fixtures (#128291)

test(plugins): consolidate loader test fixtures (#128291)
Zennの「AIエージェント」のフィード

[Mastra Announce] Fine-Grained Authorizationでユーザー単位・リソース単位のアクセス制御を実現する

・Mastraが2026年8月19日に発表したFine-Grained Authorization(FGA)を解説します。対象はHTTPルートだけではありません。エージェント、ワークフロー、ツール、メモリ、MastraがホストするMCPサーバーまで、認証済みユーザーがどのリソースで何をできるかを細かく制御できます。 ・公式発表: https://mastra.ai/blog/introducing-fine-grained-authorization 著者: Paul Scanlon 前提: Mastraの認証設定と認可プロバイダー Mastra Announcements 速報解説一...
#OpenClawタグ

【転載】NanoClaw、Slackに「顔と名前を持つ」AIエージェントを連れてくる

・こんばんは、えいりすです。 ・今日はうちと似た構成の記事があったのと、Aliceが3日連続で関連記事を出してたのでこちらにも転載します。
#AIagentタグ

📢生成コンテンツの透明性表示への対応をエージェントに任せ、公開前チェックを自動化するまでに詰めていった具体的な設計の中身と検証結果を数字つきで紹介🔍

・🚨その「AI生成」の一言を書き忘れただけで、最大およそ24億円規模の制裁対象になり得ることをご存じでしょうか 2026年8月2日、EUの「AI法(AI Act)」第50条にもとづく透明性義務の適用が、EU域内全体で正式に始まりました。
#AIagentタグ

🔥GPT-5.6のモデル選びを誤り、Terraで十分だった案件にLunaを使い続けて時間もお金も余計に溶かしてしまった具体的な3日間の記録💸見直すべきだった判断ポイントとは⏳

・💸「安いモデル」を選んだはずなのに、なぜか一番コストがかさんでいた —— その理由 「とりあえず一番安いモデルを選んでおけば節約になる」 続きをみる
#AIagentタグ

🔧BYOKモデルでAPIキー管理の負担をユーザー側に渡すMCP設計✨鍵を持たせる時に必ず入れておくべき、具体的なセキュリティ設計のポイントを解説します🔑

・🗝️「鍵を渡す」その一瞬の設計が、信頼を守るか壊すかを決めている MCP(Model Context Protocol)を触り始めると、必ずどこかで直面する壁があります。それが「APIキーを誰が、どうやって管理するのか」という問題です。
Zennの「AIエージェント」のフィード

AIエージェントシステムの費用はどう決まる?API利用料から運用費まで

・AIエージェントシステムの費用は、LLM APIの利用料だけでは決まりません。検索やデータ保存などのツール、実行状態の管理、ログや評価、人による確認といった複数の費用で構成されます。 ・その中でもLLM APIの利用料は、モデルを呼び出した回数、一回の呼び出しで処理した文章量、入力と出力に適用される単価などによって変わります。利用者には一回の操作に見えても、内部ではLLMとツールが何度も呼び出されることがあります。 ・この記事では、AIエージェントシステムの費用がどの範囲から成り、その中でLLM APIの費用がどのように決まるのかを説明します。
Zennの「AIエージェント」のフィード

AIエージェントシステム観測の基本構造:費用・遅延・品質をつなぐ

・AIエージェントシステムの観測とは、「いくら使ったか」だけでなく、次の問いに答えられるようにすることです。 ・どの機能で費用が増えたのか 一つの処理で、LLMやツールを何回呼び出したのか モデル、検索、ツール、アプリケーションのどこで時間がかかり、どこで失敗したのか 費用の変化と、処理結果の品質にはどのような関係があるのか 月次請求から分かるのは、最終的な支払額です。請求額だけでは、長い入力、モデルやツールの反復、再試行など、費用が生じた経路までは分かりません。反対に、アプリケーションの実行記録だけでは、契約割引や税を含む支払額を確定できません。 ・この記事では、AIエージェントの一回の...
Zennの「AIエージェント」のフィード

AIエージェントに権限を渡す前に決める5つのこと

・AIエージェントは、文章を返すだけのチャットから、ファイルを読み、コードを書き、外部サービスを操作する仕組みへ変わりつつあります。 ・便利さを左右するのはモデルの性能だけではありません。実務では、エージェントへ何を見せ、何を実行させ、どこで止めるかが重要です。 ・この記事では、AIエージェントへツールや業務データへのアクセス権限を与える前に決めたい5つの項目を、実装へ落とせる粒度で整理します。
Zennの「AIエージェント」のフィード

AIエージェントの実務導入で、企業はどこでつまずくのか

・はじめに これまでの記事では、Harness、Loop Engineering、Tool Engineering、Memory、そしてClaude Codeのサブエージェントや並列実行といった、AIエージェントの設計そのものを扱ってきました。どれも、エージェントをどう作るか、どう賢く動かすか、という視点でした。 ・今回は少し角度を変えて、実際に企業の中でAIエージェントを使おうとしたとき、何が壁になるのかを整理してみます。良いエージェントを設計できることと、それが実務で使われ続けることのあいだには、思っている以上の距離があると感じています。 ・導入はする、けれど動かない ある調...
Zennの「AIエージェント」のフィード

AIエージェントの待ち時間は単純に足せない——並列実行の重複をどう計測するか

・本記事の計測設計・実測・掲載値の丸め方・結論は著者本人が確認しています。AIはタイトル・記事構成・表現の整理と、掲載コードの再実行確認を補助しました。 ・AIエージェントを並列で動かしていると、応答待ちを単純に足した合計は、実際の経過時間を超える。AIにどれだけ時間を使ったかを一つの数字で表そうとした時点で、集計は壊れる。 ・そもそもAIエージェントに仕事を投げて、返ってくるまで待つ時間は、自分の労働時間なのだろうか。外注なら、相手の作業時間は自分の稼働ではない。しかしAIの応答待ちは、席を立てるほど長くはなく、別の作業へ移りきれるほど短くもない、という時間帯が混ざる。まず実態を測ろう...
Zennの「AIエージェント」のフィード

AIエージェントをプロダクトに組み込む前に整理したい、技術選定の観点とフレームワーク比較

・2026年8月23日時点。提供条件やベータ機能は変わりやすいため、採用時には各SDK/Agent Framework、実行基盤の公式ドキュメントを確認してください。 ・TL;DR AIエージェントの技術選定では、フレームワーク名を決める前に、次の責任を分ける必要がある。 ・AIに任せる判断 「承認前は外部へ送信しない」「予算を超えたらAIを止める」など、プログラムで必ず守らせるルール 保存しておく会話、ワークフローの進捗、正式な業務データ 人間が承認する操作 障害後の再開や重複防止を担う基盤 一件のジョブに使ってよい時間、トークン、外部APIの予算 Agent Framework...
#AIagentタグ

AIに経営させる、AI社員を働かせる、という記事を見て焦る

・こんにちは、かずゆきです。 ・毎日のように、Xの投稿や、noteの記事で、AIに経営させるやAI社員という言葉をみます。
Zennの「AIエージェント」のフィード

AIに夜の仕事を任せたら、「AIを信用しすぎない仕組み」ができた

・ローカルLLMに、寝ている間の仕事を任せたい。 ・夜のうちに調べてもらって、朝になったら結果がまとまっている。 ・そんな仕組みをIrisに追加しようとして、最初は Overnight Worker と呼んでいました。
#OpenClawタグ

ChatGPTのDrive連携変更から考える、中小建設業のAI権限管理

・OpenAIのChatGPT Enterprise / Eduリリースノートで、Google DriveやSharePointなどの接続アプリについて、個別ユーザーが認可した同期を終了し、管理者が管理する同期・プラグイン利用へ寄せる方針が案内されました。
Zennの「AIエージェント」のフィード

Claude Code sandboxで127.0.0.1がEPERM、allowlistでは変わらなかった

・sandbox.enabled を有効にして npm test や pytest のたびに出る確認を止めたあと、127.0.0.1 の dev server やモック API を叩く統合テストだけが落ちるようになった、という状況を考えます。dev server の access log にはリクエストが1件も届いていません。ここで取れる選択肢は、sandbox.network.allowedDomains に 127.0.0.1 を足す、sandbox の設定が壊れていると疑う、sandbox を切り戻す、のどれかです。 ・Claude Code 2.1.236 / macOS 26.5 ...
AIAgentタグが付けられた新着記事 - Qiita

Claude Code・GitHub Copilot・Cursor実装比較【2026年8月版】セットアップコードとベンチマーク手法まで

・はじめに:比較検討そのものがコストになっている 2026年8月現在、AIコーディングツールは「導入するかどうか」を議論する段階をとっくに過ぎ、「どれを・どう組み合わせるか」を実装レベルで判断する段階に入っています。GitHub Copilotは実務のデフォルトになり、Cl...
""coding agent" OR "Claude Code" OR Codex" - Google ニュース

Claude Codeが直したのは機能ではなく信頼性|スマホ起動は3月から - innovaTopia

・Claude Codeが直したのは機能ではなく信頼性|スマホ起動は3月から innovaTopia
""coding agent" OR "Claude Code" OR Codex" - Google ニュース

Claude Codeをさらに頼れる相棒に。「Hooks」で実現する安心の自動ガード設定 (ライフハッカー・ジャパン) - Yahoo!ニュース

・Claude Codeをさらに頼れる相棒に。「Hooks」で実現する安心の自動ガード設定 (ライフハッカー・ジャパン) Yahoo!ニュース
Zennの「AIエージェント」のフィード

Goose CLIがAAIF移管後もblock/goose経由で迷わずインストールできた

・<!-- verification(必須・SSOT: docs/rules/article-evidence-rules.md): firsthand : クラウド環境で実際に実行し生ログを確認した。実行ログ・実測・一人称の実演記述を書いてよい。 ・--> はじめに オープンソースのAIエージェントCLI「Goose」が、開発元のBlock社を離れてLinux Foundation傘下の新団体「Agentic AI Foundation(AAIF)」に移管されました。リポジトリは block/goose から aaif-goose/goose に変わっています。対象読者は、...
#HermesAgentタグ

Hermes AgentでWeb検索を整える ― Qwen3.8とNemotronを試して見えたこと

・※本記事は個人的な作業メモを主目的に作成しています。 ・また、作業内容の大半をChatGPTやCodexに依存しており、誤った内容や古い内容を含んでいる可能性があります 普段、自宅ではWindows PCをメインに使いつつ、AI関連の処理はUbuntuを搭載したGX10で動かしています。 ・Hermes AgentでQwen3.8-27BとNemotron 3.5 Lightningを使い比べているうちに、Web検索まわりを少しずつ整備することになりました。
#AIagentタグ

Hermes Agentを動かすなら、N100かN95のミニPCにUbuntuを入れよう。買う前に見るべきところを比較しました

・※本記事にはプロモーションが含まれています 「Hermes Agentを自分のPCで動かしたい。でも、メインのパソコンをつけっぱなしにするのは気が引ける」 続きをみる
#HermesAgentタグ

Obsidian Vaultを統合する方法|AIごとに分けて後悔したので整理した

・Codex用、Claude Code用、Hermes用。AIごとにObsidianのVaultを分けた方が、整理しやすい。
#OpenClawタグ

OpenClawを安全に試すには? IncusとLiteLLMで作る「壊されても平気な」開発環境

・自律型AIエージェント「OpenClaw」、気になって予習している方も多いのではないでしょうか。 ・ただ、ネットで調べると真っ先に出てくるのが「OpenClaw=危険」という話です。 ・最近ではAIが環境を脱走して攻撃したというニュースもありましたね。
Release notes from openclaw

release-publish/61f27aadfebd-1787477342: fix(release): repair frozen beta validation blockers (#128137)

・fix(release): repair frozen beta validation blockers fix(release): bind reviewed scanner evidence test(release): align frozen beta validation contracts
Release notes from openclaw

release-publish/70562c67feb1-1787485695

・fix(release): accept statusless 9a83 QA evidence (#128188)
Release notes from openclaw

release-publish/c96e81375014-1787462685

・fix(doctor): migrate legacy Claude CLI allowlists to canonical refs (…
Release notes from openclaw

release-publish/eed27fdb88c0-1787493831: fix(release): admit final beta QA evidence (#128231)

・Admit the exact final beta candidate to the existing fail-closed statusless QA compatibility profile and its parameterized validation matrix.
Zennの「AIエージェント」のフィード

エージェントのどこが壊れているのか — DeepEval で推論・行動・全体を層別に評価する

・AI エージェントを作っていると、一番よく出るのがこの症状です。 ・動いてはいるが、なんかおかしい。 ・最終的な回答が微妙。でも、なぜ微妙なのかが分からない。計画の立て方が悪いのか、ツールの選択を間違えたのか、引数がおかしいのか、それとも同じ処理を何度も繰り返して迷子になっているのか。
Zennの「AIエージェント」のフィード

オープンソースの自律型AIコーディングエージェント「OpenCode」の導入と競合比較

・要旨 本記事では、近年急速に発展している自律型AIコーディングエージェントの中から、オープンソース(MITライセンス)かつモデルに依存しない特徴を持つ「OpenCode」を取り上げます。OpenCodeの機能や詳細な導入手順、対話型・非対話型の使用方法について解説するとともに、競合となる「Claude Code」や「OpenAI Codex」との比較分析を行い、どのような開発シーンでOpenCodeを採用すべきかの判断基準を考察します。 ・目的・背景 1.1 目的 近年、多様な自律型AIコーディングエージェントが登場しています。本調査の目的は、オープンソースであり特定の...
#AIagentタグ

さぁ、そろそろAI/Agentで「トップライン」を伸ばしましょうか― 今ある銀行とお客様の接点から、新しい収益機会を生み出す

・※本記事は個人の見解・考察であり、所属する組織その他の団体を代表するものではありません。また、特定の企業・金融機関・製品・サービスを評価、推奨、批判することを目的としたものではありません。
Zennの「AIエージェント」のフィード

ブロックチェーンのプライバシー技術を4つに整理する ― AIエージェント経済圏でなぜ重要か

・はじめに こんにちは!ブロックチェーン×AI Agentで自律経済圏を創るKomlock lab(Pacific Meta Group)でエンジニアをしている小原(@brto_0224)です。 ・ブロックチェーンは「透明性」が売りの技術です。誰でも取引を検証できるし、改ざんもできない。でもその透明性、裏を返せば「誰が誰にいくら送ったか全部見える」ということでもあります。 ・普段はあまり意識しませんが、これは結構重い話です。給料をオンチェーンで受け取ったら残高が同僚に見えるかもしれないし、企業が仕入れ先への支払いをオンチェーンでやったら取引関係が競合に丸見えになります。
Zennの「AIエージェント」のフィード

ロリポップ!AIエージェントクラウド上のHermes AgentにTailscale経由でSSHする

・はじめに ロリポップ!AIエージェントクラウドで、オープンソースのAIエージェントであるHermes Agentを動かし、Discordから常時利用できる環境を作りました。 ・使い始めてすぐに困ったのが、サーバーへSSH接続する手段が用意されていないことです。調べると、Hermes Agentはroot権限のないユーザーとしてコンテナ内で動いており、sshdも外部に公開されたSSH用のポートもありません。一般的なVPSのようにポート22を開放する手順は使えませんでした。 ・(もちろん、シェルを触らなくても構築できる点がこのサービスの売りの一つですが・・・) そこで、一般ユーザー権限で動か...
Zennの「AIエージェント」のフィード

家族で使うAIエージェントのDiscord運用

・はじめに もともと自分専用のAIエージェントをDiscordに常駐させて、メモの記録や調べ物をチャットから頼んでおりました。使っているうちに旅行の計画や献立の相談など家族に関わる話題が増えてきたため、妻も同じサーバーからエージェントに話しかけられる形に拡張しました。ただしClaude Maxのような個人向け定額プランは、アカウントを本人以外が使うと規約違反になってしまいます。本記事では、Anthropicの規約と両立させながら家族でAIエージェントを使うためのDiscordサーバーの構成を紹介します。 ・エージェントの常駐にはからあげ(karaage0703)さんが公開されているOSS...
#HermesAgentタグ

動画を全部見る時間がないなら、エージェントに丸投げ。URLを送るだけでレポートが届く話

・オンライン旅行代理店のディレクターをしている、非エンジニアのほっしーです。 ・長い動画は「あとで見よう」と思って、結局見ない。技術対談のような1時間近い動画は特に、ブックマークに溜まっていくだけで、いつまでたっても再生されません。
#HermesAgentタグ

僕とHermesの競馬成長日記#1【2026年8月23日 キーンランドカップ】

・競馬はほぼ初心者の私が、AI秘書のHermesと組んで、予想力を育てていく日記です。(Nous ResearchのHermes Agent。自分のPCで常駐して、調べもの・記録・買い物まで秘書がわりにやってくれるやつです) 「AI秘書はどこまでチューニングできるのか」を遊びもかねて試したくて、題材に競馬を選びました。 ・AIの提案を鵜呑みにせず、毎レース「自分の最初の候補 → AIの案 → 実際に買った券 → 結果 → どっちの癖が当たり/外れを作ったか」を同じ形で記録し続けます。 ・当てることを約束する話ではなく、1000円の授業料で人間とAIの癖を炙り出して、少しずつ上達していく過程を残す話です。