project-logger

SQLite-based project documentation logger for tracking API references, components, and project progress. Use this skill when documenting code changes, adding API documentation, recording component updates, or tracking project milestones. Automatically invoked when user mentions documentation, changelog, API docs, component docs, or project updates.

16 stars

Best use case

project-logger is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

SQLite-based project documentation logger for tracking API references, components, and project progress. Use this skill when documenting code changes, adding API documentation, recording component updates, or tracking project milestones. Automatically invoked when user mentions documentation, changelog, API docs, component docs, or project updates.

Teams using project-logger should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/project-logger/SKILL.md --create-dirs "https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/main/skills/development/project-logger/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/project-logger/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How project-logger Compares

Feature / Agentproject-loggerStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

SQLite-based project documentation logger for tracking API references, components, and project progress. Use this skill when documenting code changes, adding API documentation, recording component updates, or tracking project milestones. Automatically invoked when user mentions documentation, changelog, API docs, component docs, or project updates.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Project Logger Skill

A SQLite-based documentation system for managing project documentation through Agent interactions. This replaces traditional markdown-based documentation with a structured database approach.

## Overview

This skill provides a programmatic way to manage three types of documentation:

| Type | Description | Table |
|------|-------------|-------|
| **API** | HTTP endpoints, request/response formats, status codes | `api_docs` |
| **Component** | React components, props, events, usage examples | `components` |
| **Project** | Milestones, changes, progress tracking | `projects` |

## Quick Start

### Initialize Database

```bash
python ~/skills/project-logger/scripts/logger.py init
```

### Add Documentation

```bash
# Add API documentation
python ~/skills/project-logger/scripts/logger.py add api --name "Chat API" --path "/api/chat" --method "POST" --description "AI chat endpoint"

# Add Component documentation  
python ~/skills/project-logger/scripts/logger.py add component --name "ChatPanel" --description "Main chat interface component"

# Add Project milestone
python ~/skills/project-logger/scripts/logger.py add project --title "v1.0 Release" --event "Added" --description "Initial release"
```

### Query Documentation

```bash
# List all entries
python ~/skills/project-logger/scripts/logger.py list api
python ~/skills/project-logger/scripts/logger.py list component
python ~/skills/project-logger/scripts/logger.py list project

# Search entries
python ~/skills/project-logger/scripts/logger.py search "chat"

# Get specific entry
python ~/skills/project-logger/scripts/logger.py get api --id 1
```

### Update Documentation

```bash
python ~/skills/project-logger/scripts/logger.py update api --id 1 --description "Updated description"
```

### Export to Markdown (Optional)

```bash
python ~/skills/project-logger/scripts/logger.py export --format markdown --output ./docs/
```

## Database Schema

The SQLite database is stored at `~/skills/project-logger/data/project_docs.db`

### Tables

- `api_docs` - API endpoint documentation
- `components` - React component documentation  
- `projects` - Project changelog and milestones
- `doc_tags` - Tags for categorization
- `doc_tag_relations` - Many-to-many tag relationships

## Additional Resources

For detailed information, see:

- [Database Schema](./schema.md) - Complete table definitions
- [API Reference](./api-reference.md) - Full CLI command documentation
- [Examples](./examples.md) - Usage examples and patterns
- [Templates](./templates/) - Documentation templates

## Usage Patterns

### When Adding New Features

1. Add project entry with event "Added"
2. Add component entries for new UI components
3. Add API entries for new endpoints

### When Updating Existing Features

1. Add project entry with event "Updated"
2. Update component/API entries with new details

### When Removing Features

1. Add project entry with event "Removed"
2. Mark component/API entries as deprecated

## Integration with CI/CD

The logger can be integrated into your CI/CD pipeline:

```yaml
# ~/workflows/docs.yml
- name: Generate docs
  run: python ~/skills/project-logger/scripts/logger.py export --format markdown
```

## Best Practices

1. **Always timestamp entries** - The system auto-generates timestamps
2. **Use consistent naming** - Follow naming conventions for entries
3. **Add tags for searchability** - Tag entries for easier discovery
4. **Keep descriptions concise** - Detailed info goes in specific fields
5. **Link related entries** - Reference component IDs in API docs when relevant

Related Skills

project-scaffolder

16
from diegosouzapw/awesome-omni-skill

Guide for setting up Claude Code infrastructure in new or existing projects

project-qtax

16
from diegosouzapw/awesome-omni-skill

UK taxation expert for HMRC compliance, Making Tax Digital (MTD ITSA/VAT) and Self-Assessment: explain tax treatment; compute income tax/NI/dividend/CGT with band-by-band breakdown; advise on deadlines/forms/penalties; and support MTD developer integration + tax software UX/flows. Use WebSearch (gov.uk/HMRC) to verify current rates and mandation timelines. (project)

project-overview

16
from diegosouzapw/awesome-omni-skill

Background knowledge about CaCrFeedFormula project architecture, features, and context. Automatically loaded for AI reference, not directly user-invocable.

project-orchestration

16
from diegosouzapw/awesome-omni-skill

Orchestrate multi-agent workflows for feature development using planning agents, context handoff, and stage management

project-object

16
from diegosouzapw/awesome-omni-skill

Session memory that compounds - remember decisions, patterns, and corrections across AI coding sessions. Includes standards injection for consistent code quality.

project-mngt

16
from diegosouzapw/awesome-omni-skill

Product Owner / Project Manager skill for MVP/MMP/MMR implementation planning

project-init

16
from diegosouzapw/awesome-omni-skill

Automatically detects new project initialization, collaborates with user on project planning, and sets up the appropriate tech stack with matching skills and agents. Use when starting a new project, creating a new repository, or working in an empty/minimal directory that needs project structure.

project-index

16
from diegosouzapw/awesome-omni-skill

Use this skill for large project maintenance with layered CLAUDE.md index system. Triggers when users need to (1) analyze and document existing codebases, (2) generate hierarchical CLAUDE.md files for modules, (3) set up incremental update hooks after code changes, or (4) navigate large projects efficiently. Supports legacy project onboarding and automatic context management.

project-guidelines-example

16
from diegosouzapw/awesome-omni-skill

Example project-specific skill template based on a real production application.

project-development

16
from diegosouzapw/awesome-omni-skill

This skill should be used when the user asks to "start an LLM project", "design batch pipeline", "evaluate task-model fit", "structure agent project", or mentions pipeline architecture, agent-assisted development, cost estimation, or choosing between LLM and traditional approaches.

project-context-discovery

16
from diegosouzapw/awesome-omni-skill

Discover project structure, package managers, test frameworks, and automation without hardcoded assumptions

project-claude-initializer

16
from diegosouzapw/awesome-omni-skill

為新專案初始化 Claude Code 配置,建立標準化的 .claude 目錄、CLAUDE.md 和 gitignore。當使用者說「初始化 Claude 配置」、「設定專案 Claude」時使用。