Skip to content

Instantly share code, notes, and snippets.

View nowissan's full-sized avatar

simotunes nowissan

  • hikutas inc.
  • Tokyo
View GitHub Profile
@nowissan
nowissan / prompts_for_description_en.md
Created September 23, 2025 05:43
Prompts for description en

Prompts from the Video (Simple Version)

Thank you for watching "Stop Deciding Alone with AI #Shorts." Below are the simplified prompts from the video. Feel free to copy, paste, and use them in your business.


1. The Basics: "Persona" Prompts to Assign AI a Role

@nowissan
nowissan / prompts_for_description.md
Created September 23, 2025 03:46
prompts for description ja

動画で紹介したプロンプト集(コピー&ペーストして使えます)

動画「【AI壁打ち役員会】もう一人で悩まない!明日から使える意思決定ハック」をご覧いただきありがとうございます。 動画内で紹介した、AIを最強の壁打ち相手にするためのプロンプト(指示書)を以下にまとめました。 コピー&ペーストして、ぜひあなたのビジネスにお役立てください。


1. 基本編:AIに役割を与える「ペルソナ」プロンプト

@nowissan
nowissan / analyze-diff-en.js
Created September 20, 2025 23:44
analyze-diff-en.js
// analyze-diff.js
const fs = require('fs');
const OpenAI = require('openai');
const client = new OpenAI({ apiKey: process.env.OPENAI_API_KEY });
(async () => {
// 1) Read the diff file (can be replaced with the first argument)
const diffPath = process.argv[2] || 'changes.diff';
const diff = fs.readFileSync(diffPath, 'utf8');
@nowissan
nowissan / analyze-diff.js
Created September 20, 2025 23:39
analyze-diff.js
// analyze-diff.js
const fs = require('fs');
const OpenAI = require('openai');
const client = new OpenAI({ apiKey: process.env.OPENAI_API_KEY });
(async () => {
// 1) diffファイルを読む(第1引数で差し替え可)
const diffPath = process.argv[2] || 'changes.diff';
const diff = fs.readFileSync(diffPath, 'utf8');