Claude-skill-registry how_to_guide_database
Imported skill how_to_guide_database from openai
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/how-to-guide-bitwikiorg-skills-md" ~/.claude/skills/majiayu000-claude-skill-registry-how-to-guide-database && rm -rf "$T"
manifest:
skills/data/how-to-guide-bitwikiorg-skills-md/SKILL.mdsource content
How-To Guide Database
Purpose: Procedural documentation for common tasks.
Schema
| Property | Type | Options | Purpose |
|---|---|---|---|
| Title | title | - | "How to [Task]" |
| Complexity | select | Beginner, Intermediate, Advanced | Skill level required |
| Time Required | number | - | Estimated minutes to complete |
| Prerequisites | relation | Links to other guides | Required knowledge |
| Category | select | Development, Deployment, Testing, Tools | Task category |
| Last Tested | date | - | When procedure was verified |
| Tags | multi_select | - | Technology/tool tags |
Usage
Create how-to guides with properties: { "Title": "How to Set Up Local Development Environment", "Complexity": "Beginner", "Time Required": 30, "Category": "Development", "Last Tested": "2025-10-01", "Tags": "setup, environment, docker" }
Best Practices
- Use consistent naming: Always start with "How to..."
- Test procedures: Verify steps work before publishing
- Include time estimates: Help users plan their time
- Link prerequisites: Make dependencies clear
- Update regularly: Re-test procedures when tools/systems change