Skip to content

Commit 0b5b461

Browse files
committed
chore: remove fake seed configs, add openclaw one-click install
Delete 20 seed configs with fabricated install counts. Add OpenClaw AI assistant gateway config with real packages.
1 parent cde5a90 commit 0b5b461

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
-- Remove all seed configs with fake install counts (real downloads = 0)
2+
DELETE FROM configs WHERE id IN (
3+
'ob-seed-react-frontend',
4+
'ob-seed-vue-frontend',
5+
'ob-seed-go-backend',
6+
'ob-seed-python-backend',
7+
'ob-seed-nodejs-backend',
8+
'ob-seed-java-spring',
9+
'ob-seed-rust-backend',
10+
'ob-seed-rails-backend',
11+
'ob-seed-t3-fullstack',
12+
'ob-seed-ios-developer',
13+
'ob-seed-android-dev',
14+
'ob-seed-devops-sre',
15+
'ob-seed-platform-eng',
16+
'ob-seed-data-science',
17+
'ob-seed-security-eng',
18+
'ob-seed-unity-gamedev',
19+
'ob-seed-web3-dev',
20+
'ob-seed-design-dev',
21+
'ob-seed-starter-kit',
22+
'ob-seed-tech-writer'
23+
);
24+
25+
-- Add OpenClaw one-click install config
26+
INSERT INTO configs (id, user_id, slug, name, description, base_preset, packages, custom_script, visibility, alias, dotfiles_repo, install_count, featured)
27+
VALUES (
28+
'ob-seed-openclaw',
29+
'google_102596069106824335469',
30+
'openclaw',
31+
'OpenClaw — AI Assistant',
32+
'One-click setup for OpenClaw (ClawdBot) — a personal AI assistant gateway that connects Claude, GPT, Gemini and more to Telegram, Discord, WhatsApp, Slack, WeChat, and iMessage.',
33+
'minimal',
34+
'[{"name":"node","type":"formula","desc":"JavaScript runtime (v22 recommended)"},{"name":"git","type":"formula","desc":"Version control"},{"name":"curl","type":"formula","desc":"HTTP transfer tool"},{"name":"wget","type":"formula","desc":"File downloader"},{"name":"jq","type":"formula","desc":"JSON processor"},{"name":"openclaw","type":"npm","desc":"Personal AI assistant gateway"}]',
35+
'',
36+
'public',
37+
'openclaw',
38+
'',
39+
0,
40+
1
41+
);

0 commit comments

Comments
 (0)