0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

github→deepwikiをワンクリックで変換する

Last updated at Posted at 2025-06-02

はじめに

DeepWikiは https://github.com/[user_name]/[repository_name]githubdeepwikiに変換すると,Githubリポジトリのコードを解析し、自動的でリポジトリのドキュメント,Wikiを作成しチャットでの質問も可能になるサービスです.
(https://deepwiki.com/)

ブックマークレット

Chromeでの登録方法を紹介します。動作確認はChromeのみでしか実施していません。

  1. ブックマークバー」を右クリックして「ブックマークバーを表示」にチェックを入れる
  2. ホーム画面以外でも常にブックマークバーが表示され、github閲覧中にブックマークバーから機能を使うことが可能になる
  3. ブックマークバー」を右クリックして、「ブックマークマネージャ」を選択
  4. ブックマークマネージャにて、「右上の3点リーダーアイコン」をクリックして、「新しいブックマークを追加」を選択.「名前(自由)、URL(以下のコード)」を入力して保存
URL
javascript:(function() {
  var oldUrl = window.location.href;
  var newUrl = oldUrl.replace(/github/g, 'deepwiki');
  window.location.href = newUrl;
})();

image.png

試しにqiitaのリポジトリで試してみました

before: https://github.com/increments/qiita-cli

image.png

deepwikiは作成されていないものに関してはメールアドレスを入力して「Index Repository」を押すと作成されます.作成に2-10分ほどかかることがあるみたいです.
すでに作成されているものに関してはすぐに出てきます.

image.png

after:

image.png

注意点
githubという単語が含まれていない限り何も起きません。
githubという単語が含まれているURLの場合、全てが置換されてしまいます。予期せぬリンクに飛んでしまう可能性があるので誤って使わないように注意してください。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?