← Back to Skills Marketplace
superoo7

Lowyat Forum Research

by Johnson · GitHub ↗ · v1.0.2 · MIT-0
cross-platform ✓ Security Clean
106
Downloads
0
Stars
0
Active Installs
3
Versions
Install in OpenClaw
/install lowyat-forum-research
Description
Research any topic by searching Lowyat forum (forum.lowyat.net), scraping relevant threads into Excel, and analyzing the results. Use this skill whenever the...
README (SKILL.md)

Lowyat Forum Research Tool

End-to-end research pipeline: Search → Scrape → Analyze

Workflow

Step 1: Understand the user's research topic

  • Ask clarifying questions if needed (e.g. what specifically they want to learn)
  • Break the topic into 3-5 search keyword variations

Step 2: Search for relevant threads

  • Use WebSearch with site:forum.lowyat.net \x3Ckeywords> to find threads
  • Use allowed_domains: ["forum.lowyat.net"] to filter results
  • Run multiple searches in parallel with different keyword angles
  • Present the most relevant threads to the user with titles and URLs
  • Let the user pick which threads to scrape, or recommend the best ones

Step 3: Scrape the selected threads

  • The scraper script (datascraping.py) should be in the project root
  • Install Python dependencies:
pip install requests beautifulsoup4 html5lib openpyxl tqdm

Or if you have uv installed:

uv sync
  • Run the scraper for each thread:
python datascraping.py \x3CTOPIC_URL>
  • IMPORTANT: Do NOT include /all or /+N suffixes in the URL — just use the base topic URL (e.g. https://forum.lowyat.net/topic/5411252)
  • To scrape multiple threads, run them sequentially (one at a time) to be respectful to the server. Only run up to 3 in parallel if the user explicitly asks for speed, using & and wait
  • Output: \x3Ctopic_id>.xlsx files with columns: Name, Date, Comment

Step 4: Analyze the scraped data

  • Read the scraped .xlsx files to understand the forum discussions
  • Synthesize findings across all threads into a structured summary
  • Organize insights by the user's research questions
  • Include: consensus opinions, brand recommendations, price ranges, warnings, and specific user experiences
  • Cite which thread/user said what when relevant

Scraper Details

  • Forum uses 20 posts per page, paginated via /+N URL suffix
  • Scraper auto-detects total pages and crawls all of them
  • Random 0.5–2s delay between page requests
  • Saves incrementally after each page — safe to interrupt
  • If .xlsx already exists, it resumes by appending

Tips for good searches

  • Use brand names: site:forum.lowyat.net Toto toilet
  • Use Malay keywords too: site:forum.lowyat.net kipas exhaust tandas
  • Add "recommendation" or "review": site:forum.lowyat.net water heater recommendation
  • Search by location: site:forum.lowyat.net bathroom shop KL Selangor
  • Try year filters for recency: site:forum.lowyat.net smart toilet 2024 2025

Example usage

User: "I want to research mechanical keyboards on Lowyat"

  1. Search with variations: mechanical keyboard recommendation, cherry mx switch, keychron Malaysia, custom keyboard
  2. Present top threads to user
  3. Scrape selected threads in parallel
  4. Read the xlsx files and provide analysis: popular brands, price ranges, where to buy, common complaints

Links

Disclaimer

Scraped data contains publicly available usernames, dates, and comments from forum.lowyat.net. This tool is intended for personal research purposes only. Users are responsible for how they store, share, and use the scraped data in compliance with applicable privacy laws and Lowyat forum's terms of service.

Usage Guidance
This skill appears to do what it says (scrape Lowyat threads into Excel), but before installing or running it consider: 1) Terms of Service & robots.txt — scraping may violate Lowyat's terms or local laws; verify permission. 2) Privacy — scraped data includes public usernames and timestamps; handle, store, and share it responsibly and anonymize if needed. 3) Load on the site — follow the documented delays and avoid bulk parallel scraping to prevent denial-of-service. 4) Environment setup — ensure you run the pip installs in a virtual environment and that your Python version meets pyproject (>=3.12) if you encounter issues. 5) Source verification — SKILL.md links to a GitHub repo; if provenance matters, inspect that repository for updates or additional code. If you need the agent to run this autonomously, be aware autonomous invocation plus data collection increases risk, so restrict usage accordingly.
Capability Analysis
Type: OpenClaw Skill Name: lowyat-forum-research Version: 1.0.2 The skill bundle is a legitimate web scraping tool designed to extract and analyze forum posts from Lowyat.net. The Python script (datascraping.py) uses standard libraries like BeautifulSoup and requests to collect public forum data into Excel files, incorporating respectful scraping practices such as random delays and sequential processing. No evidence of data exfiltration, malicious execution, or prompt injection was found.
Capability Assessment
Purpose & Capability
Name/description match the provided files and instructions. The included datascraping.py and SKILL.md implement exactly: search (via WebSearch guidance), scrape forum.lowyat.net pages, and save results to .xlsx. Required packages are proportional to the task (requests, BeautifulSoup, openpyxl, tqdm).
Instruction Scope
SKILL.md stays within scope: it instructs how to find threads, run the included scraper, and analyze the resulting Excel files. It does not request unrelated file reads, credentials, or remote endpoints beyond forum.lowyat.net. It explicitly recommends polite scraping behavior (delays, limited parallelism).
Install Mechanism
There is no automated install spec; SKILL.md asks the user to pip-install common Python libraries. No downloads from untrusted URLs or archive extraction are present. The code is included in the package (datascraping.py).
Credentials
The skill requests no environment variables or credentials. All external network activity is limited to the target forum pages. The pyproject specifies Python >=3.12 which is reasonable but not enforced by SKILL.md; this mismatch is minor and not a security risk.
Persistence & Privilege
Skill is not marked always:true and does not modify other skills or agent-wide configs. It runs as a user-invoked tool and does not request elevated system presence.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install lowyat-forum-research
  3. After installation, invoke the skill by name or use /lowyat-forum-research
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.2
- Cleaned up and simplified Python package installation instructions for the scraper. - Provided clearer guidance on using pip or uv for dependencies. - Removed detailed setup steps for uv and consolidated installation commands. - No changes to features or core workflow; documentation/editing updates only.
v1.0.1
- Added explicit requirement for the uv Python package manager; included install instructions. - Provided pip alternative for users who prefer it over uv. - Clarified that scrapes should be run sequentially (one at a time) to respect server load, with limited parallelism only if explicitly requested. - Added "required_binaries" section for uv in the manifest. - Included official project and ClawHub links, and a disclaimer about data usage and respect for privacy laws.
v1.0.0
Initial release — Lowyat Forum Research & Analysis tool: - Enables end-to-end research on any topic using the Lowyat forum: search, scrape, and analyze threads. - Searches forum.lowyat.net with multiple keyword variations and presents relevant threads for user selection. - Scrapes selected threads into Excel files with detailed post data (Name, Date, Comment). - Analyzes scraped data to extract consensus, recommendations, price info, and user experiences, organized by user research questions. - Includes clear setup and usage instructions for scraping and data handling. - Designed for Malaysian consumer research topics; triggers on relevant keywords automatically.
Metadata
Slug lowyat-forum-research
Version 1.0.2
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 3
Frequently Asked Questions

What is Lowyat Forum Research?

Research any topic by searching Lowyat forum (forum.lowyat.net), scraping relevant threads into Excel, and analyzing the results. Use this skill whenever the... It is an AI Agent Skill for Claude Code / OpenClaw, with 106 downloads so far.

How do I install Lowyat Forum Research?

Run "/install lowyat-forum-research" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Lowyat Forum Research free?

Yes, Lowyat Forum Research is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Lowyat Forum Research support?

Lowyat Forum Research is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Lowyat Forum Research?

It is built and maintained by Johnson (@superoo7); the current version is v1.0.2.

💬 Comments