Logging Implementation
About
This Claude Skill manages implementation logs by creating and maintaining standardized Markdown files in the `_docs/templates/` directory. It automatically generates logs with consistent formatting when starting projects, completing implementations, or when users mention implementation logs. Key features include timestamp handling, kebab-case file naming, and structured templates covering design intent and side effects.
Documentation
Logging Implementation
プロジェクト全体で一貫した実装ログ管理を行うスキル。
いつ使うか
- プロジェクトでの実装作業開始時
- 実装が完了した時
- 過去の実装履歴を参照する必要がある時
- ユーザーが「実装ログ」について言及した時
プロジェクト起動時の処理
_docs/templates/が存在するか確認- 存在しない場合は
_docs/templates/を作成 _docs/配下を全てコンテキストとして読み込み- 前回の設計意図や副作用を踏まえた上で提案
実装完了時の処理
1. 日時取得
- TIME MCP Server を優先
- 利用不可の場合は
nowエイリアス(date "+%Y-%m-%d %H:%M:%S") - エイリアス未設定の場合は
.zshrc等に追加提案
2. ログファイル作成
- ファイル名形式:
yyyy-mm-dd_機能名.md - 命名規則: 複数単語の場合はケバブケース(例:
2025-10-19_product-name.md) - 保存先:
_docs/templates/
3. ログテンプレート
機能名: <ここに機能名>
- 日付: yyyy-mm-dd HH:MM:SS
- 概要: <実装の目的・背景>
- 実装内容: <主な実装内容>
- 設計意図: <なぜこの設計にしたのか>
- 副作用: <懸念事項があれば明記>
- 関連ファイル: <ファイルの場所>
必須項目
実装ログには以下を必ず含めること:
- 実装の目的・背景
- 主な実装内容
- 設計意図
- 副作用
- 関連ファイル
重要な注意事項
- 実装ログは必ず必ず必ず残すこと
- 過去の実装ログを参照し、矛盾や重複を避けること
- 日時を正確に取得し、西暦-日付-時間で必ず記載すること(例:日付: 2100-01-01 11:11:11)
Quick Install
/plugin add https://github.com/camoneart/claude-code/tree/main/logging-implementationCopy and paste this command in Claude Code to install this skill
GitHub 仓库
Related Skills
subagent-driven-development
DevelopmentThis skill executes implementation plans by dispatching a fresh subagent for each independent task, with code review between tasks. It enables fast iteration while maintaining quality gates through this review process. Use it when working on mostly independent tasks within the same session to ensure continuous progress with built-in quality checks.
algorithmic-art
MetaThis Claude Skill creates original algorithmic art using p5.js with seeded randomness and interactive parameters. It generates .md files for algorithmic philosophies, plus .html and .js files for interactive generative art implementations. Use it when developers need to create flow fields, particle systems, or other computational art while avoiding copyright issues.
cost-optimization
OtherThis Claude Skill helps developers optimize cloud costs through resource rightsizing, tagging strategies, and spending analysis. It provides a framework for reducing cloud expenses and implementing cost governance across AWS, Azure, and GCP. Use it when you need to analyze infrastructure costs, right-size resources, or meet budget constraints.
Git Commit Helper
MetaThis Claude Skill generates descriptive commit messages by analyzing git diffs. It automatically follows conventional commit format with proper types like feat, fix, and docs. Use it when you need help writing commit messages or reviewing staged changes in your repository.
