← スキル一覧

## Overview Small improvements, continuously. Error-proof by design. Follow what works. Build only what's needed. **Core principle:** Many small improvements beat one big change. Prevent errors at design time, not with fixes. ## When to Use **Always applied for:** - Code implementation and refactoring - Architecture and design decisions - Process and workflow improvements - Error handling and validation **Philosophy:** Quality through incremental progress and prevention, not perfection through massive effort. ## The Four Pillars ### 1. Continuous Improvement (Kaizen) Small, frequent improvements compound into major gains. #### Principles **Incremental over revolutionary:** - Make smallest viable change that improves quality - One improvement at a time - Verify each change before next - Build momentum through small wins **Always leave code better:** - Fix small issues as you encounter them - Refactor while you work (within scope) - Update outdated comments - Remove dead code when you see it **Iterative refinement:** - First version: make it work - Second pass: make it clear - Third pass: make it efficient - Don't try all three at once ```typescript // Iteration 1: Make it work const calculateTotal = (items: Item[]) => { let total = 0; for (let i = 0; i { return items.reduce((total, item) => { return total + (item.price \* item.quantity); }, 0); }; // Iteration 3: Make it robust (add validation) const calculateTotal = (items: Item[]): number => { if (!items?.length) return 0; return items.reduce((total, item) => {

Philosophy

クリエイターであり、顧客でもある

Skillora では、スキルを売る人も買う人も同じコミュニティにいます。 気に入った作者の新作やアップデートを追いかけたり、自分も出品して還元を受け取ったり。 好きなクリエイターをフォローして、発見と応援をひとつの場所で。

インストール

購入後にターミナルで実行してください。

更新情報

最終更新: 2026-03-31

正規購入者にはインストールコマンド再実行で最新版が配信されます。

継続的な価値を提供します

Skilloraのスキルはライセンス認証で保護されており、定期的にアップデートされます。スクリーンショットやコピーでは最新版を受け取れず、バグ修正や新機能の恩恵も得られません。正規購入者には常に最新バージョンが自動配信されます。

利用規約を確認 →

評価とレビュー

評価なし

まだレビューがありません。最初のレビューを書いてみましょう。

分類
⚡ ワークフロー
安全性
要確認
評価
DL
最終更新
2026-03-31
対応エージェント
Claude Code

共有する

SNS・リンクで広める

Kaizen — AIの使い方が変わるスキル

Continuous improvement, error proofing, standardization. Triggers on code quality, refactor, process improvement.

https://skillora.jp/skills/kaizen

この作者の他のスキル

このスキルに似たスキル