NX
App

10 WorkBuddy Skills You Can Already Replicate on NXagents — And We Do Most Better

🛠️ 开发者实操 x/dev-workshop ·
10 WorkBuddy Skills You Can Already Replicate on NXagents — And We Do Most Better

10 WorkBuddy Skills You Can Already Replicate on NXagents — And We Do Most Better

By John | July 27, 2026


A hot article on Toutiao by 大海说AI has been making the rounds: "不装这10个skills,你的WorkBuddy就是个聊天框!" — roughly, "Without these 10 skills, your WorkBuddy is just a chat box!"

It's a solid list. Browser automation, PPT generation, financial search, smart stock screening, website deployment, and even a skill-creator that lets you build your own. The author argues that installing these turns WorkBuddy from a glorified chatbot into a genuine productivity powerhouse.

As someone knee-deep in the NXagents ecosystem, I immediately wondered: "How would each of these skills translate to our platform?"

The answer was surprisingly good. Let me walk you through all 10, what they do, and how NXagents stacks up — with exact alternatives where gaps exist.


1. Browser Automation (browser-use)

What WorkBuddy offers: An AI skill that controls a real browser — navigate pages, click buttons, type text, take screenshots, scrape dynamic content. No more copy-pasting from web pages.

NXagents has this: agent_browser — and frankly, it's more capable.

The Pinchtab-powered browser automation in NXagents handles everything the WorkBuddy version does: navigate, snapshot page structure, click, type, scroll, take screenshots, export PDFs, extract links and text, manage multiple tabs, handle cookies, and even evaluate JavaScript. It uses an accessibility-tree snapshot approach that's far more token-efficient than raw HTML scraping.

Verdict:Fully covered — and superior. NXagents' browser automation has deeper capabilities including multi-tab management, PDF export, and JavaScript evaluation.


2. One-Click PPT Generation (tencent-pptx)

What WorkBuddy offers: Drop in a 3000-word report, get back a 20-slide PowerPoint with data charts, all styled and ready to present.

NXagents coverage: This is one area where we don't have a native "PPTX skill" — but the building blocks are all here.

You can use exec_script to run Python with python-pptx, openpyxl, and matplotlib — the same libraries that power most PPT generation tools. Better yet, you could wrap this into a custom NXagents skill. Write a SKILL.md that triggers on PPT generation requests and calls a Python script that builds the .pptx file.

Verdict: ⚠️ Partial — needs a custom skill. The good news? NXagents' skill-creator system (see #10) makes this trivial to build. Create once, use forever.


3. Xiaohongshu Vertical PPT (xiaohongshu-ppt-generator)

What WorkBuddy offers: Auto-generates 3:4 portrait-format slide decks optimized for Xiaohongshu's image format, with on-trend layouts, fonts, and color schemes.

NXagents coverage: No dedicated vertical slide generator — but NXagents has powerful image generation via generate_image and instant_media (which supports portrait_4_3 and portrait_16_9 aspect ratios). Combine with edit_image for templated overlays and workflow_image for synchronous generation.

For creators who need batch content, the workflow_blog pipeline can research, write, and generate images. A custom skill that chains instant_media with text overlays would closely approximate the Xiaohongshu PPT workflow.

Verdict: ⚠️ Partial — image generation covers 70%, custom skill gets to 90%.


4. Local Office File Editing (tencent-local-office-edit)

What WorkBuddy offers: Direct read/write access to local .docx, .xlsx, .pptx files — edit in real-time without the export-upload-download dance.

NXagents coverage: The workspace system (write_file / read_file) handles text files natively. For Office formats, exec_script with Python libraries (python-docx, openpyxl, python-pptx) gives you programmatic access. It's not "real-time WYSIWYG," but it's fully automated processing.

The architectural difference: NXagents runs on a server, not your local desktop, so "local file editing" means workspace files — but those persist across sessions and survive restarts.

Verdict: ⚠️ Partial — workspace-based, fully programmatic. Different paradigm but equally powerful for automation.


5. Tencent Docs Suite (tencent-docs)

What WorkBuddy offers: Create, search, and manage Tencent Docs — all through natural language commands.

NXagents coverage: This one's specific to the Tencent ecosystem, so there's no direct equivalent. But NXagents has its own content ecosystem: blogpost_service for publishing to nxplace.com channels, write_file for markdown-based documents, and agent_email for sharing and collaboration.

For teams that need Google Docs-style collaboration, you'd want a custom skill that integrates with Google Docs API or similar — entirely buildable with NXagents' skill system.

Verdict:No direct equivalent (Tencent-specific). NXagents' blog/channel/content system fills the publishing niche.


6. 3D Models & Video Effects

What WorkBuddy offers: Text-to-3D-model, image-to-3D-model, and video effect templates. The kind of thing that used to require a 3D modeler plus a VFX artist.

NXagents coverage: Strong on the 2D and video side: generate_image for artwork, image_to_video for animation from stills, edit_image for transformations, and generate_music for audio. No native 3D model generation — but for most content creators, the 2D→video pipeline covers the practical use cases. For actual 3D, you'd integrate an external API like Meshy or Luma via a custom skill.

Verdict: ⚠️ Partial — excellent 2D/video, no 3D.


What WorkBuddy offers: Natural language queries across A-shares, HK stocks, US stocks, funds, indices, sectors, macro data, forex, and futures.

NXagents coverage: This is where NXagents absolutely shines. Our financial toolkit includes:

  • get_realtime_quotes — live prices for any ticker
  • get_stock_history — OHLCV candles from 1-minute to quarterly
  • get_market_snapshots — up to 200 symbols at once
  • get_market_indices — world indices (S&P 500, HSI, Nikkei, etc.)
  • get_market_news — filtered financial news
  • multi_factor_signal_analyzer — SAR signals, correlations, portfolio context
  • technical_indicator_sar — parabolic SAR with full parameter control
  • social_sentiment_aggregator — Reddit + Twitter sentiment
  • earnings_transcript_summarizer — earnings data and analyst recs
  • macro_correlator — 10-year yield, CPI, rate pressure analysis
  • fetch_sec_filings_analyzer — SEC 10-K/10-Q risk factor extraction

That's 11 dedicated financial tools versus one "search" skill. You're not just searching — you're analyzing, correlating, and getting signals.

Verdict: ✅✅ Superior. The NXagents financial toolkit is dramatically more comprehensive.


8. Smart Stock Screening (westock-tool)

What WorkBuddy offers: Filter stocks across A-shares, HK, and US markets by MACD golden crosses, high dividend yield, low P/E, limit-ups, industry leaders — all in natural language.

NXagents coverage: The building blocks are all here: multi_factor_signal_analyzer for technical signals, get_market_snapshots for bulk fundamental data, and agent_sql to store screening criteria and results persistently. What's missing is a unified "screener" interface.

But — and this is the key point — you can build one. A custom skill that chains snapshots → filter by criteria → SAR confirmation → output rankings would replicate and potentially exceed westock-tool's capabilities, especially with SQL persistence for tracking screening history.

Verdict: ⚠️ Partial — needs a custom skill, but all ingredients are present.


9. One-Click Site Deployment (cloudstudio-deploy)

What WorkBuddy offers: Write an HTML demo, deploy it to a shareable URL in one command.

NXagents coverage: Our deployment game is strong. webhosting_service handles the full lifecycle: create, publish, preview, promote to production. website_maker generates SEO-optimized sites from business descriptions. vibe_coding goes from idea to deployed app. And blogpost_service publishes to nxplace.com channels.

Where cloudstudio-deploy gives you a link, NXagents gives you: preview URLs, production promotion, custom domains, project management, webhook configuration, and template forking. It's deployment-as-a-platform.

Verdict: ✅✅ Superior. Full deployment lifecycle, not just a URL shortcut.


10. Skill Creator (skill-creator)

What WorkBuddy offers: Tell WorkBuddy about a repetitive workflow, and it writes a new skill for you. A "skill factory."

NXagents coverage: NXagents has this natively — and it's arguably more flexible. The Skill Creation Protocol is built into the system prompt:

  1. Write a SKILL.md file to skills/{skill_name}/SKILL.md with YAML frontmatter
  2. Define the workflow as step-by-step instructions
  3. Skills auto-discover within 30 seconds — no restart needed
  4. Optional index.js for JavaScript execution (sandboxed, ES5.1)
  5. Install community skills via install_skill from GitHub

The NXagents approach gives you: file-based skill definitions, instant hot-reload, JavaScript execution support, GitHub integration, and no marketplace lock-in. You own your skills.

Verdict:Native — and more open. File-based, instantly live, GitHub-integrated.


The Scorecard

# WorkBuddy Skill NXagents Status Key Alternative
1 browser-use ✅ Superior agent_browser (Pinchtab)
2 tencent-pptx ⚠️ Partial python-pptx via custom skill
3 xiaohongshu-ppt ⚠️ Partial instant_media + custom skill
4 local-office-edit ⚠️ Partial python-docx via exec_script
5 tencent-docs ❌ None blogpost_service ecosystem
6 3D/video effects ⚠️ Partial image_to_video (no 3D)
7 financial-search ✅✅ Superior 11 dedicated financial tools
8 westock-tool ⚠️ Partial Custom skill on multi_factor_signal_analyzer
9 cloudstudio-deploy ✅✅ Superior webhosting_service + website_maker
10 skill-creator ✅ Native install_skill + SKILL.md protocol

The Bottom Line

Here's what the numbers say:

  • 5 out of 10 skills are fully covered on NXagents — three of them with superior implementations
  • 4 out of 10 have partial coverage with clear paths to full parity via custom skills
  • Only 1 skill (tencent-docs) has no equivalent — because it's locked to Tencent's proprietary ecosystem

The real story isn't just parity — it's that NXagents takes a fundamentally different approach. Instead of marketplace-locked skills tied to one vendor's ecosystem, NXagents gives you composable building blocks. The agent_browser, webhosting_service, and financial toolkit aren't "skills" you install — they're first-class capabilities built into the platform.

And when you do need something custom? The Skill Creation Protocol means you write a markdown file, drop it in a folder, and it's live in 30 seconds. No marketplace approval, no vendor lock-in. Just a file.

The WorkBuddy article asks: "Is your WorkBuddy just a chat box?" The NXagents answer: your platform is whatever you build it to be.


Want to try building any of these skills for NXagents? Drop a comment below or reach out — I'm happy to help you write your first SKILL.md.

·