Skip to content
Aakash GuptaAakash Gupta

The OpenClaw Guide no PM is Talking About (Masterclass for AI PMs)

Naman Pandey has spent weeks deep inside OpenClaw, the open-source AI agent with 245,000 GitHub stars and 2 million weekly visitors. In this episode, he walks through the complete installation process, connects it to Slack live on camera, and builds five PM automations from scratch, including morning stand-ups, competitive intelligence, customer feedback pipelines, and smart bug routing. Full Writeup: https://www.news.aakashg.com/p/naman-pandey2-podcast Transcript: https://www.aakashg.com/naman-pandey-podcast/ --- Timestamps: 0:00 - Intro 1:55 - Why PMs should care about OpenClaw 3:40 - Two ways to set up OpenClaw 5:02 - Three terminal commands to install 8:55 - Ads 10:41 - How to get your LLM API key 14:27 - Full Slack integration walkthrough 20:24 - Skills vs tools explained 23:40 - Local vs VPS vs Mac Mini 32:26 - Ads 35:14 - Slack vs TUI vs gateway dashboard 38:06 - Slack knowledge base (use case 1) 47:47 - Automated stand-up summaries (use case 2) 54:46 - Competitive intelligence on autopilot (use case 3) 1:13:26 - Voice of customer reports (use case 4) 1:24:30 - Smart bug routing by customer tier (use case 5) 1:37:40 - OpenClaw vs Claude Cowork vs Claude 1:40:21 - Outro --- 🏆 Thanks to our sponsors: 1. Jira Product Discovery: Plan with purpose, ship with confidence - https://www.atlassian.com/software/jira/product-discovery 2. Vanta: Automate compliance, manage risk, and prove trust - http://vanta.com/aakash 3. Mobbin: Discover real-world design inspiration - http://mobbin.com/aakash 4. Maven: - The AI Evals Course for PMs & Engineers: You get $1250 with this link - https://maven.com/parlance-labs/evals?promoCode=ag-product-growth 5. Product Faculty: Get $550 off their #1 AI PM Certification with my link - https://maven.com/product-faculty/ai-product-management-certification?promoCode=AAKASH550C7 --- Key Takeaways: 1. OpenClaw is a proactive AI agent, not a reactive chatbot - Unlike ChatGPT or Claude, OpenClaw runs as a continuous daemon on your machine. It executes tasks at 3 a.m. while you sleep, maintains persistent memory across sessions, and acts autonomously based on scheduled cron jobs. 2. Installation takes three terminal commands - NPM install, openclaw onboard, and hatch the bot. If you do not see red text in the terminal, the installation worked. Yellow warnings are normal and safe to ignore. 3. The Slack integration has one critical step everyone misses - Every time you change bot permissions in the Slack API console, you must click Reinstall to Workspace. Without this step, no permission changes persist and the bot appears broken. 4. The workspace docs folder is your team's knowledge base - Drop PRDs, FAQs, and product docs into the local .openclaw/workspace/docs folder. Any team member can query the entire repository by mentioning the bot in any Slack channel, and the bot can write back to the docs. 5. Cron jobs replace manual PM rituals - Set up a morning stand-up summary that scans Slack channels overnight and posts a brief at 9 a.m. with what shipped, active blockers, and customer complaints. You describe it in English and OpenClaw writes the code. 6. Competitive intelligence runs on autopilot - OpenClaw can monitor competitor websites, reviews, and mentions every 30 minutes and post SWOT analyses to a private Slack channel. It tracks changes over time for trend analysis months later. 7. Voice of customer reports aggregate every feedback source - Connect Slack support channels, email, Google reviews, Reddit, and more. OpenClaw scans every 30 minutes and synthesizes a weekly report automatically. 8. Smart bug routing checks customer tier automatically - OpenClaw reads bug reports, looks up the reporter in a customer CSV, escalates enterprise bugs to engineering immediately, and routes free-tier bugs to design as low priority. 9. Security audit is non-negotiable before going live - Tell OpenClaw to analyze its own security vulnerabilities. It will flag unrestricted file access, disabled firewalls, and missing approval gates. Set up a weekly cron job to run the audit automatically. 10. Local deployment is safest for most PMs - A VPS gives 24/7 uptime but removes your physical kill switch. A dedicated Mac Mini is the most recommended option. Local deployment on your laptop is the safest because the bot sleeps when you close your laptop. --- 👨‍💻 Where to find Naman Pandey: LinkedIn: https://www.linkedin.com/in/namanpandey0796/ YouTube: @ReadySetDoNaman 👨‍💻 Where to find Aakash: Twitter: https://x.com/aakashgupta LinkedIn: https://www.linkedin.com/in/aakashgupta/ Newsletter: https://www.news.aakashg.com #openclaw #aipm --- 🧠 About Product Growth: The world's largest podcast focused solely on product + growth, with over 200K+ listeners. 🔔 Subscribe and turn on notifications to get more videos like this.

Aakash GuptahostNaman Pandeyguest
Mar 16, 20261h 40mWatch on YouTube ↗

At a glance

WHAT IT’S REALLY ABOUT

OpenClaw setup masterclass and five automation use-cases for PMs

  1. OpenClaw is positioned as a proactive, always-on agent framework that can execute tasks autonomously (e.g., overnight) and swap between LLM providers/models based on cost and latency needs.
  2. The episode walks through a practical installation flow (NPM install, onboarding, gateway “hatch”), then a detailed Slack Socket Mode integration including permissions/scopes, app tokens, bot tokens, and common setup pitfalls.
  3. A core conceptual model is introduced: “tools” give the agent capability (organs) while “skills” give procedural knowledge (textbooks), both editable via local workspace files like soul.md, agents.md, and memory.md.
  4. Five PM-focused demos show OpenClaw turning Slack into a knowledge base, generating scheduled standup summaries via cron/heartbeat, automating competitive intelligence with web browsing APIs (e.g., Brave), generating Voice-of-Customer reports from Slack + email, and routing bugs by customer tier using a CSV.
  5. Security is treated as non-optional: local file access and broad Slack scopes can create real risk, so users should prefer guardrails, segment deployments (local vs VPS vs separate machine), and routinely run a self-audit prompt to surface vulnerabilities and remediation steps.

IDEAS WORTH REMEMBERING

5 ideas

OpenClaw’s differentiator is autonomy plus persistence, not just chat.

Unlike standard LLM chat, OpenClaw can run scheduled/background work (cron/heartbeat) and retain operational memory in local files, enabling “set-and-forget” workflows like daily standups and ongoing monitoring.

Slack integration success depends on correct tokens, scopes, and reinstalling the Slack app.

The setup requires Socket Mode (xapp token) and a bot token (xoxb), plus the right bot token scopes; any Slack permission change must be followed by “Reinstall to workspace” or behavior won’t update.

Treat the gateway dashboard as the control plane for all channels (Slack/WhatsApp/etc.).

Slack is a convenient interface, but troubleshooting and configuration should be done in the gateway (UI/TUI) because it’s the shared hub that can manage connectors and diagnose failures.

Skills and tools are separate levers—use files to scale configuration quickly.

Tools determine what the agent can do (browse web, read files, message Slack), while skills capture how it should do it; editing workspace markdown files can be faster than clicking through interactive menus.

A local ‘docs’ folder turns Slack into a living, editable knowledge base.

By placing PRDs/FAQs in the OpenClaw workspace, teammates can query in Slack, and the agent can even update documents (e.g., append missing FAQs) to keep documentation current.

WORDS WORTH SAVING

5 quotes

Versus a traditional LLM, which is more reactive, here you can really take the reins… and be proactive.

Naman Pandey

Tools are organs. Can the agent do it? Skills are textbooks. Does the agent know how to do it?

Naman Pandey

If you’re not seeing red, you’re good.

Naman Pandey

One-click your installation… The reason why we will not focus on this approach is that… it is restrictive in nature.

Naman Pandey

If a malicious or rogue user in Slack tells OpenClaw to read your personal Mac files, it will likely execute it.

Naman Pandey

Why PMs should care: proactive agents vs reactive chatInstallation via terminal and onboarding workflowSlack Socket Mode setup: tokens, scopes, reinstalling appGateway dashboard vs TUI vs Slack interfacesLocal workspace files: docs/, soul.md, memory.md, heartbeat.mdCron jobs/heartbeat for scheduled automationsBrave Search API for browsing and competitive intelSecurity risks: file access, permissions, guardrailsFive PM use cases: KB, standups, competitive intel, VoC, bug routingOpenClaw vs Claude vs Claude Cowork: autonomy, cost, daemon model

High quality AI-generated summary created from speaker-labeled transcript.

Get more out of YouTube videos.

High quality summaries for YouTube videos. Accurate transcripts to search & find moments. Powered by ChatGPT & Claude AI.

Add to Chrome