用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/oyi77/1ai-skills --skill lynk命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Android and mobile application security testing — emulators, rooting, traffic interception, dynamic instrumentation. Use when testing mobile apps for vulnerabilities, reversing APKs, or bypassing security controls on Android.
Self-reflection + Self-criticism + Auto-learning from corrections + Self-organizing memory. Agent evaluates its own work, catches mistakes, and improves permanently. Use when working with self improving.
Plan and execute a comprehensive red team engagement covering reconnaissance through post-exploitation using MITRE ATT&CK-aligned TTPs to evaluate an organization's detection and response capabilities. Use when working with conducting full scope red team engagement.
基于 SOC 职业分类
正在显示 SKILL.md
| name | lynk |
| description | LYNK - Complete Affiliate Link Management with Browser Automation. Use when relevant to this domain. |
| domain | marketing |
| author | oyi77 |
| license | Apache-2.0 |
| subdomain | marketing |
| tags | ["growth","lynk","marketing","seo"] |
| version | 1.0.0 |
Trigger phrases:
Use cases:
When NOT to use:
Comprehensive LYNK skill with full browser automation capabilities
LYNK is an Indonesian digital platform for creators to:
Base URL: https://lynk.id/
Email: ketananna@yahoo.com
Password: 1Milyarberkah$
Note: The public-facing profile is likely @jendralbot while the admin dashboard is @dashboard
Use when you need to:
python3 ~/.openclaw/workspace/skills/lynk/lynk.py track
~/.openclaw/workspace/skills/lynk/config.json
Products:
python3 ~/.openclaw/workspace/skills/lynk/lynk.py report [today|week|month]
python3 ~/.openclaw/workspace/skills/lynk/lynk_automation.py
Critical Finding: When access on 2026-03-10, the dashboard showed:
Implication:
Observed Flow:
Key URLs:
From homepage analysis:
File: ~/.openclaw/workspace/skills/lynk/config.json
{
"lynk_url": "https://lynk.id/jendralbot",
"products": {
"Product Name": {
"link": "https://lynk.id/jendralbot/product-link",
"price": 49000
}
}
}
# Edit config.json manually
nano ~/.openclaw/workspace/skills/lynk/config.json
# Or update via Python script (requires development)
Basic usage with default configuration:
python lynk.py --input data.csv --output results/
Advanced usage with all options:
python lynk.py --input data.csv --output results/ --format json --verbose
Use this skill as part of a larger pipeline by calling it from your automation workflow.
python lynk.py --input data.csv --output results/
python lynk.py --input data.csv --output results/ --format json --verbose
Use this skill as part of a larger pipeline by calling it from your automation workflow.
$ python3 ~/.openclaw/workspace/skills/lynk/lynk.py track
📊 LYNK REVENUE TRACKER
Opening: https://lynk.id/jendralbot
AI Content Pro
────────────────────────────────────
Clicks (from LYNK dashboard): 150
Sales (from LYNK dashboard): 5
Price: Rp 89,000
Revenue: Rp 445,000
✅ Saved to: data/lynk_2026-03-06.json
$ python3 ~/.openclaw/workspace/skills/lynk/lynk.py report today
📊 LYNK REVENUE REPORT - Tuesday, 10 March 2026
💰 Total Revenue: Rp 0
👆 Total Clicks: 0
🛍️ Total Sales: 0
📊 Conversion: 0.0%
⚠️ WARNING: No revenue tracked yet
$ python3 ~/.openclaw/workspace/skills/lynk/lynk.py report week
📊 LYNK WEEKLY REPORT - March 4-10, 2026
Total Revenue: Rp 897,000
Avg Daily: Rp 128,142
Best Day: Wednesday - Rp 445,000
$ python3 ~/.openclaw/workspace/skills/lynk/lynk.py analyze
🔥 TOP PERFORMING PRODUCTS:
1. AI Content Pro: Rp 445,000 (50%)
2. Mesin Cetak Kuliner: Rp 225,000 (25%)
3. Starter AI Content: Rp 150,000 (17%)
File: lynk_automation.py
What's Implemented:
What's Needed:
Step 1: Map Login Form Elements
# Open login page
browser open https://lynk.id/login
# Take snapshot
browser snapshot {targetId}
# Find refs:
# - Email textbox: ref=e11 (confirmed from session)
# - Password textbox: ref=e18 (confirmed from session)
# - Sign In button: ref=e22 (confirmed from session)
Step 2: Implement Login Automation
# Use act action with kind=click and ref
browser act {targetId} kind=click ref=e11
# Type email
browser act {targetId} kind=type text=ketananna@yahoo.com
browser act {targetId} kind=click ref=e18
# Type password
browser act {targetId} kind=type text=1Milyarberkah$
browser act {targetId} kind=click ref=e22
Step 3: Navigate & Extract Dashboard
# Navigate after login
browser navigate {targetId} https://lynk.id/admin/my-lynks/home
# Take snapshot
browser snapshot {targetId}
# Parse for metrics using regex or BeautifulSoup
Step 4: Save & Report
# Save to JSON
save_data(metrics, timestamp)
# Generate human-readable report
generate_report(metrics)
~/.openclaw/workspace/skills/lynk/
├── config.json # Product configuration
├── lynk.py # Main CLI tool
├── lynk_automation.py # Browser automation (WIP)
├── SKILL.md # This file
├── data/
│ ├── lynk_2026-03-06.json # Daily data
│ ├── lynk_2026-03-07.json
│ └── lynk_latest.json # Latest snapshot
├── reports/
│ ├── report_2026-03-06.txt # Human-readable reports
│ └── report_2026-03-07.txt
└── logs/
└── lynk.log # Activity logs
{
"date": "2026-03-10",
"timestamp": "2026-03-10T00:55:00",
"products": {
"AI Content Pro": {
"clicks": 150,
"sales": 5,
"revenue": 445000,
"conversion_rate": 3.33
}
},
"metrics": {
"total_clicks": 350,
"total_sales": 15,
"total_revenue": 897000,
"overall_conversion": 4.29
}
}
Conservative Estimate (100 posts/month):
Optimistic Estimate (Viral Content):
Critical Action Required:
content-creator)analytics-dashboard)tiktok-automation for IG)Possible Causes:
Solutions:
Check:
Check:
# Track today's performance
python3 ~/.openclaw/workspace/skills/lynk/lynk.py track
# Generate reports
python3 ~/.openclaw/workspace/skills/lynk/lynk.py report today
python3 ~/.openclaw/workspace/skills/lynk/lynk.py report week
python3 ~/.openclaw/workspace/skills/lynk/lynk.py report month
# Analyze performance
python3 ~/.openclaw/workspace/skills/lynk/lynk.py analyze
# Open dashboard
python3 ~/.openclaw/workspace/skills/lynk/lynk.py dashboard
# Automation (WIP)
python3 ~/.openclaw/workspace/skills/lynk/lynk_automation.py
~/.openclaw/workspace/skills/lynk/config.json~/.openclaw/workspace/skills/lynk/lynk.py~/.openclaw/workspace/skills/lynk/lynk_automation.py~/.openclaw/workspace/skills/lynk/data/~/.openclaw/workspace/skills/lynk/reports/openclaw profileDashboard showing "0" in search bar = MAJOR ISSUE
Version: 2.0.0 (Enhanced with browser automation) Last Updated: 2026-03-10 Status: ✅ Manual mode working | 🔄 Automation template ready Data Policy: REAL DATA ONLY - No simulation Emergency: Cashflow IDR 0 - Revenue tracking CRITICAL
| Rationalization | Reality |
|---|---|
| "Good products sell themselves" | They do not. Marketing is how people discover your product. |
| "I will start marketing after launch" | Build audience before launch. Pre-launch momentum is critical. |
| "SEO is dead" | SEO evolves. GEO (Generative Engine Optimization) is the new frontier. |