升级 dbskill 到最新版本,显示更新内容。
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versiondbskill-upgradeExecute the skills CLI command in your project's root directory to begin installation:
Fetches dbskill-upgrade from dontbesilent2025/dbskill and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate dbskill-upgrade. Access via /dbskill-upgrade in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
2.3K
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
2.3K
stars
升级 dbskill 到最新版本,显示更新内容。
/dbskill-upgrade 升级if [ -d "$HOME/.claude/skills/dbs" ]; then
INSTALL_DIR="$HOME/.claude/skills"
echo "Install location: $INSTALL_DIR"
else
echo "ERROR: dbskill not found in ~/.claude/skills/"
exit 1
fi
OLD_VERSION=$(cat "$HOME/.claude/skills/dbskill-upgrade/../../VERSION" 2>/dev/null || echo "unknown")
echo "Current version: $OLD_VERSION"
REMOTE_VERSION=$(curl -sL https://raw.githubusercontent.com/dontbesilent2025/dbskill/main/VERSION || echo "")
if [ -z "$REMOTE_VERSION" ]; then
echo "ERROR: Cannot fetch remote version"
exit 1
fi
echo "Remote version: $REMOTE_VERSION"
如果 OLD_VERSION 等于 REMOTE_VERSION,告诉用户已是最新版本,结束。
否则继续升级。
BACKUP_DIR="$HOME/.claude/skills/.dbskill-backup-$(date +%Y%m%d-%H%M%S)"
mkdir -p "$BACKUP_DIR"
cp -r "$HOME/.claude/skills"/dbs* "$BACKUP_DIR/" 2>/dev/null || true
echo "Backup created: $BACKUP_DIR"
TMP_DIR=$(mktemp -d)
git clone --depth 1 https://github.com/dontbesilent2025/dbskill.git "$TMP_DIR/dbskill"
if [ $? -ne 0 ]; then
echo "ERROR: Failed to clone repository"
exit 1
fi
echo "Downloaded to: $TMP_DIR/dbskill"
rm -rf "$HOME/.claude/skills"/dbs*
cp -r "$TMP_DIR/dbskill/skills"/dbs* "$HOME/.claude/skills/"
rm -rf "$TMP_DIR"
echo "Upgrade completed"
如果复制失败,从备份恢复:
if [ $? -ne 0 ]; then
echo "ERROR: Upgrade failed, restoring from backup..."
rm -rf "$HOME/.claude/skills"/dbs*
cp -r "$BACKUP_DIR"/* "$HOME/.claude/skills/"
echo "Restored from backup"
exit 1
fi
读取 $HOME/.claude/skills/dbs/../../README.md(如果存在),提取从 OLD_VERSION 到 REMOTE_VERSION 之间的更新内容。
格式:
dbskill v{REMOTE_VERSION} — 从 v{OLD_VERSION} 升级成功!
更新内容:
- [从 README 提取的更新要点]
升级完成!
询问用户是否删除备份:
echo "Backup location: $BACKUP_DIR"
echo "Keep backup? (will be auto-deleted in 7 days if not used)"
不强制删除,让用户自己决定。
~/.claude/skills/ 安装的版本Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
dbskill-upgrade fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
dbskill-upgrade has been reliable in day-to-day use. Documentation quality is above average for community skills.
Registry listing for dbskill-upgrade matched our evaluation — installs cleanly and behaves as described in the markdown.
dbskill-upgrade fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
dbskill-upgrade is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Useful defaults in dbskill-upgrade — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
dbskill-upgrade is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
I recommend dbskill-upgrade for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Keeps context tight: dbskill-upgrade is the kind of skill you can hand to a new teammate without a long onboarding doc.
Keeps context tight: dbskill-upgrade is the kind of skill you can hand to a new teammate without a long onboarding doc.
showing 1-10 of 50