Add 260+ Claude Code skills from skills.sh

Complete collection of AI agent skills including:
- Frontend Development (Vue, React, Next.js, Three.js)
- Backend Development (NestJS, FastAPI, Node.js)
- Mobile Development (React Native, Expo)
- Testing (E2E, frontend, webapp)
- DevOps (GitHub Actions, CI/CD)
- Marketing (SEO, copywriting, analytics)
- Security (binary analysis, vulnerability scanning)
- And many more...

Synchronized from: https://skills.sh/

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
admin
2026-01-23 18:02:28 +00:00
Unverified
commit 07242683bf
3300 changed files with 1223105 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
#!/usr/bin/env node
/**
* Simple OAuth + Brainstorm launcher
* Usage: ./brainstorm.js "your topic here"
*/
const { oauthThenBrainstorm } = require('./oauth-then-brainstorm.js');
const topic = process.argv[2];
if (!topic) {
console.log('\n🧠 Multi-AI Brainstorm with Qwen OAuth\n');
console.log('Usage: node brainstorm.js "your topic here"\n');
console.log('Example: node brainstorm.js "I want to build a collaborative code editor"\n');
process.exit(1);
}
console.log('\n🧠 Multi-AI Brainstorm Session');
console.log('Topic: ' + topic);
console.log('Agents: All 8 specialized AI agents\n');
oauthThenBrainstorm(topic)
.then(() => {
console.log('\n✨ Brainstorming session complete!\n');
})
.catch((err) => {
console.error('\n❌ Session failed:', err.message, '\n');
process.exit(1);
});