Install
openclaw skills install @rmbell09-lang/lucky-collaborative-researchLucky (internet) + Jinx (analysis) collaborative research workflow. Lucky gathers raw data from web sources, Jinx analyzes and structures findings. Use for market research, competitive analysis, marketplace intelligence, API documentation review, trend analysis, pricing research, or any research requiring both web access and deep analysis. Includes market research templates for competitor/product analysis.
openclaw skills install @rmbell09-lang/lucky-collaborative-researchCore Principle: Divide research into Lucky (data gathering) + Jinx (analysis) for maximum efficiency and parallel processing.
✅ Perfect for:
❌ Not suitable for:
Time: 30-60% of total project time
Focus: Speed and coverage, not precision
Set up data directory structure
mkdir -p /workspace/research/raw-data/YYYY-MM-DD-project
Use Puppeteer for systematic data collection
{ html: document.body.innerHTML, text: document.body.innerText }Save structured files for Jinx
METADATA:
URL: [source_url]
TIMESTAMP: [iso_timestamp]
QUERY: [search_query]
RAW TEXT:
[page_text_content]
RAW HTML:
[full_html_content]
Transfer to Mac Mini SSD
scp -i ~/.ssh/lucky_to_mac file.html luckyai@100.90.7.148:~/temp/
ssh -i ~/.ssh/lucky_to_mac luckyai@100.90.7.148 "mv ~/temp/* '/Volumes/Crucial X10/research/raw-data/project/'"
Time: 20-40% of total project time
Focus: Pattern extraction and structured output
Task Assignment Validation
Send structured analysis tasks to Jinx
curl -X POST http://localhost:3001/task -H 'Content-Type: application/json' -d '{
"prompt": "Analyze files in /Volumes/Crucial X10/research/raw-data/project/. Extract: [specific_data_points]. Output structured JSON with [required_format]. Provide analysis summary with [specific_insights].",
"priority": "high"
}'
Key prompting strategies for Jinx:
Time: 10-20% of total project time
Focus: Synthesis and actionable insights
Collect Jinx results
curl -s http://localhost:3001/results/[task-id]
Compile comprehensive report
Document process learnings
| Research Scope | Lucky Time | Jinx Time | Total Effective |
|---|---|---|---|
| Small (3-5 sources) | 20 min | 15 min | 25 min |
| Medium (5-10 sources) | 40 min | 20 min | 45 min |
| Large (10+ sources) | 60 min | 30 min | 70 min |
Effective time = max(Lucky, Jinx) due to parallelization
<script> tags before sending to JinxFor marketplace/competitor analysis specifically, use this structured approach:
For each competitor/product found:
## Competitor: [Name]
- Product: [Title]
- Price: $[Amount]
- Bundle Size: [X items]
- Format: [Canva/PSD/AI/etc]
- Sales Indicators: [Reviews/ratings/badges]
- Key Features: [List]
- Customer Complaints: [Common issues from reviews]
- Opportunities: [What they're missing]
Track and improve:
This skill creates a scalable, repeatable process for any research requiring both web access and deep analysis.