Back to Skills

Logging Implementation

camoneart
Updated 2 days ago
48 views
2
2
View on GitHub
Metageneral

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.

Quick Install

Claude Code

Recommended
Plugin CommandRecommended
/plugin add https://github.com/camoneart/claude-code
Git CloneAlternative
git clone https://github.com/camoneart/claude-code.git ~/.claude/skills/Logging Implementation

Copy and paste this command in Claude Code to install this skill

Documentation

Logging Implementation

プロジェクト全体で一貫した実装ログ管理を行うスキル。

いつ使うか

  • プロジェクトでの実装作業開始時
  • 実装が完了した時
  • 過去の実装履歴を参照する必要がある時
  • ユーザーが「実装ログ」について言及した時

プロジェクト起動時の処理

  1. _docs/templates/ が存在するか確認
  2. 存在しない場合は _docs/templates/ を作成
  3. _docs/ 配下を全てコンテキストとして読み込み
  4. 前回の設計意図や副作用を踏まえた上で提案

実装完了時の処理

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)

GitHub Repository

camoneart/claude-code
Path: skills/logging-implementation

Related Skills

subagent-driven-development

Development

This 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.

View skill

algorithmic-art

Meta

This 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.

View skill

executing-plans

Design

Use the executing-plans skill when you have a complete implementation plan to execute in controlled batches with review checkpoints. It loads and critically reviews the plan, then executes tasks in small batches (default 3 tasks) while reporting progress between each batch for architect review. This ensures systematic implementation with built-in quality control checkpoints.

View skill

cost-optimization

Other

This 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.

View skill