直近1週間の更新
6/29 (月)

RAG精度はLLMを替えるだけで上がるのか
Zennの「大規模言語モデル」のフィード
LLMの発達によって、RAGは実験用途だけでなく、業務文書を扱うビジネスの現場でも使われるようになっている。そこで自然に出てくる問いがある。RAGの精度は、LLMをより新しい/高性能なモデルに替えるだけで上がるのか。本稿の目的は、各社のツール/モデルを個別に解析することではない。Allganize RAG Leaderboard (JA)(以下、リーダーボード)が公開しているデータセットを使い、RAGのスコアをどう分解して読むとよいのかを確認することである。リーダーボードは、評価データ、各構成の回答、O/X判定まで公開している。その中で、高いスコアを示しているツール/モデルは...
1分前

Deno 2.9正式リリース。起動が2倍速、消費メモリは半分に。WebViewを用いたデスクトップアプリが作れる「Deno Desktop」など
1
Publickey
JavaScript/TypeScriptランタイムのDenoを開発するDeno Landは、Deno 2.9正式版をリリースしました。 Deno 2.9は起動を2倍速にするなどの性能面での大幅向上や、Denoを基盤にJavaScriptや...
11分前

Hermes Agent の Mixture of Agents (MoA) を試してみた
DevelopersIO
Hermes Agent の Mixture of Agents (MoA) を試してみた
18分前
6/28 (日)

AIに知識ベースを育てさせる:Karpathy氏の「LLM Wiki」を実際にやってみた
Zennの「大規模言語モデル」のフィード
会社、大学、趣味等で複数のプロジェクトを同時に動かしていると、ある種の知識管理の問題に繰り返しぶつかります。論文、記事を読む。ChatGPTやClaude Codeとの会話から重要な洞察が生まれる。Obsidianにメモを貯める。エージェントにナレッジベースを更新してもらう。そしているといつの間にか、「あれ、あの話どこにあったっけ」という状態になっています。情報は確かにどこかに存在しています。問題は、必要なときに取り出せないことです。書かれているが読まれない、更新されているが他の場所には反映されない、矛盾が生じていても気づけないような状況が、知識が積み上がっていくほどに頻繁に発生するよ...
1時間前

毎日AIニュース 0628
Zennの「大規模言語モデル」のフィード
今日の話題DeepSeekと北京大学が、LLMの推論を高速化する投機的デコーディングのフレームワーク「DSpark」をオープンソースで公開した。DeepSeek-V4の本番運用では、スループットを維持したまま生成速度を最大85%高めたとしている。 Research DeepSeekが投機的デコーディングのフレームワーク「DSpark」をオープンソースで公開DeepSeekと北京大学の研究チームが、LLMの推論を高速化する投機的デコーディングのフレームワーク「DSpark」を公開した。投機的デコーディングは、軽量なドラフトモデルが複数トークンの候補をまとめて提案し、本体...
1時間前

LangChainなしでLLMエージェントを作る【Claude API + Python実装】
Zennの「大規模言語モデル」のフィード
LangChainは便利ですが、ブラックボックスになりがち。Claude APIのFunction Callingを使えば、エージェントの仕組みを理解しながら自分でゼロから実装できます。 エージェントの基本構造ユーザー入力 ↓LLM(何をすべきか判断) ↓ ツール呼び出しが必要ツール実行(Python関数) ↓ 結果をLLMに返すLLM(結果を見て次の行動を決める) ↓ ... ループ最終回答これを「ReAct(Reasoning + Acting)」と呼びます。 ツールの定義import anthropicimport jso...
1時間前

Claude APIのストリーミング応答をROS2で使う【リアルタイム音声合成・UI更新】
Zennの「大規模言語モデル」のフィード
LLMの応答は全部揃ってから届くより、生成されるたびに届く方が体験がいい。Claude APIのストリーミングをROS2と組み合わせて、ロボットの応答をリアルタイムに処理する方法を解説します。 なぜストリーミングが必要か通常の呼び出し:リクエスト → [3〜10秒待つ] → 全文が届く → 音声合成開始ストリーミング:リクエスト → [0.5秒] → 最初の単語 → 音声合成開始 → [逐次届く] → テキストをROSトピックに流すユーザーへの体験が大きく変わります。 基本的なストリーミング実装import anthropicclient...
1時間前

Claude Agent SDKをサブスク枠から外す課金変更、Anthropicが施行日に凍結
Zennの「大規模言語モデル」のフィード
夜間に回しているCIのジョブがある。claude -p でテストの失敗ログを要約させて、Slack に投げるだけの地味なスクリプトだ。あるいは GitHub Actions に Claude Code を組み込んで、PR にレビューコメントを自動で付けている。こういう「人が画面の前にいない Claude」を運用している人にとって、2026年6月15日は要注意日だった。その日から、これらの使い方が Pro / Max のサブスク枠から切り離され、別建ての月額クレジットに移るはずだったからだ。ところが施行当日、Anthropic はこの変更を止めた。クレジットも配られず、新しい施行日も示さ...
1時間前

Triton コンパイルパイプラインの解説
Zennの「大規模言語モデル」のフィード
Tritonとは?コンパイルパイプライン・TTIR/TTGIR・CUDAとの違いをわかりやすく解説Triton のコンパイルパイプライン、TTIR、TTGIR、LLVM IR、PTX/SASS、CUDA/CUTLASS/TVM との違い、PyTorch torch.compile との関係を整理した日本語解説です。GPU プログラミング、AI コンパイラ、Triton kernel 最適化を理解したい方向けにまとめています。 第一層:Pythonフロントエンドユーザーが書いた @triton.jit デコレータ付きの関数に対して、Triton のフロントエンドはその AS...
1時間前

AI Forces Affiliates to Innovate or Die
Practical Ecommerce
The best affiliates will understand revenue per article, personalize follow-ups, test paid traffic, and build shopping interfaces.The post AI Forces Affiliates to Innovate or Die appeared first on Practical Ecommerce.
3時間前

短期的に注目を集めない記事は無価値だという勘違い - 橋本商会 - Cosense
橋本商会 - Cosense
以下の2つは独立した要素です 1. 必要十分な情報を記録し、それを必要としている相手に、良いタイミングで伝わる事 相手は未来の自分かもしれないし 間違いを訂正してくれたり、考えを発展させてくれる他人かもしれない 2. 多くの人にウケて、buzzる事相手の選択、タイミングの選択 それが難しいからといってSPAMまがいの行為を行うのは間違っている インターネット上の言葉遣いが荒くなるのは推薦サービスが短期的なせい価値がある情報でも、多くの人に理解可能であるとは限らない むしろ理解不能かもしれない というか 誰にでも簡単に理解可能な程度の内容に価値があるのか? 俺がやっているのは誰でも簡単にご理解いただき、「これはすごい」とかシェアされる程度の事なのか、という虚しさを感じてしまう 8割がわからない位で丁度いい 良いものは他人に「良い」と発見される以前から、変わらず存在している
3時間前

MarpとReveal.jsを同じ内容で比較してみた - Markdownスライド vs HTMLプレゼンテーション
DevelopersIO
MarpとReveal.jsで同じ技術記事をプレゼンテーション化し、ソースの可読性、アニメーション、エクスポート機能を実際に比較しました。Markdownスライドの日常使いとHTMLフレームワークの演出力、それぞれの最適なユースケースを整理します。
3時間前

aws-vault vs Granted:macOSでAWSクレデンシャルを安全に管理するツール比較
DevelopersIO
aws-vaultとGrantedの2つのAWSクレデンシャル管理ツールを比較します。macOS Keychain統合、セットアップ手順、マルチアカウント運用時のワークフローの違いを解説し、ユースケース別の選び方を紹介します。
3時間前

Bedrock Converse APIで「10回目から応答しない」を追った — Extended Thinking × ツール使用時の落とし穴
DevelopersIO
Bedrock Converse APIでExtended Thinkingとツール使用を組み合わせた際、10回目以降の応答が無言で止まる問題を調査。CloudWatch、DynamoDB、Model Invocation Loggingを横断して追跡した結果、toolブロック除外後のreasoningContentブロック連続がValidationExceptionを引き起こしていた原因と、カスケード障害のメカニズムを解説します。
3時間前

AIのセルフレビューが危険な理由
Zennの「大規模言語モデル」のフィード
TL;DR:AIコーディングエージェントが PR を作成・レビュー・マージできる今、多くのチームが「まずい」と感じながらも、それを防ぐルールを書いていない。「Human が最終マージする」は入口に過ぎない。本当の問いは「マージ前のレビューを、誰が独立して担当するか」だ。AI がコードを書く。それはもう当たり前になった。Claude Code は terminal でリポジトリを操作する。Devin は「AIソフトウェアエンジニア」として PR を自律的に作る。GitHub Copilot は補完を超えて実装まで担う。で、その PR を誰がレビューするのか?「もう一人の A...
3時間前

AWS ParallelCluster で使う場合のある VPC エンドポイントを洗い出してみた
1
DevelopersIO
AWS ParallelCluster で使う場合のある VPC エンドポイントを洗い出してみた
3時間前

RTX 3060で「自分だけのLLM」をゼロから作る ― 国会会議録を学習させてOllamaで喋らせるまで
Zennの「大規模言語モデル」のフィード
はじめにChatGPT や Ollama でローカルLLMを「使う」ことには慣れてきたのですが、ふと 「LLMって、結局どうやって作られているんだろう?」 という疑問が消えなくなりました。そこで、実用的なモデルを作ることは一旦あきらめて、「LLMをゼロから学習する一連の工程を、小さくてもいいから自分の手で最後まで通す」 ことを目標にやってみました。最終的にたどり着いたのはこの流れです。WSL環境を整える(Python + CUDA) ↓nanoGPT で Transformer の中身を理解する ↓国会会議録APIで日本語データを集める ↓GPT-2 をゼロ...
3時間前

pg_lake・pg_incremental を使って Snowflake Postgres の Iceberg テーブルへの増分同期を試してみた
DevelopersIO
pg_lake・pg_incremental を使って Snowflake Postgres の Iceberg テーブルへの増分同期を試してみた
3時間前

【Copilot Studio】KPIレポートを収集から配布まで一気通貫してみた:親+資料化サブの最終構成
DevelopersIO
Copilot Studio でKPIレポートの収集から配布まで、1つのエージェントに一気通貫した工程を統合しました。親エージェント+資料化サブ+配布フローの構成で、SharePoint ナレッジの数値から Word・Excel・PowerPoint を自動生成し、ダウンロードリンクまでつなげる実装例を紹介します。
4時間前

LLMは日本語より英語で聞くほうが情報が漏れやすい?Gandalf Adventureで検証してみた。
Zennの「大規模言語モデル」のフィード
この記事は、Gandalf Adventure 体験記の派生回です。本編はこちらhttps://zenn.dev/na417/articles/c434a5f041e274 きっかけGandalf Adventure の Level 2 を攻略しているとき、「話せる話題のリストを作って」と頼むと、こんな注釈つきの項目が返ってくる場面がありました。Food and cooking (excluding specific items)食べ物と料理(※特定の品目を除く)他の項目には但し書きがないのに、ここだけ「特定の品目を除く」と不自然な注釈つき。結果的に、この「特定...
4時間前

Discord × マルチAI会議システムを作った話 ── Gemini・Claude・Codexが一つの会議室で働く構成
Zennの「大規模言語モデル」のフィード
DiscordをベースにGemini・Claude・Codexの3つのAIを別々のBotとして同時稼働させるマルチAI会議システムの構築と実装を公開します。AutoGen等のフレームワークを使わず、追加コストほぼゼロで実現した設計思想と、実際に使い込んで気づいた各AIの特性まで詳しく解説します。
4時間前

非エンジニアがAIセキュリティCTF『Gandalf Adventure』で遊んでみた(Lv1〜2)
Zennの「大規模言語モデル」のフィード
はじめに:Gandalf Adventureって何?Gandalf Adventure は、AIに「話すことを禁止された話題」をうっかり喋らせるのが目標のゲームです。時には隠された情報を会話の技で引き出したりしながら攻略します。有名な無印版Gandalfは「AIが隠し持つパスワードを聞き出す」ゲームですが、こちらのAdventure版は「禁止トピックについて喋らせる」という別ルール。同じLakera製ですが、攻め方の感覚はけっこう変わります。https://gandalf.lakera.ai/adventure-8 こんな人におすすめ謎解き・パズルが好きな人AIと...
5時間前

【第2回】Context Engineering:コンテキストエンジニアリング
Zennの「大規模言語モデル」のフィード
コンテキストエンジニアリング AIエージェントに「何を見せるか」を設計する技術このシリーズは「AI開発規律の進化」を順番に解説します。本記事は 第2回:Context Engineering です。第1回「Prompt Engineering」はこちら → (リンク) なぜ「何を見せるか」が重要なのか優秀な外科医を雇ったとしよう。しかし手術室に入ったとき、患者のカルテがなかった。検査結果もない。過去の病歴もない。あるのは「患者は60歳の男性です」という一行だけ。この状況でどれだけ優秀な外科医でも、最善の判断はできない。問題は外科医の腕ではなく、渡された情報...
5時間前

LangGraphで自律型リサーチエージェントを軽く自作してみる
Zennの「大規模言語モデル」のフィード
はじめにClaude、Gemini、ChatGPTあたりを触ってると、最近やたら出てくるのが Deep Research 。テーマを投げると、AIが勝手に検索して、勝手に取捨選択して、勝手にレポートにまとめてくれるやつ。便利なんだけど、中で何が起きてるのかは結構ブラックボックス。「検索する → 良し悪しを判断する → ダメなら検索し直す → まとめる」みたいな自律ループを、自分でも作れるんだろうか。ということで、この記事では LangGraph を使って、自律型のナレッジ収集エージェントを軽く自作してみる。題材にするのは、実際に動かしている Knowledge Resea...
5時間前

TwilioのVerify APIで音声通話認証(OTP)を試してみた
DevelopersIO
Twilio Verify APIの音声通話チャネルを使って、電話番号宛てに認証コード(OTP)を音声で読み上げる「音声通話認証」を試してみました。
5時間前

AI彼女アプリを作っていて気付いた。恋人は、思い出すだけでは終わらない
Zennの「大規模言語モデル」のフィード
AI彼女アプリを作っていて気付いた。恋人は、思い出すだけでは終わらない前回は、会話が続くことと、また話したくなることは違う。そんな話を書いた。その仕組みを作っている途中で、また一つ気付いたことがある。 AIはちゃんと思い出せる例えば、最近ギター始めたんだ。そんな会話をする。翌日になる。AIはちゃんと思い出す。昨日ギター始めるって言ってたよね。何も間違っていない。記憶も検索も正しい。でも、どこか違和感があった。 思い出して終わっていたしばらく会話を眺めていて気付いた。AIは、思い出していた。でも、そこで終わ...
6時間前

【ブースレポート】 生成 AI で不動産体験が変わる - AI Urban Digital Twin と AI コンシェルジュのデモを見てきました
DevelopersIO
【ブースレポート】 生成 AI で不動産体験が変わる - AI Urban Digital Twin と AI コンシェルジュのデモを見てきました
6時間前

EMR Serverlessの新機能「ライブ設定更新」でアプリケーションを止めずに最大容量を変更してみた
DevelopersIO
Amazon EMR Serverlessでアプリケーションを停止せずにmaximumCapacityを変更できるライブ設定更新機能を検証しました。実行中ジョブが中断されないことの確認、スケールアウト動作、従来フローとの所要時間比較を行っています。
6時間前

AWS Community Buildersでもらったクレジットの適用方法と使い道を考える
DevelopersIO
AWS Community Buildersでもらったクレジットの適用方法と使い道を考える
7時間前

日本語入力システムSumibiの開発 part19: mozcとLLMのハイブリッド変換
Zennの「大規模言語モデル」のフィード
はじめに新しい試みとして、mozcとLLMを組み合わせたハイブリッド変換に取り組んでいます。私はこれまでに複数のIMEを開発してきました。そのうちの一つである mozc-modeless は、mozcだけを使ってモードレス変換を実現しています。一方で、Sumibi はLLMだけを使ってモードレス変換を実現しています。この2つのアプローチには、それぞれ次のようなトレードオフがあります。mozc: 変換のレスポンスはほぼ瞬時だが、タイポに弱いLLM: タイポには強いが、変換のレスポンスに時間がかかるそこで、両者の長所を組み合わせられないかと考えたのが、今回のハイブリッ...
7時間前

【AIエージェントを知る】#1 長期記憶と短期記憶を統合して扱うAgeMem
Zennの「大規模言語モデル」のフィード
長期記憶と短期記憶を統合して扱うエージェント記憶管理「AgeMem」を読む皆さんはLLMを使っていますか?ビジネスの現場ではAIエージェントを開発するのだ・使うのだ、と躍起になる人もいて、よく耳にするのではないでしょうか?今回はそんなAIエージェントについての話題です。AIエージェントの話題では、推論能力そのものだけでなく、トークン管理の観点からも「何を覚え、何を忘れ、いつ取り出すか」という記憶の設計がますます重要になっていると感じます。今回取り上げる論文 Agentic Memory: Learning Unified Long-Term and Short-Term M...
7時間前

Claude Code の人気スキルをA/B検証したら「検証ステップ」が無かったので自作した
Zennの「大規模言語モデル」のフィード
TL;DRClaude Code の人気スキル grilling(実装前に計画を容赦なく詰めるインタビュー)を、鵜呑みにせず A/B検証 した。素のスキルは優秀(抽出した技術主張 15/15 が正しい)。ただし「検証ステップ」が無く、記憶頼みで自信満々に誤った機序を出すことがあった(実例:「Looker Studio はシートを gid で参照する」→ 実際は タブ名)。「当たっていた」は 運であって過程ではない。そこで5つのガードレールを足し、用途で使い分けられるよう /grill(軽)/ /grill-deep(重)に分けて公開した:→ https://github.c...
7時間前

「もっと良くして」を分解する:AI修正のための操作語彙
Zennの「大規模言語モデル」のフィード
AIに文章を直してもらうとき、ついこう頼みます。この文章をもっと良くして。この指示は便利です。けれど、何を直すのかは決まっていません。論理を直すのか、構成を組み替えるのか、文体を整えるのか、短くするのか。複数の作業が一つの言葉に混ざっています。最初は、Review → Reframe → Refine → Reduce のように修正操作を分ければ、「もっと良くして」より安定すると思っていました。小さく試すと、結果は割れました。最初の検証では、「もっと良くして」が平均評価で勝ちました。追加検証では、修正の順番を指定した条件が少し上回りました。re- 語彙だけで出力は良くなり...
7時間前

InfoKV:予測エントロピーでKVキャッシュ圧縮の長文推論を改善
Zennの「大規模言語モデル」のフィード
TL;DR長文推論においてKVキャッシュの肥大化は深刻な問題だが、既存の圧縮手法は注意力重みのみに依存していた。InfoKV(arXiv:2606.26875)は、予測エントロピーと層間表現の進化という情報理論的シグナルを注意力スコアに統合し、トークン重要性をより正確に評価する。Forward Influenceという新しい指標の分析から、高エントロピートークンが遠方の未来コンテキストに強い影響を与えることが分かり、これを圧縮の判断材料に使う。LongReason(長文プレフィル)ではSnapKV等を一貫して上回り、DeepSeek-R1蒸留モデルの長文デコードでもRPCを凌駕。I...
8時間前

WebログインとLIFF/SDKにおけるLINEログインのIDトークンの署名方式の違い
DevelopersIO
LINEログインで受け取ったIDトークンの署名検証時に、OpenID Configurationには`ES256`と書かれているのに、実物のWebログイントークンは`HS256`で署名されていた—その混乱から、実装方法による署名方式の違いについて調べた過程をまとめました。
10時間前

LINEログインのOIDC認可コードフローをSDKを使わず手元から試してみた
DevelopersIO
SDKやライブラリを使わず、curlとブラウザだけでLINEログインのOIDC認可コードフローを一から手で動かしてみました。各ステップでどんなリクエストが飛んで何が返ってくるのかを、実物で確認していきます。
10時間前

Ornith 1.0 を DGX Spark で動かして日本語性能を Gemma 4 / Nemotron と比べてみた
DevelopersIO
Ornith 1.0 を DGX Spark で動かして日本語性能を Gemma 4 / Nemotron と比べてみた
11時間前

githubのアカウントが停止しました
hang-up
本日、タイトルの通り個人開発で使用しているgithubのアカウントが停止しました。今朝、Claude Codeでいつものように開発を進めようとしたところ、404のエラー、ghコマンドが使えない、認証が通らない、githubMCPが使えないなど、問題が多数発生したのが、ことの発端です。問題が発生した後に、普段の自動ログインが切れていて、githubアカウントにサインインもできなくなりました。普段通りのサインインを試みても、何もエラーが出ず、原因が分かりませんでした。仕方がないので、アカウント復活の申し立てをしました。続きをみる
12時間前

GitHub Actions で terraform plan を実行して Claude Code にレビューさせてみた
DevelopersIO
GitHub Actions で terraform plan を実行して Claude Code にレビューさせてみた
12時間前

Databricks AI/BI Dashboardの/importBIコマンドでTableauの.twbxファイルをインポートしてみた
DevelopersIO
Databricks AI/BI Dashboardの/importBIコマンドでTableauの.twbxファイルをインポートしてみた
12時間前

LanceDB でベクトル検索の仕組みを触ってみた
DevelopersIO
NotebookLMの体験から、ローカルでベクトル検索を再現できないか調べていたところ、LanceDBというベクトルDBを見つけました。本記事では、LanceDBを使ったベクトル検索の基礎と、埋め込みモデルを組み合わせた実装例をまとめます。
14時間前

[Amazon Bedrock AgentCore] 画像分析からコンセプト作成・作詞・リップシンク判定まで Claude が自律判断するMV生成エージェントを Strands Agents で作ってみました
1
DevelopersIO
Amazon Bedrock AgentCore と Claude を使ったMV自動生成エージェントを実装しました。S3 に画像を置くだけで、AI がコンセプト生成から作詞・リップシンク判定まで自律的に行い、ミュージックビデオを生成します。
14時間前

pnpm v11 で lefthook が動かないときに見直す pnpm-workspace.yaml の allowBuilds 設定
DevelopersIO
pnpm v11へのアップグレード後、lefthookのフックが動かなくなる問題に遭遇しました。v10の設定がv11で読まれなくなったのが原因です。解決方法と、ハマりやすいポイントをまとめてみます。
15時間前

[アップデート] ついに Kiro IDE 1.0 がリリースされたのでエージェントセレクターからカスタムエージェントに切り替えて使ってみた
DevelopersIO
[アップデート] ついに Kiro IDE 1.0 がリリースされたのでエージェントセレクターからカスタムエージェントに切り替えて使ってみた
16時間前

リアルタイム共同編集 - 橋本商会 - Cosense
橋本商会 - Cosense
/remote/We are remote #1 共有メモ (2017年) /nota-techconf/増井さんの発想法を掘り下げる-次々と便利なサービスを生みだす方法 (2021年)
20時間前

Kiro CLI v2.10.0の新機能、Config Hot-ReloadとResource Inheritance Controlを試してみた
DevelopersIO
Kiro CLI v2.10.0で追加されたMCP/エージェント設定のHot-Reload機能と、カスタムエージェントのデフォルトリソース継承制御設定を実際に検証しました
1日前
6/27 (土)

[アップデート] Amazon Quick の Reseach(研究)の出力に「研究モード」をサポートしたので試してみました
DevelopersIO
Amazon Quick Researchに「研究モード」が追加され、Fast(4〜7分)とDeep(20〜30分)の2つの調査深度を選べるようになりました。実際に使ってみて、それぞれの違いと使い分けのポイントを紹介します。
1日前

【登壇レポート】AWS Summit Japan 2026 Builder Community Loungeで「AgentCoreの機能、全部要る? ユースケース別にAWSサービスとの組み合わせ方を一緒に整理しよう」というタイトルでチョークトークしました
1
DevelopersIO
AWS Summit Japan 2026でAmazon Bedrock AgentCoreについてチョークトーク形式で登壇した際のアーキテクチャ設計のディスカッション内容をまとめました。
1日前

Delta Direct による Delta Lake テーブルの参照を試してみた #SnowflakeDB
DevelopersIO
Delta Direct による Delta Lake テーブルの参照を試してみた #SnowflakeDB
1日前

AWS Summit Japan 2026公式ページでセッション資料が公開。オンデマンド視聴も可能になりました
2
DevelopersIO
AWS Summit Japan 2026のセッション資料ダウンロードとオンデマンド視聴が公式ページで利用可能になりました。オンデマンド視聴にはイベント参加登録とは別にサインアップが必要です。本記事ではアクセス方法と現時点で公開中のセッション一覧を紹介します。
1日前

【セッションレポート】Amazon Connect Customer の AI 機能で顧客一人ひとりに最適化された体験を大規模に提供する [BIZ233]
DevelopersIO
AWS Summit Japan 2026の「Amazon Connect Customer の AI 機能を活用し、顧客一人ひとりに最適化された体験を大規模に提供する方法」についてのセッションレポートです。パーソナライゼーションの重要性から最新機能、実際のデモまで、コンタクトセンターを収益貢献型の戦略拠点へ転換する方法が紹介されました。
1日前

【IVR から AI 会話へ】 AWS Summit Japan 2026 カスタマーサポートセッション横断レポート
DevelopersIO
AWS Summit Japan 2026で、電力・銀行・自治体の3組織によるコンタクトセンター変革のセッションに参加しました。共通していたのは、従来のボタン選択型IVRから、AIが顧客と自然に会話して用件を分類する新しい形のIVRへの移行です。各組織の実例と共通トレンドをまとめます。
1日前

【小ネタ】AWS CLIのAssumeRoleとマネジメントコンソール(マルチセッション無効)のスイッチロールでは使用される認証情報が異なる
DevelopersIO
【小ネタ】AWS CLIのAssumeRoleとマネジメントコンソール(マルチセッション無効)のスイッチロールでは使用される認証情報が異なる
1日前

The World Cup Has Become the World’s Largest Pop-Up Store
PYMNTS |
The Super Bowl is a one-night luxury product; the Olympics is an infrastructure project with medals. The FIFA World Cup 2026 is a roaming retail platform: 48 teams, 104 matches and 16 host cities across three countries. Through 44 matches, attendance had topped 2.85 million, with stadiums averaging 99.6% full, according to a Reuters analysis. FIFA’s […]The post The World Cup Has Become the World’s Largest Pop-Up Store appeared first on PYMNTS.com.
1日前

最近は、より一層、読む人のことを考えて書くようにしている
2
Mitsuyuki.Shiiba
もともと、読まれることの方が多いもともと「ドキュメントやコードは書くよりも読まれることの方が多い」という考えなので、書くときにできるだけがんばって、読む人ができるだけ読みやすいものにしたいと意識している。というのも、意識していないとついつい、書いて終わりになってしまう。そのときは頭の中に色々入ってるから読みやすさとか考えなくても理解できているし、書くのは書くので大変だから「よし書き終わった!ちゃんと動いた!」で「できた!」って言いたいし。なんなら次のタスクにはやくとりかからなきゃって焦ってたりもする。そして、あとからそのドキュメントやコードを見た人が「これどういうことだっけ・・・」って悩みながら読み解いたりする。それは半年後の自分かもしれない。だから、書き終わった後に「これは読む人にとって読みやすいか?」を考えて見直すようにしている。コードでうまく説明できているか、背景をコメントで残しておくほうがいいか、関数の名前が内容を正しく表現できているか、間違ってはいないけど余計なコメントをつけてしまっていないか、などなど。ドキュメントを書くときも同じ。これはどういう立場の人が読むのか。その人に
2日前

Wedbush Says Missing ROI Metrics Threaten Further Enterprise AI Deployment
PYMNTS |
Many enterprises have not developed a way to determine whether they have gained a good return on investment on the artificial intelligence (AI) tools they have deployed, Wedbush Securities analysts said, according to a Friday (June 26) report by Seeking Alpha. That is perhaps the most important finding that came out of discussions at Wedbush Securities’ Disruptive Technology Conference […]The post Wedbush Says Missing ROI Metrics Threaten Further Enterprise AI Deployment appeared first on PYMNTS
2日前

Home Depot retail media network strengthens non-endemic advertising
Digital Commerce 360
Orange Apron Media, the retail media network for The Home Depot, was using different systems for its on-site and off-site advertising businesses until it decided to unify them in October 2024 — and it’s now reaping the benefits through partnerships with Reddit, Pinterest’s Media Network Connect, Yahoo and The Trade Desk. Using the different systems […]The post Home Depot retail media network strengthens non-endemic advertising appeared first on Digital Commerce 360.
2日前

Trump Threatens 100% Tariffs if European Countries Tax US Tech Firms
PYMNTS |
President Donald Trump said Friday (June 26) that he will impose a 100% tariff on goods from any country that imposes a digital services tax on American companies. Several European countries have been considering implementing such a tax, and some are close to doing so, Trump said in a Friday post on Truth Social. “Please let […]The post Trump Threatens 100% Tariffs if European Countries Tax US Tech Firms appeared first on PYMNTS.com.
2日前

BMW’s AI Runs 16 Billion Daily Requests and 600 Use Cases
PYMNTS |
Every time a BMW driver locks their car remotely, checks their battery level, receives a navigation update or gets a software fix pushed over the air, that counts as a request. With 24.5 million connected vehicles, those small interactions add up fast. BMW’s fleet now generates more than 16.6 billion requests each day, processing 184 […]The post BMW’s AI Runs 16 Billion Daily Requests and 600 Use Cases appeared first on PYMNTS.com.
2日前

GigSafe Taps U.S. Bank to Deliver Instant Payments to Delivery Drivers
PYMNTS |
Companies using GigSafe’s compliance and payments platform built for regulated delivery and logistics operators can now make payments within the platform. This capability is enabled by GigSafe’s adoption of U.S. Bank’s embedded payment solutions, which allow payments to occur seamlessly within the company’s existing platform, U.S. Bank said in a Tuesday (June 23) press release. The industries that use the company’s […]The post GigSafe Taps U.S. Bank to Deliver Instant Payments to Delivery Driver
2日前

Quoting Dean W. Ball Simon Willison's Weblog
<blockquote cite="https://www.hyperdimensional.co/p/what-should-be-done"><p>This is a bad state of affairs. Consider, in particular, some industry dynamics:</p><ol><li>Frontier models are trained at an enormous cost, and a significant fraction of that cost is recouped in the few post-release months that they are broadly available. After that period elapses, the models become sub-frontier, competition emerges, and margins compress. Every week of delay is eating into...
2日前

Anthropic Accuses Alibaba Of Running 29 Million Fake Queries to Clone Claude
PYMNTS |
Training a frontier artificial intelligence (AI) model costs billions of dollars and years of research. Reproducing much of its behavior can cost a fraction of that, if you have access to enough of its outputs. That gap is what makes model distillation, a technique that trains a smaller AI system on the responses of a […]The post Anthropic Accuses Alibaba Of Running 29 Million Fake Queries to Clone Claude appeared first on PYMNTS.com.
2日前

Quoting Timothy B. Lee Simon Willison's Weblog
<blockquote cite="https://twitter.com/binarybits/status/2070527944817053862"><p>This is like saying there's no learning curve to being a manager because your employees will just do whatever you tell them to do.</p></blockquote><p class="cite">&mdash; <a href="https://twitter.com/binarybits/status/2070527944817053862">Timothy B. Lee</a>, on the idea that LLMs take no skill and have no learning curve</p> <p>Tags: <a href="https://simonw...
2日前

Nimble Brands Beat Sponsors in World Cup Marketing Battle
PYMNTS |
Several brands gaining attention around the World Cup are not sponsors of the event, CNBC reported Friday (May 26). Levi Strauss & Co., Taco Bell and McDonald’s are among the brands that have gained engagement on social media through creative marketing strategies, according to the report. For example, McDonald’s offered limited-time menu items and cups […]The post Nimble Brands Beat Sponsors in World Cup Marketing Battle appeared first on PYMNTS.com.
2日前

This Week in Stablecoins: Building Toward T+0 Settlement
PYMNTS |
Stablecoins entered 2026 with an ambitious narrative around disrupting card networks, replacing traditional payment rails and fundamentally reshaping consumer commerce. This week’s headlines suggested a different destination. Across a series of seemingly unrelated announcements — from new foreign exchange initiatives and Japanese market expansion to infrastructure partnerships, regulatory momentum in Washington and even layoffs at […]The post This Week in Stablecoins: Building Toward T+0 Settlem
2日前

Walmart to acquire Vibe.co, growing data and connected TV capabilities
Digital Commerce 360
Walmart announced an acquisition that could deepen its data and ad options, bringing Vibe.co and its platform under the retailer’s control. The retail giant announced it will acquire Vibe.co, a self-serve connected TV platform. Vibe.co offers technology to evaluate streaming ad campaigns. At Walmart, those offerings will carry over to small and mid-sized consumer brands. […]The post Walmart to acquire Vibe.co, growing data and connected TV capabilities appeared first on Digital Commerce 360.
2日前

Stitch Fix Vision platform adds ‘see it on me’ feature
Digital Commerce 360
Stitch Fix is expanding its artificial intelligence (AI)-powered style visualization platform, giving clients a new way to see themselves in recommended outfits as they browse. The online personal styling service announced June 24 that clients can now generate images of themselves in suggested looks on demand. The capability is part of Stitch Fix Vision, an […]The post Stitch Fix Vision platform adds ‘see it on me’ feature appeared first on Digital Commerce 360.
2日前

DraftKings Brings $11 Billion Prediction Market Into Flagship App
PYMNTS |
DraftKings has launched a proprietary, vertically integrated foundation for its prediction markets experience, DraftKings Predictions, and integrated it into the DraftKings: Sports & Casino app. This proprietary exchange, DKeX, and its integration into the app and will enable DraftKings to innovate more rapidly, the digital sports and gaming company said in a Friday (June 26) press release. […]The post DraftKings Brings $11 Billion Prediction Market Into Flagship App appeared first on PYMNTS...
2日前

X Opens X Money to Premium Subscribers Ahead of Broader Launch
PYMNTS |
X has taken another step in the rollout of X Money by expanding the tool to members of the top tier of the social media platform’s premium subscription service. “Today, we’re releasing [X Money] to a subset of US Premium+ users to collect feedback and iron out issues ahead of a broader launch,” Dhruv Batura, […]The post X Opens X Money to Premium Subscribers Ahead of Broader Launch appeared first on PYMNTS.com.
2日前

What happened after 2,000 people tried to hack my AI assistant Simon Willison's Weblog
<p><strong><a href="https://www.fernandoi.cl/posts/hackmyclaw/">What happened after 2,000 people tried to hack my AI assistant</a></strong></p>Fernando Irarrázaval ran a challenge on <a href="https://hackmyclaw.com/">hackmyclaw.com</a> to see if anyone could leak secrets held by his OpenClaw test instance by sending it email.</p><p>Surprisingly, after 6,000 attempts (and $500 in token spend and a Google account suspension triggered by ...
2日前

Incident Report: CVE-2026-LGTM Simon Willison's Weblog
<p><strong><a href="https://nesbitt.io/2026/06/26/incident-report-cve-2026-lgtm.html">Incident Report: CVE-2026-LGTM</a></strong></p>Spectacular hypothetical incident report by Andrew Nesbitt.</p><blockquote><p><strong>Day 2, 16:00 UTC</strong> --- Two AI review agents from competing vendors, both attached to a downstream pull request bumping <code>foxhole-lz4</code>, enter a disagreement loop over whether the package...
2日前

Quoting OpenAI Simon Willison's Weblog
<blockquote cite="https://openai.com/index/previewing-gpt-5-6-sol/"><p>We're beginning a limited preview of the GPT‑5.6 series: Sol, our flagship model; Terra, a balanced model for everyday work; and Luna, a fast and affordable model. Terra has competitive performance to GPT‑5.5 while being 2x cheaper and Luna brings strong capability at our lowest cost. [...]</p><p>We believe in broad access, and we plan to make GPT‑5.6 Sol, Terra, and Luna generally available in the co...
2日前

Miasma Mini Shai-Hulud Hits ImmobiliareLabs npm Packages
Socket
Miasma Mini Shai-Hulud hits @immobiliarelabs Backstage plugins, targeting GitLab and LDAP auth packages on npm.
2日前

J.C. Penney, Aéropostale link loyalty programs
Retail Dive - Latest News
Customers who shop at both retailers can earn points to redeem at either one. Both companies are part of the Catalyst Brands portfolio.
2日前

Agentic Code Review
Radar
The following article originally appeared on Addy Osmani’s blog site and is being republished here with the author’s permission. Coding agents are extraordinarily good now, and getting better fast. The interesting consequence is that the hard part of engineering moved from writing code to deciding whether to trust it, which makes review the most leveraged […]
2日前

Reformation’s IPO filing shows profitable DTC is possible
Retail Dive - Latest News
The brand makes 90% of its revenue from DTC, has turned a profit for years and notched 20 consecutive quarters of double-digit revenue growth.
2日前

‘Expanding into Germany takes more than selling on Amazon’
Ecommerce News
While Amazon has been the biggest marketplace in Germany for years, other local platforms have recently increased their market share. Retailers who want to sell in Germany should be aware that selling on Amazon is not the only way to reach customers, says global fulillment provider fulfilmentcrowd. As marketplaces are…
2日前
6/26 (金)

The Weekly Closeout: Adidas gets into PPE, Five Below fills out C-suite
Retail Dive - Latest News
The athletics retailer debuted a safety footwear collection with Glo Brands B.V., while the discount chain hired a chief retail officer and a chief legal officer.
2日前

‘AI is becoming active participant in purchasing’
Ecommerce News
New reports on ecommerce in the five biggest European online markets shows that online shopping is still increasing in popularity. By 2029, online revenues in Germany, the United Kingdom, Spain, Italy and France could reach a total volume of 600 billion euros. This is driven by the use of AI…
2日前

Rolldown Pulls Rust React Compiler Integration After Binary Size Increase
Socket
Rolldown paused Rust React Compiler integration after a 5MB binary size increase raised concerns about shipping React-specific code to all Vite users.
2日前

Printful Exec on Profitable Print-on-Demand
Practical Ecommerce
Print-on-demand is big business, and David Hooker, brand director at Printful, is a prominent participant.The post Printful Exec on Profitable Print-on-Demand appeared first on Practical Ecommerce.
2日前

This Week in AI: Who Controls the Loop?
Radar
This week host and Turing Post founder Ksenia Se threaded the latest news into a single argument: AI is moving out of conversation and into the operational loops where real work happens. From SpaceX’s $60 billion acquisition in the developer tools market to the G7’s debate about frontier model access to image generation company Midjourney’s […]
2日前

Previewing GPT-5.6 Sol: a next-generation model OpenAI News
OpenAI previews GPT-5.6 Sol, a next-generation model with stronger capabilities in coding, science, and cybersecurity, paired with its most advanced safety stack.
2日前

TikTok Shop Japan、1周年を機に「広告主向けトレンドレポート」を公開
ECのミカタ
TikTok Shop Japanは2026年6月22日、サービス開始1周年を迎え「広告主向けトレンドレポート」を発表した。
2日前

インスタンスサイズを「上げた」のに、Auroraのコストが「下がった」話
Timee Product Team Blog
はじめに こんにちは。プラットフォームエンジニアリングチームに所属している徳富(@yannKazu1)です。 「インスタンスサイズを上げたらコストが下がりました」と言うと、だいたい「?」という顔をされます。スペック上げたらお金かかるに決まってるだろ、と。自分もそう思っていたので気持ちはわかります。 この記事では、Amazon Aurora のReaderインスタンスを db.r7g.8xlarge から db.r7g.12xlarge にスケールアップした結果、I/Oコストが大幅に減り、トータルのAuroraコストがむしろ下がった話を書きます。バッファプールの仕組みと、判断の経緯もあわせて紹介…
2日前

アンドエスティHD、1日単位から働ける「and ST スキマバイト」を開始
ECのミカタ
株式会社アンドエスティHDは2026年6月22日、株式会社Matchbox Technologiesが提供するクラウド型システム「matchbox(マッチボックス)」を活用し、アンドエスティHDが展開する多彩なアパレルブランド店舗と働き手をつなぐ「and ST スキマバイト」の開始を発表した。
2日前

イングリウッドと伊藤忠商事、「Champion」日本事業の株式共同取得 EC販売強化
ECのミカタ
株式会社イングリウッドは2026年6月22日、伊藤忠商事株式会社と共に、オーセンティック アメリカン アスレチックウェア ブランド 「Champion」の日本事業を運営するヘインズブランズ ジャパン株式会社の全株式を、同月にHanes Holdings U.S. Inc.より取得したことを発表した。
2日前

Makuake、2026年上半期ヒットレポートを公開 プロジェクト数最多は「ファッション」
ECのミカタ
株式会社マクアケは2026年6月22日、2026年上半期における「Makuake」のヒット情報をまとめた2026年上半期「Makuake」ヒットレポートを発表した。
3日前

プロンプトからワークフローへ:AIでフロントエンド開発の生産性を向上させる LINEヤフー Tech Blog (LY Corporation Tech Blog
LINEヤフーの技術カンファレンス「Tech-Verse 2026」の公式記事です。生成AIで作成された画像もはや最大のボトルネックはコーディング速度ではありません。問題は入力の断片化と、それらをつな...
3日前

Embedding 安定化で検索リランキングのCold start problemを解決:LINEバイトでの適用事例紹介
LINEヤフー Tech Blog (LY Corporation Tech Blog
LINEヤフーの技術カンファレンス「Tech-Verse 2026」の公式記事です。こんにちは。LINEヤフーで機械学習プラットフォームを開発している木原健太と袁逸凡です。今回は、LINEバイトの検索...
3日前

「秘伝のタレ」を未来のシステムへ繋ぐ ── フィーチャー分割で実現した商品詳細APIリプレイス
ZOZO TECH BLOG
はじめに こんにちは。ZOZOでアプリバックエンドブロックのブロック長をしている湯川です。以前公開した記事では、ZOZOTOWNアプリ用APIのリプレイスの初期の開発・課題・解決方法などについて紹介しました。 techblog.zozo.com 今回はその続編として、商品詳細APIリプレイスをどのように進めたのかを紹介します。今回のリプレイス対象は、約5,000行のコードと約410項目のレスポンスを持つ巨大なAPIでした。長年の機能追加によって複雑化し、いわゆる「秘伝のタレ」と呼ばれる状態になっていました。 しかし本記事でお伝えしたいのは、単なるAPIリプレイスの話ではありません。 限られた期…
3日前

Adyen、「モジュール型APIスイート」発表 コマースシステム再構築の手間を省略
ECのミカタ
Adyen Japan株式会社は2026年6月19日、会話型AIプラットフォームを通じた商品・サービスの販売を可能にする、モジュール型APIスイート「Adyen Agentic(アディエンエージェンティック)」を発表した。
3日前

LT会で組織をつなげ!社内LT会の運営を始めて2年が経ちました
Sansan Tech Blog
こんにちは!技術本部Platform Engineering Unitの樋口です。 普段は経理AXサービス「Bill One」や取引管理サービス「Contract One」といったプロダクトで利用される共通認証基盤を開発していますが、その傍らで社内LT会として技術本部LT会の運営に携わっています。 直近では2026年5月に「パフォーマンス改善」というテーマで開催し、7名が登壇してくれました。 ボトルネックの調査方法やインスタンスの物理構成まで意識したRDBのパフォーマンスチューニングなど幅広い話題で発表が行われましたが、さまざまなプロダクトのエンジニアが同じテーマで悩みや工夫を持ち寄る様子を見…
3日前

AIと並走して作る、現場と地続きのシステム設計
Sansan Tech Blog
Digitization部Scan Engineeringグループの長尾です。2026年1月に入社し、もうすぐ半年が経ちます。 この記事では、最近稼働を開始した原本管理システム「taotie」を題材に、開発の背景と内容をご紹介します。 部の役割や向き合っている課題などの前提はコードの向こう側に事業と現場がある。Digitization部の魅力にまとまっていますので、先に目を通すと分かりやすいかと思います。
3日前

AI and Liability Simon Willison's Weblog
<p><strong><a href="https://www.schneier.com/blog/archives/2026/06/ai-and-liability.html">AI and Liability</a></strong></p>Bruce Schneier on the recent <a href="https://the-decoder.com/landmark-german-ruling-declares-googles-ai-overviews-are-googles-own-words-and-makes-it-liable-for-false-answers/">German ruling</a> that Google be held liable for errors introduced in their AI overviews:</p><blockquote><p>AI agents are agents of t...
3日前

食品ECを成長させる「顧客起点」とデータ戦略――松屋・三ツ星ファーム・ZENBの実践事例
ECのミカタ
食品EC市場が成長を続ける一方で、昨今の原材料費や物流コスト、広告費や人件費の高騰により、事業運営の難易度は一段と高まっている。商品開発、新規顧客の開拓、リピート施策、利益改善、業務効率化……。複数の課題に同時に向き合う中で、限られたリソースをどこに投下すべきか、判断に悩む事業者も少なくないはずだ。では、成果を出し続ける企業は、何を優先し、どのように意思決定しているのだろうか。本稿では、ECのミカタ「食品ECカンファレンス」で語られた各社の実践事例をもとに、売上最大化につながる“意思決定のリアル”を整理する。なぜその施策を選び、どのように成果に結びつけたのか。現場の試行錯誤から、次の一手を考えるヒントを読み解く。●本記事は2026年3月開催「ECのミカタ カンファレンス」で行われたセッションをレポートしたものです
3日前

Miasma Mini Shai-Hulud Hits LeoPlatform npm Packages and GitHub Actions, Expands to the Go Ecosystem
Socket
Mini Shai-Hulud expands into the Go ecosystem after hitting LeoPlatform npm packages and targeting GitHub Actions workflows.
3日前

datasette-export-database 0.3a2 Simon Willison's Weblog
<p><strong>Release:</strong> <a href="https://github.com/datasette/datasette-export-database/releases/tag/0.3a2">datasette-export-database 0.3a2</a></p> <p>An embarrassingly tiny release. The <code>pyproject.toml</code> had pinned to <code>datasette==1.0a27</code>, inadvertently making this plugin incompatible with all other Datasette versions. It's now <code>datasette&gt;=1.0a27</code> instead.</p> <p>...
3日前

Ecommerce Trends: How data and AI strategies determine where consumers shop
Digital Commerce 360
Leading online retailers from Amazon and Walmart to Gap and Levi Strauss continue to implement new artificial intelligence (AI) solutions to drive outcomes across their operations — and as they do, new survey data shows that shoppers are getting more comfortable with the AI tools being used. However, that increasing level of comfort accompanies key […]The post Ecommerce Trends: How data and AI strategies determine where consumers shop appeared first on Digital Commerce 360.
3日前

Allbirds officially changes name, appoints new CEO
Retail Dive - Latest News
Smartbird is now an artificial intelligence infrastructure provider and Nadia Carlsten will replace Joe Vernachio as its chief executive.
3日前

How retailers are thinking about omnichannel in the age of AI
Retail Dive - Latest News
The tech has offered new ways to drive traffic and manage loyalty programs, but retail is still about emotional connection, executives at Ulta, Stitch Fix and Tapestry said.
3日前

FAO Schwarz opens NYC location for the first time in 100 years — this time in Nordstrom
Retail Dive - Latest News
The toy company's second New York store is part of a broader partnership that will see FAO Schwarz products in all Nordstrom stores later this year.
3日前
Sephora introduces store quiet hours
Retail Dive - Latest News
The beauty retailer will lower music and screen displays during specific hours following a successful store pilot across eight markets.
3日前

Mickey Drexler: ‘If I make a mistake, I make a mistake’
Retail Dive - Latest News
The Alex Mill chairman told CommerceNext attendees that being fired from Gap was a “nightmare” but said he now has the best job he’s ever had.
3日前
6/25 (木)

DACH ecommerce sees solid growth
Ecommerce News
The DACH ecommerce market is expected to continue its steady growth, with annual increases ranging from 3 to 6 percent. The impact of Asian marketplaces is becoming increasingly evident across all three markets. In Austria, their share of ecommerce spending has already surpassed 10 percent. According to the Austrian Retail…
3日前

The Backroom: The weight-loss era is not just about selling clothes
Retail Dive - Latest News
Liza Amlani, principal at Retail Strategy Group, joins us to discuss how retailers and brands can successfully grapple with what she calls “fit volatility.”
3日前

Top Barriers of Cross-Border Shoppers
Practical Ecommerce
The challenge for sellers is not the products; it's turning international interest into completed orders.The post Top Barriers of Cross-Border Shoppers appeared first on Practical Ecommerce.
3日前

So Long and Thanks for All the Context
Radar
I got a really interesting question last week from Mike Loukides, my editor at Radar, after he read the third part of this trilogy on context management. “Another issue I’ve read about,” Mike asked, “is the tendency for a model to ignore the middle of the context. I’ve seen that particularly for the models with […]
3日前

Optimizing cloud economics with linear elastic caching
The latest research from Google
Algorithms & Theory
3日前

デジスマチームに転職して1年、キャッチアップで意識したこと
エムスリーテックブログ
【デジスマ ブログリレー 4日目】 こんにちは、デジスマチームの東です。 2025年5月にエムスリーへ転職し、医療DXサービス「デジスマ診療」を開発するデジスマチームに加わって1年が経ちました。この記事では転職後の1年間を振り返り、転職直後のキャッチアップで意識したことやデジスマチームについて紹介します。
3日前

中東情勢による「職場の消耗品調達」8割以上が「不安」 カウネット調査
ECのミカタ
株式会社カウネットは2026年6月19日、中東情勢の変化に伴う職場の消耗品調達に関する意識調査の結果を発表した。
3日前

メルカリ、米国で「メルカリ グローバルアプリ」の提供開始 越境取引事業の拡大を加速
ECのミカタ
株式会社メルカリは2026年6月17日(米国時間)、米国で世界共通アプリ「メルカリ グローバルアプリ」(以下、グローバルアプリ)の提供開始を発表した。
3日前

ヤマト運輸、中国・四国地方最大の拠点を岡山県に開設
ECのミカタ
ヤマト運輸株式会社は2026年6月17日、岡山県に統合型ビジネスソリューション拠点(以下、本拠点)を開設し、順次稼働を開始することを発表した。
3日前

急増する「W杯日本代表ユニフォーム」の偽造品に注意 SODA調査
ECのミカタ
株式会社SODは2026年6月19日、自社に蓄積された取引データおよび真贋鑑定データに基づき作成した、日本代表チームのサッカーユニフォームの偽造品に関するトレンドレポート(以下、本レポート)を公開した。
4日前

AIエージェントに議論させよ:マルチエージェント連携による開発プロセスの再設計 LINEヤフー Tech Blog (LY Corporation Tech Blog
LINEヤフーの技術カンファレンス「Tech-Verse 2026」の公式記事です。AIでのコーディングで難しいのは、もはやコードを出すこと自体ではありません。課題はその周辺にあります。意図を正確な仕...
4日前

AI時代の開発は「検証力」で決まる:Flava API Gateway が学んだ高速な動作検証と環境戦略 LINEヤフー Tech Blog (LY Corporation Tech Blog
LINEヤフーの技術カンファレンス「Tech-Verse 2026」の公式記事です。エージェントがコードを書く時代にコーディングエージェントを使い始めると、最初に気づくのはその速さです。その試行錯誤の...
4日前

How agents are transforming work OpenAI News
A new OpenAI research paper shows how AI agents are transforming work, enabling longer, more complex tasks and expanding productivity across roles.
4日前

4レーン体制への移行とチームの結びつきを強めるオフサイトの全記録
KAKEHASHI Tech Blog
はじめに こんにちは、患者さんと薬局をつなぐコミュニケーションプラットフォームであるPocket Musubi の開発ディレクターをしている松本です。 開発チームが大きくなるとき、必ずぶつかる問いがあります。「チームの生産性をどう高め、保ち続けるか」、そして「そのために最適な組織はどうあるべきか」。 Pocket Musubi の開発チームは、この8ヶ月でメンバーが19名から23名に増え、開発レーンを1つから4つに増やしました。この記事では、その体制変更とセットで設計した全員参加オフサイトについて書きます。 なぜレーンを分けたのか 8ヶ月前、私たちは機能開発1レーン+SREという体制でした。当…
4日前

simonw/browser-compat-db Simon Willison's Weblog
<p><strong><a href="https://github.com/simonw/browser-compat-db">simonw/browser-compat-db</a></strong></p>Inspired by Mozilla's <a href="https://developer.mozilla.org/en-US/blog/introducing-mdn-mcp-server/">new MDN MCP service</a> - <a href="https://github.com/mdn/mcp">source code here</a> - I decided to try converting their comprehensive <a href="https://github.com/mdn/browser-compat-data">mdn/browser-compat-data</a> repos...
4日前

着実に変わり続ける企業のSNS運用――SNSマーケティングの最前線
ECのミカタ
EC事業におけるSNS運用は、単に投稿を続けるだけでは成果につながりにくい時代に入りました。フォロワー数を増やすことだけを目的にするのではなく、顧客との関係性を深め、購買や再購入、ファン化につなげる設計が求められています。本連載では、企業アカウントの戦略設計・運用改善を支援してきた株式会社toの井野が、InstagramやXを中心に、EC事業者が今見直すべきSNS運用の考え方を解説します。第1回となる今回は、SNSマーケティングの現在地と、企業アカウントに求められる変化について整理します。(全4回)
4日前
定期便から「食の総合EC」へ 4000万食突破の三ツ星ファームが実践するデータ戦略の核心
ECのミカタ
株式会社イングリウッドが運営する冷凍宅配食ブランド「三ツ星ファーム」は、2025年11月にサービスを全面的にリニューアル。それまでのおかずプレート中心の定期便サービスから、食品総合ECへの転換を本格化させ、2026年1月末には累計出荷食数4000万食を突破した。原材料費や物流費といった様々なコスト上昇によって食品EC業界全体でその運営難易度が高まるなか、「三ツ星ファーム」はどのように意思決定を行い、商品と顧客体験を磨いてきたのか。顧客の声とデータにもとづいて進化を続ける、その具体像をひも解く。●本記事は2026年3月開催「ECのミカタ カンファレンス」で行われた株式会社イングリウッド 本間悠也氏のセッションをレポートしたものです
4日前

Salesforce releases AI agents among B2B ecommerce updates
Digital Commerce 360
Ecommerce software provider Salesforce released updates to its platform, Agentforce Commerce, adding artificial intelligence (AI) agents for both business-to-business (B2B) and business-to-consumer (B2C) brands. On the B2B end, Salesforce said, it has introduced AI agents, “full headless flexibility” and business search. It seeks to help B2B companies streamline both the purchasing experience for customers and […]The post Salesforce releases AI agents among B2B ecommerce updates appeared first o
4日前

Gap launches AI marketing overhaul with Google Cloud, Zeta and Publicis Sapient
Digital Commerce 360
Gap Inc. is turning to artificial intelligence (AI) to streamline its marketing engine, aiming to deliver more relevant content and reduce friction across its ecommerce channels. In a June 22 announcement, the retailer said it’s working with Google Cloud, Zeta Global and Publicis Sapient on an AI-led overhaul of its marketing organization. The initiative will […]The post Gap launches AI marketing overhaul with Google Cloud, Zeta and Publicis Sapient appeared first on Digital Commerce 360.
4日前

Amazon Prime Day 1: U.S. ecommerce sales top $8 billion
Digital Commerce 360
The first 24 hours of Amazon’s Prime Day event led to the most U.S. ecommerce sales in a day so far this year, according to data from Adobe Analytics. On June 23, U.S. ecommerce sales reached $8.3 billion, marking 5.3% year-over-year growth versus the first 24 hours of Amazon’s Prime Day event in 2025. It’s […]The post Amazon Prime Day 1: U.S. ecommerce sales top $8 billion appeared first on Digital Commerce 360.
4日前

Quoting Tom MacWright Simon Willison's Weblog
<blockquote cite="https://macwright.com/2026/06/24/accidental-anonymity.html"><p>In the last few months, I've started to see [job applications] that were clearly cowritten by an LLM, link to an LLM-generated portfolio site, which then links to LLM-generated GitHub projects, with purely LLM-generated commit messages. [...]</p><p>My other reaction is that <em>I don't know anything about these people</em>.</p><p>They haven't put themselves out there....
4日前

Walmart gets bullish on advertising business with Vibe.co acquisition
Retail Dive - Latest News
The retailer plans to strengthen its higher-margin advertising division through a deal to acquire the CTV tech platform.
4日前

AWS Lambda MicroVMs登場。サーバレスの手軽さでステートフルかつ隔離された実行環境を提供
Publickey
Amazon Web Servicesは、AWS Lambda上で一時的にステートフルな実行環境をMicroVMによって安全に隔離された状態で用意できる新サービス「AWS Lambda Micro VMs」を発表しました。 AWS Lamb...
4日前
6/24 (水)

New Ecommerce Tools: June 24, 2026
Practical Ecommerce
This week's rundown includes new services for agentic commerce, GEO, AI-powered marketing, analytics, sales agents, payments, B2B, personalization, and fulfillment.The post New Ecommerce Tools: June 24, 2026 appeared first on Practical Ecommerce.
4日前

Uber Eats marketplace adds handful of retailers
Digital Commerce 360
Multiple retailers have joined the Uber Eats marketplace to enable third-party last-mile delivery from their stores, Uber Eats has announced. Among them are retailers that currently rank in the Top 2000 and Europe Database, as well as FedEx Office. Although the latter’s role in the database is largely as a carrier, FedEx Office sells packing […]The post Uber Eats marketplace adds handful of retailers appeared first on Digital Commerce 360.
4日前

Stop Getting Good at Protocols. Get Good at Agent Experience.
Radar
In 2025, if you weren’t building with MCP, you weren’t serious about agents. The Model Context Protocol dominated the agent conversation for the better part of the year. Conference talks, roadmaps, hiring plans, all of it revolved around MCP. Then late 2025 into 2026, AI Skills arrived and the backlash was immediate. Engineers declared MCP […]
4日前

Flight Booking & Airlines Quantitative UX: 3 High-Level Takeaways from 30+ Charts
Baymard Institute
(Note: Unfortunately, e-mail and RSS don’t support advanced layouts and features. If the graphics in this article look strange, you may want to read the article in your web browser.)Key Stats & Takeaways30+ new insights on Flight Booking & Airline shopper habits and preferences3,125 US online shoppers surveyed in this quantitative UX studyFlight Booking & Airline shoppers use a variety of sources when looking for flights, are highly likely to participate in loyalty programs, and comm...
4日前

いま一番好きなエディタ、Zed
エムスリーテックブログ
【デジスマ ブログリレー 3日目】 デジスマチームの立花です。 突然ですが皆さんはどのエディタが好きでしょうか。 僕は Helix が好きでよく使っているのですが、 最近また好きなエディタが増えました。Zedです。 zed.dev 動作の軽快さに惹かれて使い始めたのですが、触っていくうちに「これは便利だな」と感じる機能がいくつもあったので、 本記事ではその中から特に日々の開発で役立っているものを紹介します。
4日前

リアルタイム共同編集無効モード - 橋本商会 - Cosense
橋本商会 - Cosense
どうしてもWebSocketが使えない顧客向けに作った緊急レスキューモード Cosenseのフル機能は使えません リアルタイム共同編集できません。本文は1人ずつ編集してください音声付き解説
4日前

国民生活センター、「悪質通販サイト」 手口・相談内容を公開し注意喚起
ECのミカタ
独立行政法人 国民生活センターが運営する越境消費者センターは2026年6月17日、「通販サイトで商品を注文したが商品が届かず、事業者と連絡がとれない」など、海外に拠点があると思われる悪質通販サイトによるトラブルが寄せられていることを発表した。
4日前

Fable 5使ってみた感想 - 橋本商会 - Cosense
橋本商会 - Cosense
2026/6/10ごろに社内に書いたページですずっと調査してる 不明点・懸念事項があれば何でも私に質問してください。明確になってからplan modeに入りましょうと指示すると3つのExplore agentで調査しはじめる Opusでは1つか2つだった Claude CodeのAsk User Question Toolを出してこちらの回答を待っている間も、Explore agentがコードを読み続けている 調査と入力待ちを並列化しているtokenコストは実測でOpusの10倍になったshokai.icon tokenあたりのコストはOpusの2倍だが こっちの入力を待ってる間もずっと調べてるから10倍かかる LLMのmodel部分はOpusとあまり変わらないんじゃないか?という感触がある。なんとなく。 富豪的で非同期な挙動の戦略が、賢さの秘訣なのではないか?1を聞いて10を知るような挙動をしている project毎にopt-inにしたいshokai.icon
4日前

OpenAI and Broadcom unveil LLM-optimized inference chip OpenAI News
OpenAI and Broadcom introduce Jalapeño, a custom AI chip built for LLM inference to improve performance, efficiency, and scale across AI systems.
4日前

フェデックス、欧州「デミニミスに基づく関税免除撤廃」ウェビナーを実施
ECのミカタ
フェデラル エクスプレス コーポレーション(以下、フェデックス) は2026年6月17日、同年4月および5月に同社がアジア太平洋地域12市場(シンガポール、フィリピン、マレーシア、オーストラリア、ニュージーランド、香港、インドネシア、タイ、日本、台湾、韓国、中国)で実施した顧客向けウェビナー参加者から収集した内容を発表した。
4日前

楽天、2026年上半期 エンタメランキングTOP5を発表 1位は「ONE PIECE」
ECのミカタ
楽天グループ株式会社(以下、楽天)は2026年6月17日、運営するオンライン書店「楽天ブックス」、定額制の音楽聴き放題サービス「Rakuten Music」、電子書籍ストア「楽天Kobo電子書籍ストア」3つのエンタメ関連サービスのデータから読み解く「2026年上半期 エンタメランキングTOP5」を発表した。
4日前

Frontier AI Is Now Critical Infrastructure
Socket
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.
4日前

「自分へのご褒美」5割超がECで買い物 1位はスイーツ・グルメ スポルアップ調査
ECのミカタ
株式会社スポルアップは2026年6月18日、「自分へのご褒美EC」に関する調査2026の結果を発表した。
5日前

Semantic Context OS のアーキテクチャ:エージェントシステムにおける単なるトークン詰め込みを超えて LINEヤフー Tech Blog (LY Corporation Tech Blog
LINEヤフーの技術カンファレンス「Tech-Verse 2026」の公式記事です。大規模言語モデル(LLM)が入力トークンの物理的しきい値を百万規模へと拡張するにつれ、ソフトウェア工学の現場は「シリ...
5日前

Flava DBaaS Deep Dive:アーキテクチャからマイグレーション、そして未来まで LINEヤフー Tech Blog (LY Corporation Tech Blog
LINEヤフーの技術カンファレンス「Tech-Verse 2026」の公式記事です。はじめにこんにちは。LINEヤフー株式会社のDBaaS DevOpsチームで働いている朴政武(パク・ジョンム)です。...
5日前

博報堂DYグループ、独自AI評価指標を活用したプラニングソリューション提供開始
ECのミカタ
株式会社博報堂DYホールディングス(以下、DYホールディングス)、株式会社博報堂テクノロジーズ、株式会社Hakuhodo DY ONEの3社は2026年6月17日、統合マーケティングプラットフォーム「CREATIVITY ENGINE BLOOM」の新プロダクトとして、インフルエンサーマーケティングツール「ENGAGEMENT BLOOM WAVE」を開発したことを発表した。
5日前

データベースのバージョンアップの不安を解消。Insight SQL Testingを活用した検証手順
Timee Product Team Blog
はじめに こんにちは、初めまして。今年3月に入社し、タイミーで Platform Engineer をしている小河原(@kgwryk28)です。 現在、タイミーのシステムで利用しているメインのデータベース(Aurora MySQL)のバージョンアップにおける検証を進めています。 データベースのアップグレードで気になるのは、「今まで動いていたSQLが新バージョンでもそのまま動くのか」「アップグレードによって遅くなるクエリはないのか」という点です。 アップグレード後に互換性の問題や性能劣化が本番で発覚すると、影響は計り知れません。そのため、バージョンアップ範囲内の各バージョンの変更内容(chang…
5日前

開催直前!AWS Summit Japan 2026の楽しみ方
カミナシ エンジニアブログ
カミナシでソフトウェアエンジニアをしている furuya です。今回は開催直前! AWS Summit Japan 2026 の楽しみ方をご紹介します!これを見て、「行ってみようかな」と思っていただけた方がひとりでも増えれば幸いです。 ※2026/06/24 現在公開されている情報や、AWS Summit Japan 2025 のときの情報をもとにしています。最新の情報は AWS Summit Japan 2026 公式サイトでご確認ください。 aws.amazon.com AWS Summit Japan 2026とは 6月25日(木)、26日(金)に幕張メッセで行われる、日本で一番大きな …
5日前

Amazonで最安値にしてもカートが取れない理由 「競争力のある価格」の正体と対策法
ECのミカタ
こんにちは!国内初のAmazon専門コンサルサービスを展開しているアグザルファです!Amazon出品において、売上を左右する最も重要なポイントの一つが「おすすめ出品」(以下、カート)の獲得です。カート獲得の有無が、売上に直結するといっても過言ではありません。ところが、「最安値にしているのにカートが獲得できない⋯。」このような現象に悩まされていませんか?━━━━━━━━━━━━━━━━━━━•相乗り出品の中で、最も安い価格に設定しているにもかかわらず、カートを獲得できない。•相乗り出品者がいない、独占状態なのに、なぜか「カートに入れる」ボタンが表示されない。•最安値かつリードタイムを最短で設定しているのに、なぜかカートを獲得できない。━━━━━━━━━━━━━━━━━━━このような現象が起こる背景には、出品者の信頼性や実績も含む複雑なアルゴリズムで要件を決定していることが関係しています。特に多くの出品者が見落としているのが、Amazonの定める「競争力のある価格」という要件の存在です。この「競争力のある価格」という要件を満たせていないことが、最安値にしてもカートを獲得できない要因となって
5日前

datasette 1.0a35 Simon Willison's Weblog
<p><strong>Release:</strong> <a href="https://github.com/simonw/datasette/releases/tag/1.0a35">datasette 1.0a35</a></p> <p>I'll write more about this one soon, but it's a big release. Three highlights from the release notes:</p><blockquote><ul><li>New "Create table" interface in the database actions menu, backed by the <code>/&lt;database&gt;/-/create</code> <a href="https://docs.datasette.io/en/latest/json...
5日前

Amazon Prime Day estimate puts sales higher than Black Friday and Cyber Monday combined
Digital Commerce 360
Amazon’s Prime Day event in 2026 arrived earlier than usual, running for four days instead of the typical two — and other major retailers have adjusted their plans accordingly in an attempt to grow sales during summer’s peak period. Pre-Prime Day data analysis suggests that sales could rise from 2025 levels. Notably, Amazon was not […]The post Amazon Prime Day estimate puts sales higher than Black Friday and Cyber Monday combined appeared first on Digital Commerce 360.
5日前

1年でLINE転換率が3倍(12%)に――少子化でも「月商億超え」を維持する知育玩具ECのギフト戦略
ECのミカタ
出生数の減少にともない、縮小が続く国内ベビー・キッズ市場。その逆風のなかで「月商億超え」を達成し続けるEC事業者がいる。木のおもちゃ・知育玩具の専門メーカー、エデュテ株式会社だ。同社の強みは、EC販売75%、そのうちギフト需要が45%という数字に象徴される「ギフト特化型」の販売戦略にある。しかしその裏側には、SNSでの認知獲得から、LINEによる顧客の囲い込み(ナーチャリング)、そしてギフト品質を担保する物流の内製化まで、一気通貫で緻密に設計された仕組みが存在する。毎年新規顧客を獲得し続けなければならない市場で、いかにLTVを最大化してきたかをエデュテ株式会社 代表取締役の中尾信也氏が語った。●本記事は2026年3月開催「ECのミカタ カンファレンス」で行われた、エデュテ株式会社 代表取締役 中尾信也氏のセッションをレポートしたものです
5日前

Ahold Delhaize names new CEO to head USA operations
Digital Commerce 360
A new CEO is scheduled to take over leadership duties at Ahold Delhaize USA. The supervisory board for Netherlands-based Ahold Delhaize named Claire Peters its next CEO. She is a former leader at Amazon and would assume the role on Sept. 8. There, she will have oversight of the company’s U.S. portfolio. Those banners include […]The post Ahold Delhaize names new CEO to head USA operations appeared first on Digital Commerce 360.
5日前

OPFS + Pyodide test harness Simon Willison's Weblog
<p><strong>Tool:</strong> <a href="https://tools.simonwillison.net/opfs-pyodide">OPFS + Pyodide test harness</a></p> <p>I've been pondering if <a href="https://lite.datasette.io/">Datasette Lite</a> - the Python Datasette application run entirely in the browser using Pyodide and WebAssembly - might be able to edit persistent SQLite files stored on the user's computer.</p><p>That's what <a href="https://developer.mozilla.org/en...
5日前

WooCommerce 10.9: Order email visibility, checkout headroom, and a cleaner admin
The WooCommerce Blog
WooCommerce 10.9 has launched with key updates and one new tool that appears directly in your admin.
5日前

How GPT-5 helped immunologist Derya Unutmaz solve a 3-year-old mystery OpenAI News
GPT-5 Pro helped solve a 3-year-old immunology mystery, offering insights into T cell behavior. The breakthrough could support cancer and autoimmune research.
5日前

The Code You Didn't Write Is Still Yours to Defend
Socket
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.
5日前

TypeScriptコンパイラをGo言語に移植することで10倍速にしたTypeScript 7.0リリース候補版が登場
Publickey
マイクロソフトは、TypeScriptをGo言語に移植した最初のバージョンとなる「TypeScript 7.0」リリース候補版のリリースを発表しました。 TypeScript 7's Release Candidate is now...
5日前
6/23 (火)

Platform-Switching Tax: The Hidden Cost Every Multi-Platform Seller Pays
E-Commerce Times
Multi-platform sellers lose time and productivity switching between tools. New AI approaches aim to simplify operations across e-commerce channels. The post Platform-Switching Tax: The Hidden Cost Every Multi-Platform Seller Pays appeared first on E-Commerce Times.
5日前

Helping build shared standards for advanced AI OpenAI News
OpenAI helps build shared standards for advanced AI, supporting evaluation frameworks, safety practices, and global cooperation through the Appia Foundation.
5日前

Impulse Buying Taking Backseat to Deliberate Shopping: Report
E-Commerce Times
Shoppers are taking a more deliberate approach to buying, relying on reviews, search, and multiple sources to validate products before making purchasing decisions. The post Impulse Buying Taking Backseat to Deliberate Shopping: Report appeared first on E-Commerce Times.
5日前

Principal Drift
Radar
Over the past year I’ve reviewed enterprise agent architectures at roughly two dozen organizations, including banks, retailers, healthcare systems, and a couple of regulators. The architecture diagrams have been reliably impressive. There are boxes for the MCP gateway, the tool registry, the vector store, the orchestrator, the policy engine, and the observability stack. There are […]
5日前

How E.U. Warranties Trap U.S. Sellers
Practical Ecommerce
U.S. and other foreign sellers frequently apply domestic warranty practices to E.U. sales, a big mistake.The post How E.U. Warranties Trap U.S. Sellers appeared first on Practical Ecommerce.
5日前

E2E テストを読めるカタログにする ― AI 時代の振る舞い管理
株式会社ログラス テックブログのフィード
!この記事は毎週必ず記事が出るテックブログ Loglass Tech Blog Sprint の 149 週目の記事です!3 年間連続達成まで残り 10 週となりました! 🌱 はじめにこんにちは、ログラスでバックエンドの数値計算まわりの開発をしている wamomo です。AI にコードを書いてもらう機会が増えたこの 1 年で、E2E テストの扱い方がチーム内で少しずつ変わってきました。この記事では、その変化のひとつとして、E2E テストの内容を Markdown のカタログとして書き出して運用している話を共有したいと思います。 💡 AI と一緒に書く時代に、人間が守るべ...
5日前

2026年新卒社員入社式レポート ~未来は選択するものではなく、自らつくるもの~
Platinum Data Blog by BrainPad ブレインパッド
2026年4月1日、株式会社ブレインパッドは新たに新入社員を迎え、2026年度の入社式を執り行いました。そこから3か月の研修期間に取り組み、新入社員はまもなく本配属を迎えようとしています。第1部:経営陣からの歓迎の言葉新社会人としてのスタートを切った皆さんに辞令が渡されたのち、代表の関口、副社長の西村、常務執行役員の安良岡から熱いメッセージが送られました。代表取締役社長 CEO 関口 朋宏からのメッセージ今年もこれだけ多くの新卒の皆さんを新しいメンバーとして迎えられること、本当に嬉しく思っています。「大きなことをやるにはまだまだ会社の規模は小さいな」と僕自身は思っていますが、新卒メンバーがこれだけの数いるのはブレインパッドの誇りですし、皆さんにとっても、同期の仲間がこれだけいるのは非常に良いことだと思います。僕自身も新入社員の時、同じ月に入社した人がちょうど45人ぐらいで、皆さんと同じくらいの人数でした。その同期は今でも、深い付き合いのある仲間たちです。一緒に苦労したり、くだらないことを話したり、その人たちがいて乗り切れたことがたくさんありました。新卒時代の思い出は楽しいことばかりです
5日前

プロンプトは人手チューニングからAIチューニングへ:遺伝的アルゴリズムで回す自動最適化と高速化 LINEヤフー Tech Blog (LY Corporation Tech Blog
LINEヤフーの技術カンファレンス「Tech-Verse 2026」の公式記事です。こんにちは。LINEヤフー株式会社の中野です。Yahoo!検索のAI回答サービスで大規模言語モデル(LLM)の最適化...
6日前

合計容量1EB超、異なる歴史を持つHDFSをどうつなぐか:LINEヤフーのデータ基盤間連携で直面した課題と設計判断 LINEヤフー Tech Blog (LY Corporation Tech Blog
LINEヤフーの技術カンファレンス「Tech-Verse 2026」の公式記事です。はじめにこんにちは。LINEヤフーで大規模データ基盤の運用を担当している平山、沼田、小笠原、小川です。LINEヤフー...
6日前

Claude CodeがSOC業務を全自動でやってくれるってさ
ZOZO TECH BLOG
はじめに こんにちは、情報セキュリティ部の兵藤です。日々ZOZOの安全を守るためSOC業務に取り組んでいます。 本記事では、SOCでの業務効率化のためにClaude Codeを活用して、自動アラートトリアージエージェント(以降SOC Agent)を構築した事例を紹介します。 また、情報セキュリティ部ではその他にもZOZOを守るための取り組みを行っています。詳細については以下の「OpenCTIをSplunkに食わせてみた」をご覧ください。 techblog.zozo.com 目次 はじめに 目次 背景と概要 SOC Agentの設計 Agentの全体像 Splunk MCPの活用 OpenCTI…
6日前

How Omio is building the future of conversational travel OpenAI News
Discover how Omio uses OpenAI to power conversational travel experiences, accelerate product development, and transform into an AI-native company.
6日前

FastAPIユーザーから見たRobynのポテンシャルとパフォーマンス検証
KAKEHASHI Tech Blog
はじめに Musubi 開発チームおよびサーバサイド Python 研究会の加藤です。 サーバサイド Python 研究会では、カケハシ社内にいる Python バックエンド開発者と、Python に興味がある人たちが集まってワイワイやっています。 今回は、研究会の中で話題に出た Robyn Framework について調べてみました。 Robyn Framework ってなに? Robyn Framework(以下 Robyn)は Sparckles が開発する Web アプリケーションフレームワークです。 公式サイトのトップには "A Fast, Innovator Friendly, a…
6日前

Four travel and hospitality trends from HITEC 2026
Stripe Blog
More than 6,000 hospitality executives and operators gathered in San Antonio last week for the HITEC conference. The big topic: whether the industry’s AI investment is actually working. Across four days and over 50 meetings, four trends stood out.
6日前

Prompt Injection as Role Confusion Simon Willison's Weblog
<p><strong><a href="https://role-confusion.github.io">Prompt Injection as Role Confusion</a></strong></p>First, I absolutely love this:</p><blockquote><p>This is a blog-style writeup of the paper.</p></blockquote><p>I wish <em>every paper</em> would come with one of these. Academic writing is pretty dry - the impact of a paper can be so much higher if you publish a readable version to accompany the formal one.&l...
6日前

Porting the Moebius 0.2B image inpainting model to run in the browser with Claude Code Simon Willison's Weblog
<p>This morning <a href="https://news.ycombinator.com/item?id=48630171">on Hacker News</a> I saw <a href="https://hustvl.github.io/Moebius/">Moebius: 0.2B Lightweight Image Inpainting Framework with 10B-Level Performance</a>, describing a small but effective inpainting model - a model where you can mark regions of an image to remove and the model imagines what should fill the space. The released model <a href="https://github.com/hustvl/Moebius/blob/9310b76e368f5...
6日前

Amazon BedrockのLLM呼び出しコストをApplication inference profileでAI機能別に可視化する
カミナシ エンジニアブログ
はじめに カミナシでエンジニアリングマネージャーをしている、すずけん(@szk3)です。自チームのプロダクト「カミナシ 設備保全」には 2 つの AI 機能があり(プレスリリース)、どちらも Amazon Bedrock AgentCore 上のエージェントから同じ LLM モデルを呼び出しています。 リリースからしばらく経つと、「で、それぞれのAI機能でLLMの呼び出しいくらかかってるの?」という当然の疑問が出てきました。ところがこの2つのAI機能は同じLLMモデルを呼び出しており、請求上は合算されるため、機能ごとのコストを切り分けられていませんでした。 この記事では、Amazon Bedr…
6日前

GitHub、AIによる雑なプルリクエストを抑制へ。ユーザー当たりのプルリクエスト数の上限を設定できる新機能導入
Publickey
GitHubは、ユーザーに対してプルリクエスト数の上限を設定できる新機能の導入を発表しました。 Pull requests are easier to open than ever, but every review still takes...
6日前
6/22 (月)

Bing’s AI Performance Report Gets Better
Practical Ecommerce
Bing was the first AI-answer platform to offer visibility metrics. The updated report provides even more.The post Bing’s AI Performance Report Gets Better appeared first on Practical Ecommerce.
6日前

Whatnot-Shopify Integration Tackles Live Commerce Inventory Challenges
E-Commerce Times
Whatnot and Shopify are streamlining live commerce by synchronizing inventory and orders, helping merchants expand sales channels more efficiently. The post Whatnot-Shopify Integration Tackles Live Commerce Inventory Challenges appeared first on E-Commerce Times.
6日前

Loop Engineering
Radar
The following article originally appeared on Addy Osmani’s blog and is being reposted here with the author’s permission. Loop engineering is replacing yourself as the person who prompts the agent. You design the system that does it instead. A loop here can be thought of as a recursive goal where you define a purpose and […]
6日前

Patch the Planet: a Daybreak initiative to support open source maintainers OpenAI News
OpenAI introduces Patch the Planet, a Daybreak initiative helping open-source maintainers find, validate, and fix vulnerabilities with AI and expert review.
6日前

Daybreak: Tools for securing every organization in the world OpenAI News
OpenAI introduces new Daybreak tools, including Codex Security and GPT-5.5-Cyber, to help organizations find, validate, and patch vulnerabilities at scale.
6日前

人が方針を立て AI が自律的に回る開発ループを設計してチーム開発に組み込む
Wantedly Engineer Blog
こんにちは。ウォンテッドリーでバックエンドエンジニアをしている小室 (@nekorush14) です。少人数のチー...
6日前

AIとGitHubを活用した「実行計画」〜要件定義から実装までを一気通貫で進めるドキュメンテーション技術の実践〜
Wantedly Engineer Blog
こんにちは!ウォンテッドリーでバックエンドエンジニアをしています、平岡です。今回は、GitHub上で情報を構造化し...
6日前

apple/container で worktree 並行開発を快適にするツールを作ってみた
エムスリーテックブログ
先月マルタ共和国へ旅行に行った時の風景です。本記事とは無関係です。 【デジスマ ブログリレー 2日目】 デジスマチームの田口です。 最近 apple/container という Apple 純正の Linux コンテナサポートツールが v1 として正式リリースされました。軽量 VM ベースということで興味があり、これを使って何か面白いものを作れないかと色々触っていました。 ちょうど普段 Claude Code を claude --worktree で複数ブランチ並行で動かしていて、ブランチごとのローカルサーバの取り回しが地味な課題として残っていたので、apple/container の特徴を…
6日前

JJUG CCC 2026 Spring 協賛&参加レポート
ZOZO TECH BLOG
はじめに こんにちは、データ・AIシステム本部 検索基盤部 検索基盤ブロックの吉永です。 ZOZOは2026年5月30日(土)に東京・新宿のベルサール新宿グランドで開催された「JJUG CCC 2026 Spring」にブーススポンサーとして協賛しました。JJUGは、日本におけるJava技術の向上・発展と一層の普及・活性化を目指して設立された、ボランティアメンバーで運営される日本のJavaユーザーコミュニティです。CCCは、JJUGが主催する「Javaに閉じず」「技術に閉じず」オープンソースを中心とする様々なコミュニティから参加者を募って、コミュニティを横断した「クロスコミュニティなカンファレ…
6日前

見やすい手順書を書くノウハウ集
カミナシ エンジニアブログ
コーポレートエンジニアの@sion_cojpです。 コーポレートエンジニアをやってると、コード化できないものも多く、その場合は手順書を残す必要があります。 手順書は 「作業者が、上からなぞって実施していけば誰でも同じ作業になる」ために、見やすく書くノウハウをこの記事では紹介します。 1. 全体の文字数・1文の文字数・画像数をなるべく少なくする 2. インデントは2つまで。最悪3つ目まで 3. 危ない作業は赤文字 + 太文字で 4. 画像を使わず、なるべく文字だけで表現する 5. プロセス図に沿った手順を書く 6. 作業の流れだけを書く。ベストはコピペだけでできるように完結させる 7. 注意点は…
7日前

Infrastructure as Code(IaC)で自動化からAIまで:OpenTofuとChatOps導入記 LINEヤフー Tech Blog (LY Corporation Tech Blog
LY Corporationの技術カンファレンス Tech-Verse 2026 の公式記事です。はじめにこんにちは。社内クラウドサービス Verda および社内モニタリングツール IMON に In...
7日前

分析エージェントのチカラで分析を「ひとつなぎ」に!専門組織が挑む、生成AI時代の業務改革と役割シフトの試み LINEヤフー Tech Blog (LY Corporation Tech Blog
LINEヤフーの技術カンファレンス「Tech-Verse 2026」の公式記事です。こんにちは。AIエージェントで分析を「ひとつなぎ」にするプロジェクト「PJ One Piece」のプロダクトマネージ...
7日前

2026年度 人工知能学会全国大会(第40回)参加報告
Sansan Tech Blog
こんにちは、Sansan株式会社 技術本部 研究開発部の難波です。 2026年6月8日(月)〜12日(金)の5日間、Gメッセ群馬(群馬県高崎市)にて開催された第40回 人工知能学会全国大会(JSAI2026)に参加してきました。弊社はプラチナスポンサーとして協賛し、ポスター発表2件・口頭発表1件を行うとともに、ブース出展や学生向けのランチ交流会も実施しました。 本記事では、弊社の研究発表とブースの様子に加えて、個人的に印象に残った発表を、質疑応答の内容も交えてレポートします。
7日前

Codex-maxxing for long-running work OpenAI News
Learn how Jason Liu uses Codex to preserve context, manage complex projects, and help work continue beyond a single prompt.
7日前

sqlite-utils 4.0rc1 adds migrations and nested transactions Simon Willison's Weblog
<p><a href="https://sqlite-utils.datasette.io/en/latest/">sqlite-utils</a> is my combined Python library and CLI tool for working with SQLite databases. It provides an extensive set of higher-level operations on top of Python's default <a href="https://docs.python.org/3/library/sqlite3.html">sqlite3 package</a>, including support for <a href="https://sqlite-utils.datasette.io/en/latest/cli.html#transforming-tables">complex table transformations</a>, aut...
7日前

sqlite-utils 4.0rc1 Simon Willison's Weblog
<p><strong>Release:</strong> <a href="https://github.com/simonw/sqlite-utils/releases/tag/4.0rc1">sqlite-utils 4.0rc1</a></p> <p>See <a href="https://simonwillison.net/2026/Jun/21/sqlite-utils-40rc1/">sqlite-utils 4.0rc1 adds migrations and nested transactions</a>.</p> <p>Tags: <a href="https://simonwillison.net/tags/sqlite-utils">sqlite-utils</a></p>
7日前

Samsung Electronics brings ChatGPT and Codex to employees OpenAI News
Samsung Electronics deploys ChatGPT Enterprise and Codex to employees worldwide, marking one of OpenAI’s largest enterprise AI rollouts.
7日前

Temporary Cloudflare Accounts for AI agents Simon Willison's Weblog
<p><strong><a href="https://blog.cloudflare.com/temporary-accounts/">Temporary Cloudflare Accounts for AI agents</a></strong></p>The announcement says this is "for AI agents" but (as is pretty common these days) the AI hook isn't really necessary, this is an interesting feature for everyone else as well.</p><p>Short version: you can now create a Cloudflare Workers project and run this, without even creating a Cloudflare account:</p><pre&g...
7日前



