project-logger — community project-logger, skillOS, community, ide skills

v1.0.0

About this Skill

Ideal for AI Agents like Claude, AutoGPT, and LangChain needing structured project logging and progress tracking. Manages project progress tracking and maintains a chronological log of completed tasks, decisions, and updates. Use when completing milestones, making architectural decisions, or documenting project e

dudusoar dudusoar
[0]
[0]
Updated: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
7/11
Quality Score
48
Canonical Locale
en
Detected Body Locale
en

Ideal for AI Agents like Claude, AutoGPT, and LangChain needing structured project logging and progress tracking. Manages project progress tracking and maintains a chronological log of completed tasks, decisions, and updates. Use when completing milestones, making architectural decisions, or documenting project e

Core Value

Empowers agents to maintain a comprehensive project log, utilizing timestamped entries in LOG.md files to track progress, decisions, and updates, while reading CLAUDE.md for project context.

Ideal Agent Persona

Ideal for AI Agents like Claude, AutoGPT, and LangChain needing structured project logging and progress tracking.

Capabilities Granted for project-logger

Documenting significant task completions and milestones
Logging important architectural or technical decisions
Recording issue resolutions and new feature additions

! Prerequisites & Limits

  • Requires access to CLAUDE.md for project context
  • Limited to logging in LOG.md file format

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is project-logger?

Ideal for AI Agents like Claude, AutoGPT, and LangChain needing structured project logging and progress tracking. Manages project progress tracking and maintains a chronological log of completed tasks, decisions, and updates. Use when completing milestones, making architectural decisions, or documenting project e

How do I install project-logger?

Run the command: npx killer-skills add dudusoar/skillOS/project-logger. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for project-logger?

Key use cases include: Documenting significant task completions and milestones, Logging important architectural or technical decisions, Recording issue resolutions and new feature additions.

Which IDEs are compatible with project-logger?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for project-logger?

Requires access to CLAUDE.md for project context. Limited to logging in LOG.md file format.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add dudusoar/skillOS/project-logger. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use project-logger immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

project-logger

Install project-logger, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Project Logger

Overview

This skill maintains a structured project log (LOG.md) that tracks progress, completed tasks, decisions, and important updates. It reads CLAUDE.md to understand project context and creates timestamped entries documenting the project's evolution.

When to Use This Skill

Use this skill when:

  • Completing a significant task or milestone
  • Making important architectural or technical decisions
  • Encountering and resolving issues
  • Adding new features or capabilities
  • Updating project dependencies or configuration
  • Need to review project history

Workflow

Step 1: Locate CLAUDE.md

Find and read the project's CLAUDE.md file to understand:

  • Project name and goals
  • Current phase and milestones
  • Technical architecture
  • Known issues

Default location: ./.claude/CLAUDE.md

Step 2: Determine Log Entry Type

Identify what type of entry to create:

Task Completion:

  • Feature implemented
  • Bug fixed
  • Refactoring completed
  • Tests added

Decision:

  • Architectural choice made
  • Technology/library selected
  • Design pattern adopted
  • Convention established

Update:

  • Dependency upgraded
  • Configuration changed
  • Documentation updated
  • Milestone reached

Issue:

  • Problem encountered
  • Workaround applied
  • Known limitation documented

Step 3: Create or Update LOG.md

Check if LOG.md exists in .claude/ directory:

If LOG.md doesn't exist:

  • Create it using the template in references/log_template.md
  • Add project header with name from CLAUDE.md
  • Create first entry

If LOG.md exists:

  • Read existing content
  • Add new entry at the top (reverse chronological order)
  • Preserve existing entries

Step 4: Format Log Entry

Each entry should include:

markdown
1## YYYY-MM-DD HH:MM 2 3### [TYPE] Title 4 5**Context:** Brief explanation of why this happened 6 7**What Changed:** 8- Specific change 1 9- Specific change 2 10- Specific change 3 11 12**Impact:** 13- How this affects the project 14- Any breaking changes 15- Follow-up actions needed 16 17**Related:** 18- Links to commits, PRs, or issues (if applicable) 19- References to relevant files or documentation

Entry Types:

  • [FEAT] - New feature
  • [FIX] - Bug fix
  • [DECISION] - Architectural/technical decision
  • [REFACTOR] - Code refactoring
  • [DOCS] - Documentation update
  • [DEPS] - Dependency update
  • [CONFIG] - Configuration change
  • [MILESTONE] - Milestone reached
  • [ISSUE] - Problem or limitation

Step 5: Add Entry Example

Good entry:

markdown
1## 2025-12-30 15:30 2 3### [FEAT] Added skill-analyzer meta-skill 4 5**Context:** Need automated skill selection when starting projects. Manual skill 6discovery is time-consuming and error-prone. 7 8**What Changed:** 9- Created skill-analyzer meta-skill in `.claude/skills/` 10- Implemented workflow to scan SkillOS library 11- Added skill matching heuristics based on project context 12- Updates CLAUDE.md sections 5 (Available Skills) and 6 (Missing Skills) 13 14**Impact:** 15- Automates skill selection for new projects 16- Identifies gaps requiring project-specific skills 17- Completes the project setup workflow (works with project-context-generator) 18 19**Related:** 20- Commit: b27c2ea 21- Files: `.claude/skills/skill-analyzer/SKILL.md`

Avoid vague entries:

markdown
1## 2025-12-30 2 3Updated some files.

Step 6: Update Maintenance Notes in CLAUDE.md

After logging, optionally update the "Maintenance Notes" section in CLAUDE.md:

  • Update "Last Updated" date
  • Add entry to "Recent Changes"
  • Update "Known Issues" if relevant

Log Organization

Reverse Chronological Order

Most recent entries appear first:

markdown
1# Project Log: SkillOS 2 3## 2025-12-30 16:00 4[Most recent] 5 6## 2025-12-30 14:00 7 8## 2025-12-29 10:00 9[Oldest at bottom]

Grouping by Date

For multiple entries on the same day, use subheadings:

markdown
1## 2025-12-30 2 3### 16:00 - [FEAT] Added feature X 4... 5 6### 14:00 - [FIX] Fixed bug Y 7...

Best Practices

Be Specific

  • Include file paths, function names, or specific components
  • Mention exact version numbers for dependencies
  • Reference commits, PRs, or issues

Explain "Why"

  • Document the rationale behind decisions
  • Explain trade-offs considered
  • Note what alternatives were rejected

Track Impact

  • Note what breaks (breaking changes)
  • Identify follow-up work needed
  • Update known issues

Regular Updates

  • Log after completing significant work
  • Don't batch too many changes into one entry
  • Update while details are fresh

Example LOG.md Structure

See references/log_template.md for the complete template and examples.

Resources

references/log_template.md

Template for creating LOG.md files with:

  • Header structure
  • Entry format examples
  • Best practices
  • Sample entries for different types

Related Skills

Looking for an alternative to project-logger or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer