### Install Node.js and Git using Homebrew Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html This command installs Node.js and Git. Ensure Homebrew is installed first. ```bash brew install node git ``` -------------------------------- ### Navigate to Directory Example Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html Example command to navigate to a specific directory, such as the Desktop, before cloning a repository. ```bash cd ~/Desktop ``` -------------------------------- ### Install notebooklm-py Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/index.html Installs the notebooklm-py library with browser support. This is a prerequisite for interacting with NotebookLM via Python. ```bash pip install "notebooklm-py[browser]" ``` -------------------------------- ### Verify Git Installation Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html Check if Git has been installed successfully by verifying its version. This confirms Git is ready for use. ```shell git --version ``` -------------------------------- ### Install Git using Homebrew Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html Install Git, a distributed version control system crucial for code management and deployment, using Homebrew. ```shell brew install git ``` -------------------------------- ### Install NotebookLM Skill Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/index.html Installs a registered skill within NotebookLM. This allows for custom functionalities or integrations. ```bash notebooklm skill install ``` -------------------------------- ### Install agent-browser via Homebrew Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/handoffs/2026-05-30-site-v2-codex.md Installs the agent-browser CLI tool using the Homebrew package manager as an alternative to npm. ```bash brew install agent-browser ``` -------------------------------- ### Install gogcli using Homebrew Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/index.html Installs the gogcli tool, which allows interaction with Google Sheets and Drive via natural language commands. ```bash brew install openclaw/tap/gogcli ``` -------------------------------- ### Clone Repository and Navigate Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/journey/README.md Clone the GitHub repository to your local machine and navigate into the created directory. This is the initial setup step for the journey. ```bash cd ~/Desktop git clone https://github.com/sento-group-inc/Aigassyuku06.git cd Aigassyuku06 ``` -------------------------------- ### Verify Homebrew Installation Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html Check if Homebrew has been installed successfully by verifying its version. A successful installation will display the Homebrew version number. ```shell brew --version ``` -------------------------------- ### Verify Node.js and npm Installation Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html Confirm that Node.js and its package manager, npm, have been installed correctly by checking their versions. ```shell node --version ``` ```shell npm --version ``` -------------------------------- ### Example Usage Prompt Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/journey/templates/SKILL-template.md This is a placeholder for a typical request that would be made to the agent. ```text [典型的な依頼文の例] ``` -------------------------------- ### Install ngrok via Homebrew Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/handoffs/2026-05-30-site-v2-codex.md Installs the ngrok utility using the Homebrew package manager. ngrok is used to expose local servers to the internet. ```bash brew install --cask ngrok ``` -------------------------------- ### Install Homebrew on macOS Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html This command installs Homebrew, a package manager for macOS, which allows for the installation of most development tools via a single command line. Administrator password is required. ```bash /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" ``` -------------------------------- ### Install agent-browser Dependencies Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/handoffs/2026-05-30-site-v2-codex.md Installs necessary dependencies for agent-browser, including Chrome for Testing. This command is required after installing the agent-browser package. ```bash agent-browser install ``` -------------------------------- ### Registering Asana Task via Codex Example Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/handoffs/2026-05-30-site-v2-codex.md An example prompt for Codex to register tasks in Asana using a provided Personal Access Token. Replace YOUR_ASANA_PAT with your actual token. ```bash このPATでAsana APIに接続し、〇〇プロジェクトにタスクを5件登録して ``` -------------------------------- ### Ask a Question to NotebookLM Sources Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/index.html Queries the sources added to the active NotebookLM notebook. This example asks for five potential points of confusion for attendees. ```bash notebooklm ask "この資料群から、受講者が詰まりそうな点を5つ出して" ``` -------------------------------- ### Codex request example for agent-browser Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/index.html An example prompt for Codex (or a similar AI) to use agent-browser for web page analysis and improvement suggestions. ```bash agent-browserで https://aigassyuku06.vercel.app/ を開き、snapshotを取得してください。 受講者が今どこにいるか分かるか、次に押すものが分かるか、本文が詰まりすぎていないかを確認し、index.htmlの改善案を出してください。 実装前に変更方針だけ出してください。 ``` -------------------------------- ### Start Session 01: Context Engine Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/journey/README.md Initiate the first session by instructing the AI to open and follow the steps in the Session 01 markdown file within the cloned repository. This sets up the foundational context engine for the AI organization. ```text このリポジトリの journey/Session01-context-engine.md を開いて読んで、その手順に沿って私を導いてください。 ``` -------------------------------- ### Daily Operations Setup Prompt Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/journey/Session04-operations.md This prompt outlines the initial steps for daily operations after completing the CEO inauguration. It suggests actions like running a morning check script, assigning a task to an agent, and scheduling the weekly maintenance. ```text 明日の朝、最初にやることを決めましょう。 1. scripts/asana-morning-check.md を開いてAIに貼り付ける 2. 今日作ったどれかのエージェントを使って実際のタスクを1つやらせる 3. 来週の[曜日・時間]に weekly-maintenance.md を使ってメンテナンスをする この3つを「明日のToDoリスト」としてAsanaに入れますか? ``` -------------------------------- ### Install agent-browser via npm Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/handoffs/2026-05-30-site-v2-codex.md Installs the agent-browser CLI tool globally using npm. This tool allows AI agents to interact with web browsers. ```bash npm install -g agent-browser ``` -------------------------------- ### Install Node.js using Homebrew Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html Install Node.js, a JavaScript runtime environment essential for many CLI tools, using the Homebrew package manager. ```shell brew install node ``` -------------------------------- ### Install Chromium for Playwright Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/index.html Installs the Chromium browser, which is required by Playwright for browser automation tasks used by notebooklm-py. ```bash playwright install chromium ``` -------------------------------- ### AI Camp Preparation Template Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html A template to use when asking AI for help with setup issues. It includes fields for the current actions, errors, and Mac type. ```text MacでAI合宿の事前準備をしています。 Goal: Codex App / Homebrew / Node.js / Git を使える状態にしたいです。 今やったこと: - 実行したコマンド: [ここに貼る] - 出たエラー: [ここに貼る] - Macの種類: [Apple Silicon / Intel / わからない] 初心者にもわかるように、次に何を確認して、どのコマンドを1つずつ実行すればいいか教えてください。 ``` -------------------------------- ### Run Local HTTP Server Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/README.md Starts a local HTTP server to view the HTML files in a browser. Access the site at http://localhost:8000. ```bash python3 -m http.server 8000 ``` -------------------------------- ### Check gogcli version Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/index.html Verifies the installed version of gogcli to ensure it is up-to-date. ```bash gog --version ``` -------------------------------- ### Install Claude Code Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html Install the Claude Code package globally using npm. This is a prerequisite for using its remote control features. ```bash npm install -g @anthropic-ai/claude-code ``` -------------------------------- ### Start ngrok Tunnel Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/handoffs/2026-05-30-site-v2-codex.md Starts an ngrok tunnel to expose a local HTTP server running on port 8000 to a public URL. This is useful for sharing local development servers. ```bash ngrok http 8000 ``` -------------------------------- ### Launch Codex CLI Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html Start the Codex command-line interface after navigating to your project directory. This command initiates the Codex environment for your workspace. ```shell codex ``` -------------------------------- ### Install Obsidian using Homebrew Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html Use this command to install the Obsidian application on macOS via Homebrew. Obsidian is an optional tool for managing Markdown files. ```bash brew install --cask obsidian ``` -------------------------------- ### Starting Prompt for AI Interaction Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/schedule.html This is the initial prompt to be pasted into Codex or Claude to begin the AI-guided journey. It instructs the AI to open and follow the journey/README.md file. ```text このリポジトリの journey/README.md を開いて読んで、その手順で私を導いてください。 ``` -------------------------------- ### Start Subsequent Sessions Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/journey/README.md Begin subsequent sessions by referencing the relevant markdown file in the journey directory and instructing the AI to use previously created files for context. This ensures continuity and builds upon previous work. ```text このリポジトリの journey/Session02-ai-org-design.md を開いて、前回作ったファイルを読んでから続けてください。 ``` -------------------------------- ### Clone Project Repository Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html Clone the project repository from GitHub to your local machine. This command downloads all project files, including the interactive guide. ```bash git clone https://github.com/sento-group-inc/Aigassyuku06.git ``` -------------------------------- ### BI Example: IPOA Applied to Sales Dashboard Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/ipoa.html Demonstrates how to refine a generic BI request into a specific IPOA definition for actionable insights. ```text BIを作りたい 売上ダッシュボード、グラフ、KPI一覧 誰が何を決めるかがないので、見て終わる 毎週月曜に赤字見込み案件を3件選び、担当者に次の一手を決めさせたい IPOA BI例での定義 Action 月曜朝、経営者が赤字見込み案件を3件選び、担当者へ打ち手を確認する。 Output 赤字見込み案件ランキング、粗利率、担当者、直近の動き、推奨アクション。 Input 売上、原価、案件ステータス、担当者、期限、過去対応、顧客メモ。 Process 粗利率計算、リスク分類、優先順位付け、次の一手の推奨生成。 ``` -------------------------------- ### Composio Setup Request for Codex Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html This is a prompt to configure Composio within Codex. It specifies the MCP server name, transport type, and URL, and asks Codex to suggest relevant apps for the workshop. ```text ComposioをCodexで使えるように設定してください。 公式ページ https://composio.dev/codex を確認し、MCPサーバー名を composio、transport type を HTTP、URL を https://connect.composio.dev/mcp として追加してください。 認証が必要な場合は、ブラウザで私が承認します。 設定後、Composioで接続できるアプリ候補を検索して、GitHub / Asana / Slack / Notion のうち今回の合宿で使う価値が高いものを提案してください。 ``` -------------------------------- ### Get screen state as JSON with agent-browser Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/index.html Capture the current screen state and output it in JSON format for easier parsing and analysis by AI. ```bash agent-browser snapshot -i --json ``` -------------------------------- ### Prompt for Autonomous Tasks Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/journey/Session04-operations.md Inquires about tasks that the AI is authorized to execute autonomously without requiring prior confirmation. Examples include creating/editing files, drafting content, updating task statuses, or running tests. ```text 逆に、「これは確認なしで自律でやってくれてOK」という作業は何ですか? 例:「ファイルの作成・編集」「文章のドラフト作成」「Asanaのステータス更新」「テストの実行」など。 ``` -------------------------------- ### Create and Navigate to Codex Workspace (CLI) Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html Use the command line to create a directory structure for your Codex project, including logs and outputs, and then navigate into the project directory. ```shell mkdir -p ~/codex-bunshin-os/logs ~/codex-bunshin-os/outputs ``` ```shell cd ~/codex-bunshin-os ``` -------------------------------- ### Check Claude Code Version Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html Verify the installed version of Claude Code. This command helps ensure the installation was successful and you are using the expected version. ```bash claude --version ``` -------------------------------- ### Navigate to Project Directory Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html Change the current directory to the cloned project folder. This is necessary to run project-specific commands. ```bash cd Aigassyuku06 ``` -------------------------------- ### Check NotebookLM Skill Status Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/index.html Displays the status of installed skills in NotebookLM. Useful for verifying if skills are correctly registered and active. ```bash notebooklm skill status ``` -------------------------------- ### Create Repository Intake Skill Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/index.html This is a template for creating a Skill.md file to handle GitHub repository intake decisions. It outlines the purpose, constraints, and expected outcomes. ```markdown このフォルダに skills/repo-intake/SKILL.md を作ってください。 目的: GitHubリポジトリのURLを渡されたら、私の業務環境に取り込むべきか判断する。 必ず守ること: - AGENTS.mdを読んでから判断する - いきなりインストールしない - 導入 / 保留 / 見送りのどれかで結論を出す ``` -------------------------------- ### Local Server Testing Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/handoffs/2026-05-30-site-v2-codex.md Use this command to test the local site. Mermaid diagrams may render vertically. ```shell python3 -m http.server 8787 ``` -------------------------------- ### Check gogcli authentication status Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/index.html Performs a diagnostic check on the gogcli authentication setup to ensure all services are correctly configured and accessible. ```bash gog auth doctor --check ``` -------------------------------- ### Create a NotebookLM Notebook Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/index.html Creates a new notebook in NotebookLM with a specified title. The output will contain the ID of the newly created notebook. ```bash notebooklm create "AI合宿 資料置き場" ``` -------------------------------- ### Login to NotebookLM Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/index.html Logs into NotebookLM using the command line. This command will open a browser for authentication. ```bash notebooklm login ``` -------------------------------- ### Troubleshooting: Command Not Working Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/schedule.html When a command fails, paste the error message directly into Codex. Specify the action attempted and request the cause and correction steps. ```text 〇〇をしようとしたら△△というエラーが出た。原因と修正手順を教えて ``` -------------------------------- ### Start Remote Control within Session Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html Activate the remote control feature from within an active Claude Code session by typing '/rc' in the chat input. ```bash /rc ``` -------------------------------- ### Configure ngrok Authtoken Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/handoffs/2026-05-30-site-v2-codex.md Configures ngrok with your authentication token. Obtain your token from the ngrok dashboard and use this command to authenticate your ngrok client. ```bash ngrok config add-authtoken YOUR_NGROK_TOKEN ``` -------------------------------- ### Update Repository to Latest Version Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/journey/README.md Pull the latest changes from the GitHub repository to ensure you have the most up-to-date guide and files. This command is useful on the morning of the retreat or if updates are announced. ```bash git pull ``` -------------------------------- ### Start Remote Control with Claude Code Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html Initiate the remote control feature for Claude Code by running the 'claude rc' command. This will display a QR code for connecting your mobile device. ```shell claude rc ``` -------------------------------- ### Task Handoff Template for AI Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/journey/Session03-task-automation.md Use this template to clearly define tasks for AI agents. Copy and fill in the [INPUT] sections before passing it to the AI for execution. The AI will populate the [OUTPUT] sections. ```markdown # タスク引き継ぎテンプレート > 使い方: このファイルをコピーして handoffs/task-YYYYMMDD-[タスク名].md として保存し、[INPUT]を埋めてAIに渡す。 --- ## [INPUT] タスク概要 (1〜2行で) ## [INPUT] 依頼内容 (箇条書きで) ## [INPUT] 完成の定義 (どうなれば「完了」か) ## [INPUT] 使うエージェント (例:brand-voice-reviewer / [業務名]担当) ## [INPUT] 期限 (なければ「なし」) --- ## [OUTPUT] 実行ログ ## [OUTPUT] 完了報告 ## [OUTPUT] 次の一手 ``` -------------------------------- ### Set PATH for Apple Silicon Macs Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/prep.html After installing Homebrew on an Apple Silicon Mac, run these two commands to set up your PATH environment variable. This ensures Homebrew commands are recognized in your terminal. ```shell echo 'eval "$(/opt/homebrew/bin/brew shellenv)""' >> ~/.zprofile ``` ```shell eval "$(/opt/homebrew/bin/brew shellenv)" ``` -------------------------------- ### Prompt for Prohibited Tasks Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/journey/Session04-operations.md Asks the AI to identify tasks that should absolutely never be performed without explicit human confirmation. Examples include sending emails, deleting files, financial operations, or social media posts. ```text AIに「確認なしで絶対にやってほしくない」作業はありますか? 例:「メールを勝手に送る」「ファイルを削除する」「お金に関する操作」「SNSに投稿する」など。 思いつく限り全部教えてください。 ``` -------------------------------- ### Output Format Template Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/journey/templates/SKILL-template.md This is a placeholder for the expected output structure from the agent. ```text [出力のテンプレート] ``` -------------------------------- ### Weekly Maintenance Script Generation Prompt Source: https://github.com/sento-group-inc/aigassyuku06/blob/main/journey/Session04-operations.md This prompt guides the AI in generating a script for weekly maintenance tasks. It includes steps for status confirmation, organizing information, and proposing improvements, ensuring changes are suggested before execution. ```markdown # 週次メンテナンス — [質問3の曜日・時間] に実行 > このファイルをそのままClaude/Codexに貼り付けて使う。 --- 週次メンテナンスをお願いします。 ## Step 1: 現状確認 AGENTS.md / memory.md / state.md / contexts/ / skills/ / handoffs/ を全部読んでください。 ## Step 2: 整理(提案のみ、実行前に確認) 1. AGENTS.md の重複ルールをまとめる(あれば) 2. memory.md から古くなった情報を外す提案 3. state.md を今週の重点に更新する案を出す 4. 使っていないSkillがあれば棚卸しを提案 ## Step 3: 改善提案 今週のやり取りを振り返り、「次回からAGENTS.mdに追記すべきルール」を1〜3つ提案してください。 ## Step 4: 今週の一言 「今週のAI組織の状態」を1〜2行で評価してください。 --- 変更は提案のみ。OKをもらってから実行してください。 ```