๐ŸŽฏ

update-lib-docs

๐ŸŽฏSkill

from del-taiseiozaki/claude-code-orchestra

VibeIndex|
What it does

Automatically updates library documentation in .claude/docs/libraries/ by searching web for latest version, features, and changes.

๐Ÿ“ฆ

Part of

del-taiseiozaki/claude-code-orchestra(13 items)

update-lib-docs

Installation

git cloneClone repository
git clone --depth 1 https://github.com/DeL-TaiseiOzaki/claude-code-orchestra.git .starter && cp -r .starter/.claude .starter/.codex .starter/.gemini .starter/CLAUDE.md . && rm -rf .starter && claude
npm installInstall npm package
npm install -g @anthropic-ai/claude-code
npm installInstall npm package
npm install -g @openai/codex
npm installInstall npm package
npm install -g @google/gemini-cli
uv runRun with uv
uv run pytest -v

+ 1 more commands

๐Ÿ“– Extracted from docs: del-taiseiozaki/claude-code-orchestra
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Update library documentation in .claude/docs/libraries/ with latest information from web search.

Overview

# Update Library Documentation

Update documentation in .claude/docs/libraries/ with latest information.

Steps

1. Check Existing Documents

List current library documentation:

```bash

ls .claude/docs/libraries/

```

2. Web Search for Latest Info

For each documented library, search for:

  • Latest version
  • Breaking changes
  • Deprecated features
  • New features
  • Security updates

3. Update Documents

For each library with changes:

  1. Update version information
  2. Add new features/constraints
  3. Mark deprecated APIs
  4. Update code examples if needed
  5. Record update date at the top

4. Check Impact on Code

After updating docs, verify:

  • Using any deprecated APIs?
  • Any breaking change impacts?
  • Need to update project dependencies?

Key Items to Check

| Category | What to Look For |

|----------|------------------|

| Security | CVEs, security patches |

| Breaking | API changes, removed features |

| Deprecated | APIs marked for removal |

| Performance | Optimization improvements |

| New Features | Useful additions |

Update Format

Add update notice at top of file:

```markdown

# {Library Name}

> Last Updated: {Date}

> Version Checked: {version}

Recent Changes

  • {Change 1}
  • {Change 2}

---

{Rest of documentation}

```

Report

After updating, report to user (in Japanese):

  • Which libraries were updated
  • Significant changes found
  • Any action items for the project

More from this repository10

๐ŸŽฏ
startproject๐ŸŽฏSkill

Kickstart new software projects with multi-agent collaboration, guiding requirements, design review, and quality assurance across research, planning, and implementation phases.

๐ŸŽฏ
design-tracker๐ŸŽฏSkill

Proactively tracks and documents project design decisions, automatically recording architecture discussions, implementation choices, and technical decisions in a structured design log.

๐ŸŽฏ
research-lib๐ŸŽฏSkill

I apologize, but I cannot generate a description without seeing the actual content or context of the "research-lib" skill. Could you provide more details about what this specific skill does in the ...

๐ŸŽฏ
init๐ŸŽฏSkill

Initializes project configuration by analyzing tech stack, generating project overview, and updating AGENTS.md with detected settings and commands.

๐ŸŽฏ
tdd๐ŸŽฏSkill

I apologize, but I cannot generate a description without seeing the actual content or context of the "tdd" skill in the repository. Could you provide more details about what the skill does, its pur...

๐ŸŽฏ
simplify๐ŸŽฏSkill

Simplifies complex code by breaking it down into more readable, modular, and understandable components.

๐ŸŽฏ
gemini-system๐ŸŽฏSkill

Proactively researches and analyzes complex topics using Gemini's 1M token context, multimodal capabilities, and Google Search integration.

๐ŸŽฏ
plan๐ŸŽฏSkill

Generates a comprehensive, step-by-step implementation plan for software features, breaking down requirements, steps, and potential risks.

๐ŸŽฏ
update-design๐ŸŽฏSkill

Explicitly updates the project's DESIGN.md with key decisions and implementation details from the current conversation.

๐ŸŽฏ
context-loader๐ŸŽฏSkill

Loads and manages project-specific context and configuration details for Claude Code agents, enabling efficient context preservation and task delegation across different project environments.