用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/duclm1x1/Dive-Ai --skill publisher命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
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.
正在显示 SKILL.md
基于 SOC 职业分类
| 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