前編ではOriginが何か、どうセットアップするかを書きました。後編は、載せてみて引っかかったところです。いちばん大きいのはPull Requestの内部モデルで、単位がchange(版付きの差分)になっていること。あとはremote名の罠、Settingsの中身、CIとレビューの組み立て。実際にリファクタリングのchangeを1本流した記録と、この方向性を自分がどう見ているかも残します。 前編はこちら: https://qiita.com/Kinopee/items/639d401573c09ab24667 確認した時点のCLIは 2026.08.15-22-58-04-922a05a です。確認の直後、2026年8月17日にOriginは初期ベータとして正式リリースされ、公式ドキュメントも公開されました。変化が速い時期なので、細部は手元でも確かめてください。 違いはGitではなく、差分
Cursor Originは、Cursorが出しているGitホスティングです。リポジトリを置いて、レビューして、マージする。GitHubやGitLabと同じ役割です。公式のコピーは "A git forge for the agentic era"。人間が1本ずつPull Requestを出す速度ではなく、エージェントが短時間に大量のブランチと差分を出す前提で作られています。 Cursor Ambassadorには少し早めにリリースされたので、すぐに試しました。そして書いている途中の2026年8月17日、初期ベータとしてすべての有料プランへ順次提供が始まりました。管理者がオプトアウトした企業組織を除き、有料プラン(Pro / Teams / エンタープライズ)ならもう使えます。レガシー版プライバシーモードのチームは、新しいプライバシーモードへ切り替えるまで有効化できません。公式ドキュメント
Cursor can now host your code. Origin begins rolling out today in early beta on all paid plans. We're starting with the essentials, designed for agent scale: repos, pull requests, code browsing, and GitHub sync. Agent-native features ship soon. #Origin Repos The new Codebase tab is home for Origin repos. Click +New to create a new repo and name it. Once you do, a page shows you how to install the
ご無沙汰です。CTOの大塚(@maaash)です。 「純粋リファクタリング」をAIに証明させて自動マージする AIエージェントを使うことになってコーディングのスピードが上がり、その前後のプロセスにかける時間が増えている話は 最近のAIの使い方 - 2026年1月編 で書きました。今日はその後ろ側、レビューをどう高速化するか、という話です。 GitHub のPRに /review_refactoring とコメントするとCIが動いてAIがレビューし、合格したら自動マージまで走る。 そんな仕組みを社内で回しはじめて、しばらくしたら効果がはっきり出てきました。 これはどこかイベントで話したいなあ、と思っていたところ、 ちょうどよくファインディさん主催の プロダクト開発、AIに丸ごと任せられるのか?Meet up! AI時代のレビュー、どこまでどう任す? があったので、LTしてきました。 その時の
AI向けWebデータAPIを提供するFirecrawlは2026年8月5日、WordやPowerPoint、Excel、PDFなどの文書をMarkdownへ変換するRust製ライブラリ「anydoc」をオープンソースで公開した。ローカル環境で動作し、CLIのほかRust、Node.js、Pythonから利用できる。ライセンスはMIT。 firecrawl/anydoc - GitHub anydocは、Word、PowerPoint、Excel、OpenDocument、RTF、EPUB、CSV、PDFをGitHub Flavored Markdown(GFM)へ変換する。PDF以外の各形式では、共通の文書モデルを経由して単一のシリアライザーでMarkdownを生成する。これにより、見出し、表、リスト、脚注などを形式間で一貫して出力できるという。 PDF以外の形式では、埋め込み画像やオブジ
Swati KhandelwalAug 05, 2026AI Security / Artificial Intelligence An agent running Anthropic's Claude Mythos 5 spent 34 hours trying to get a malware dropper merged into a real open-source project during a cyber evaluation by the UK's AI Security Institute. When a bystander publicly warned that the code was malicious, the agent denied it, force-pushed a rewritten branch history to erase the evid
GitHubでPRを細かく作り、前のブランチに対して数珠つなぎのようにPRを作る私が大歓喜! GitHubに「スタック型プルリクエスト(Stacked pull requests)」が来ました💐 4行まとめ 大きな変更を順序付きの小さなPR群に分割して扱える「スタック型プルリクエスト」がGitHub公式で登場 gh extension install github/gh-stackでCLIから使える gh stack syncでスタックのrebase, pushまで一発でできる AIエージェント用にgh-stackスキルがあるので自然言語でスタックPRの操作が可能 巨大な1つのプルリクエストは悪 AIエージェントでの開発が前提の現在、AIエージェントは素早く多くのコードを生み出します。気をつけないと、1つのプルリクエストに多くの開発が盛り込まれ、巨大なプルリクエストになってしまいます。1
今月のイベントで自分がどう開発しているかを話しました。 Slack上で極力完結する形にしており、HermesとSymphonyを使ってLinearのチケットを中心にして開発を行っています。 今回の本題ではないので、詳しくはスライドを見てほしいのですが、軽くどう開発しているかを説明します。 Plan Hermesを使って、やりたいことを整理し、実装できる単位のチケットに分解 Implementation LinearのIssueを起点に、Symphonyが各タスクを実装 QA コードレビューとPlaywright/Maestroを使った実際のQA結果を投稿 みたいな流れで進めています。もちろんCLIも使うことはあり、例えばUIや精度調整などの何回も試行錯誤するものは手元でやったほうが明らかに速いです。 Codex オーケストレーションのためのオープンソース spec: SymphonyCod
Reference same-repository actions with self-repository syntax You can now reference an action or reusable workflow that lives in the same repository using the new self-repository syntax. A uses: value that starts with $/ resolves to your workflow’s own repository at the exact commit that is running, with no checkout required. It works everywhere the workspace-relative ./ syntax works, including wo
Menu. Currently selected: Get started with the CLI extension Stacked pull requests break large changes into small, reviewable pull requests. They’re an ordered series of pull requests that each represent focused layers of your change. With stacks, you can independently review and check each pull request, then merge everything together in one click. No more opening a single large pull request that
At GitHub Security Lab, we spend a lot of our week talking to maintainers. Some find the settings page dense and the docs sprawl. Most maintainers we talk to weren’t hired to be security engineers. While this is true, ignoring a project’s security settings completely will lead into leaving a lot in the table in terms of automation and scalability, leading into a poor security posture, and before y
i have been thinking a bit more about security cameras again, because of AXIS starting to push more for every one of their cameras to be able to easily run linux applications on them, they're far more serious targets in an enterprise environment and need to be managed as such for vulnerabilities and credential management etc. someone brought up to me a company that sounded new to me, Hanwha (Visio
自分が気に入ってる Claude Code Web を使った開発の(一部)自動化の手法を紹介します。 周りにあまり使ってる人がいないのですが、作者のボリスを参考に自分も開発の一部を自動化するのにある程度成功しています。 Claude Code Web Claude Code は Web 上のダッシュボードからコンテナ環境で開発することができます (一部、エンタープライズ契約の状態によってはこれがないことがあります) このコンテナはサブスクの範囲内で無料で動かせます。ただし、現在ベータ版なので将来的に有料になる可能性があります。 自分は普段の大部分の開発をここで済ませています。 リモートコンテナの仕様 基本は指定されたリポジトリで、 Ubuntu(Linux x64) が起動します。現状、カスタムコンテナの指定はできません。 一般的なプログラミング言語やコンパイラ(node や rust)
// PLAYWRIGHT PR AGENTS --Automatically fix failing Playwright scriptsKeep the browser automations you already run. When one fails, Libretto investigates the live page and opens a GitHub pull request with a proposed code fix.
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く