skill-library-maintenance

Audit GitHub skill sources and propose approved adaptations into local projects.

Updated Jun 12, 2026
One-click install
npx skills add https://github.com/oleyna80/agentic-sdlc-framework --skill skill-library-maintenance-oleyna80
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: skill-library-maintenance
Source: https://github.com/oleyna80/agentic-sdlc-framework/tree/main/.opencode/skills/skill-library-maintenance
Command: npx skills add https://github.com/oleyna80/agentic-sdlc-framework --skill skill-library-maintenance-oleyna80

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Keeping locally installed AI agent skills in sync with their upstream GitHub sources is risky: upstream content is untrusted, licenses may block reuse, and blind updates can overwrite intentional local changes. This Skill provides a controlled, read-only-first lifecycle for discovering, comparing, and safely adapting external skill updates. ## Core Features & Use Cases - Read-only upstream audit: Resolve tags and branches to immutable commit SHAs, compare upstream revisions against locally pinned versions, and classify each source as unchanged, update-available, untracked, incompatible, license-blocked, or check-blocked. - Approval-gated adaptation: Require an Owner-approved Work Block naming the exact repository, SHA, destination files, license disposition, and rollback path before any content is copied or modified. - Provenance tracking: Record source URL, immutable SHA, license evidence, local delta, and decisions in a structured provenance record, with a priority source catalog (OpenAI Codex, then Anthropic Skills) and an opt-in ecosystem watchlist. - Use Case: A maintainer suspects a tracked design skill has upstream improvements. The Skill checks the pinned revision against the resolved upstream SHA, reports the diff and license status, and only adapts the update after explicit Owner approval. ## Quick Start Use skill-library-maintenance to check my tracked GitHub skill sources for updates and report which ones have newer upstream revisions.

Frequently Asked Questions about skill-library-maintenance

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check if my installed skills have upstream updates on GitHub?▼

Run a read-only comparison that resolves the upstream tag or branch to a full commit SHA and diffs it against your locally pinned revision. Each source is classified as unchanged, update-available, untracked, incompatible, license-blocked, or check-blocked.

How do I safely import a skill from GitHub into my project?▼

Fetch the approved revision into an isolated directory, review license, side effects, and conflicts with local policy, then copy only approved material after an Owner-approved Work Block. Record the immutable SHA, license evidence, and local delta in a provenance record.

Which GitHub repositories are checked first for skill updates?▼

An Owner-supplied repository always takes precedence. Otherwise the priority catalog is searched in order: first OpenAI's codex repository (.codex/skills), then Anthropic's skills repository, with other sources checked only if neither has a candidate.

Can this skill update my local skills automatically?▼

No. Discovery and comparison are strictly read-only, and an update-available result is only a proposal. Copying or adapting any external content requires an explicit Owner-approved Work Block naming the exact files, SHA, and rollback path.

What happens when a network or authentication failure occurs during a check?▼

A network or authentication failure is classified as check-blocked, never as evidence that the source is current. The failure is reported as evidence so the check can be retried rather than silently skipped.

Why must upstream revisions be recorded as full commit SHAs?▼

Branches and tags are mutable and can move after review, making provenance unreliable. Recording the full 40-character commit SHA guarantees the exact reviewed revision is traceable and reproducible for license and security audits.