SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/duclm1x1/Dive-Ai --skill publisher명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Persistent memory system for AI agents following Model Context Protocol (MCP). Use for storing long-term memories across sessions, semantic search of past knowledge, building knowledge graphs, auto-injecting context, deduplicating memories, syncing to cloud storage. Essential for agents that need to remember decisions, solutions, preferences, and learned patterns over time.
Persistent memory system for AI agents following Model Context Protocol (MCP). Use for storing long-term memories across sessions, semantic search of past knowledge, building knowledge graphs, auto-injecting context, deduplicating memories, syncing to cloud storage. Essential for agents that need to remember decisions, solutions, preferences, and learned patterns over time.
Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs, reviewing API specifications, or establishing API design standards.
| name | publisher |
| description | Make your skills easy to understand and impossible to ignore |
Professional documentation and publishing for Clawdbot skills
Generate adoption-optimized READMEs and publish to GitHub + ClawdHub with one command.
jq (for JSON parsing)gh CLI (GitHub operations)clawdhub CLI (publishing)Automates the complete publishing workflow:
clawdhub install skill-publisher
cd ~/clawd/skills/your-skill
skill-publisher
The script will:
The tool generates options using three proven patterns:
Keep [thing] [desired state] [timeframe]
Example: "Keep your Claude access token fresh 24/7"
[Do thing] without [pain point]
Example: "Build cross-device tools without hardcoding paths"
Automatically [action] [thing] [when]
Example: "Automatically refresh tokens before they expire"
Follows the framework from GitHub's documentation best practices:
Analyzes your SKILL.md description and generates 3 options:
Shows you all 3, lets you choose or write custom.
Uses the template from ~/clawd/templates/README-template.md:
gh CLI (guides setup if missing)gh repo create)clawdhub publishyour-skill/
├── SKILL.md # Required: skill description
├── VERSION # Required: version number (e.g., "1.0.0")
├── scripts/ # Optional: your scripts
│ └── main.sh
├── README.md # Generated by this tool
└── .gitignore # Optional
No configuration needed. The tool auto-detects everything from:
SKILL.md (name, description, requirements)VERSION (version number)scripts/ (code examples, dependencies)Install GitHub CLI:
brew install gh
gh auth login
Create a minimal SKILL.md:
---
name: your-skill
description: Brief description of what it does
---
# your-skill
More details about your skill here.
Create a VERSION file:
echo "1.0.0" > VERSION
~/clawd/templates/README-template.mdMIT