LaunchKit · 2026
Back to Skills

skilldevelop

Captures learnings, errors, and corrections to enable continuous improvement.

0
0 downloads
by @raghuraam25

Setup & Installation

openclaw skills install @raghuraam25/skilldevelop

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install skilldevelop

What This Skill Does

Logs errors, corrections, and feature requests to local markdown files during AI agent sessions. Entries use structured fields for priority, area, and status, and can be promoted to permanent project files like CLAUDE.md or AGENTS.md. Hook scripts enable automatic logging when commands fail or prompts are submitted.

Persistent structured logging lets agents avoid repeating the same mistakes across sessions, unlike in-context memory that resets each time.

When to use it

  • Logging a bash command failure mid-task for later review
  • Recording a correction when the agent used the wrong package manager
  • Capturing a feature request the agent cannot fulfill yet
  • Promoting a recurring best practice into the project's CLAUDE.md
  • Reviewing past errors before starting a database migration

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User says: 'Actually, this project uses pnpm, not npm'

AGENT
  1. 1Detect correction trigger from user message
  2. 2Append entry to .learnings/LEARNINGS.md with category 'correction' and area 'config'
  3. 3Search existing entries for related package manager issues with grep
  4. 4Distill the correction into a concise rule and add it to CLAUDE.md under Build & Dependencies
OUTPUT

Learning entry logged with a generated ID and status 'pending', correction promoted to CLAUDE.md