Table of contents
Open Table of contents
はじめに
この記事は一部AIが書いています。
やったこと
Kindleのセールで本をいっぱい買った
丁度 生産性 や 採用基準 など一般的なビジネス書が気になっていたので、似た系統のものを買った。
- 入門『地頭力を鍛える』 32のキーワードで学ぶ思考法
- 習慣の力〔新版〕 (ハヤカワ文庫NF)
- イシューからはじめよ[改訂版]――知的生産の「シンプルな本質」
- 新版 思考の整理学 (ちくま文庫)
今は
- イシューからはじめよ[改訂版]――知的生産の「シンプルな本質」
を読んでいる。
iPadを買った
- スクリブルを活かした筆談
- 電子書籍リーダー
- お絵かき
- Deemoのプレイ
- 動画視聴
に使いたいので、買った。
なぜ 一部 なのか
以下の手順でClaude Codeにファイルを生成してもらったから。
これなら自分でやったほうがはるかにはやいけど、やってみたかった。
他人に何かをお願いする時の練習にもなる可能性がある。
> Try create diary post. use "pnpm run new-post". this post is diary. title is "2025年6月11日(水)の日記"
● I'll create a new diary post using the command you specified.
● Bash(pnpm run new-post)
⎿ Error: Unsupported compiler options in "xxxx-xxxx-xxxx"
● The command needs the title to be provided. Let me run it with the title:
● Bash(echo "2025年6月11日(水)の日記" | pnpm run new-post)
⎿ No (tell Claude what to do differently)
> Parse the options for pnpm run new-post and set the title and description.
● I'll check the script to understand its options.
● Read(scripts/create-post.ts)
⎿ Read 155 lines (ctrl+r to expand)
● Now I understand the script options. I can use command line arguments to set the title and description. Let me
create the diary post:
● Bash(pnpm run new-post --title "2025年6月11日(水)の日記" --description "2025年6月11日の日記です。" --tags "diary" --draft)
● The diary post has been created successfully at src/data/blog/2025611.md with:
- Title: 2025年6月11日(水)の日記
- Description: 2025年6月11日の日記です。
- Tags: diary
- Draft: true
- Featured: false
> Match the slug with the diary entry for June 10, 2025
● I'll check the existing diary entry to match the slug format.
● Task(Find June 10 diary slug)
⎿ Done (1 tool use · 12.6k tokens · 16.3s)
● I need to rename the file to match the format. Let me do that:
● Bash(mv /path/to/incorrect-filename /path/to/correct-filename)
⎿ (No content)
● The diary post has been renamed to 2025-06-11-diary.md to match the format of the June 10 diary entry
(2025-06-10-diary.md).
> /exit
⎿ (no content)