Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

clawtrix-saas-intel克劳特里克斯 英特尔

Agent Skill

clawtrix-saas-intel 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,841

周安装

165

GitHub Stars

公开资料未说明

下载量

1,346
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:clawtrix-saas-intel(克劳特里克斯 英特尔)
来源仓库:https://github.com/nicope/clawtrix-saas-intel
安装命令:
openclaw skills install clawtrix-saas-intel
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install clawtrix-saas-intel

简介

clawtrix-saas-intel 针对 SaaS 产品提供技能推荐,包括计费与用户生命周期管理。

  • 适用于新用户入职、订阅续费与客户留存等关键环节。
  • 按 SaaS 典型流程组织工具集,降低集成复杂度。
  • 安装前需对接内部 CRM 或数据库,确保数据字段映射正确。
  • 建议先在小范围测试,验证流程稳定性后再全量推广。

SKILL.md

name
clawtrix-saas-intel
description
Surfaces the best ClawHub skills for SaaS-focused agents — auth, billing, onboarding, customer lifecycle, and SaaS product patterns. Use when: (1) Onboarding an agent that works on a SaaS product (billing, subscriptions, user management), (2) An agent needs help with Stripe integration, auth flows, or onboarding automation, (3) Running a weekly skill discovery for product-builder agents, (4) A SaaS team is instrumenting agents across their stack and needs a starting skill set, (5) The n8n integration angle is relevant (convert existing workflows to agent skills). Outputs top 3 recommendations. Never more than 3.
metadata

Clawtrix SaaS Intel

Finds the best ClawHub skills for SaaS product agents. Personalized to your product's domain, stack, and stage — not a generic search result.


Quick Reference

TaskAction
New SaaS agent onboardingRun full discovery for the product's core domain
Billing/payments gapRun Step 2 with Stripe/billing queries
Onboarding flow automationRun Step 2 with onboarding queries
n8n workflow → skill conversionRun Step 2 with n8n-specific queries
Weekly discoveryRun Steps 1-3, output to memory/

Discovery Run Sequence

Step 1 — Read Agent Mission

Read the agent's SOUL.md. Extract:

  • SaaS product domain (e.g., "project management SaaS", "billing infrastructure", "customer success platform")
  • Core user actions the agent automates (e.g., "handles subscription upgrades", "automates onboarding emails")
  • Current tech stack (Stripe, Auth0, Intercom, HubSpot, etc.)
  • Installed skills (to avoid re-recommending)
  • Business model (B2B/B2C, pricing tiers, trial flows)

Step 2 — Search ClawHub for SaaS Patterns

# Billing and subscription management
curl -s "https://clawhub.ai/api/v1/search?q=stripe+billing&limit=10" \
  | jq '[.results[] | {slug, name: .displayName, installs, score}]'

# Auth and identity
curl -s "https://clawhub.ai/api/v1/search?q=auth+identity+saas&limit=10" \
  | jq '[.results[] | {slug, name: .displayName, installs, score}]'

# Customer onboarding
curl -s "https://clawhub.ai/api/v1/search?q=onboarding+activation&limit=10" \
  | jq '[.results[] | {slug, name: .displayName, installs, score}]'

# n8n workflow conversion (high-signal March 2026)
curl -s "https://clawhub.ai/api/v1/search?q=n8n+workflow&limit=10" \
  | jq '[.results[] | {slug, name: .displayName, installs, score}]'

# Product analytics + retention
curl -s "https://clawhub.ai/api/v1/search?q=product+analytics+retention&limit=10" \
  | jq '[.results[] | {slug, name: .displayName, installs, score}]'

Step 3 — Score Each Candidate

Apply Clawtrix scoring matrix:

DimensionMaxHow to measure
Mission relevance33=core SaaS workflow, 2=adjacent, 1=tangential
Gap fill2Does the agent lack this today?
Community signal1installs > 1,000 = +1
Recency1Updated in last 30 days = +1
Trust1Clean publisher, no security flags

Step 4 — SaaS-Specific Filters

Before recommending, verify:

  • [ ] Compatible with the product's payment provider (Stripe vs. Paddle vs. custom)
  • [ ] Works at the right business model (B2B vs. B2C billing patterns differ significantly)
  • [ ] No security flags — billing agents have HIGH blast radius (3x risk multiplier per clawtrix-security-audit)
  • [ ] Not already installed

Step 5 — Output Top 3

Never more than 3. Write to memory/reports/saas-intel-YYYY-MM-DD.md:

# SaaS Intel — YYYY-MM-DD

## Agent: [name]
## Product domain: [SaaS type]
## Skills audited: N candidates

## Top 3 Recommendations

**1. [author/slug]** (score: N/8)
- What: [one sentence]
- Why for this product: [one sentence tied to SOUL.md + business model]
- Install: `clawhub install [slug]`

**2. ...**

**3. ...**

## Skipped
| Slug | Reason |
|...

SaaS-Specific Risk Note

SaaS agents operate in sensitive environments: payment processing, user management, and customer data. This means the blast radius of a compromised skill is significantly higher than for a read-only agent.

Before installing any skill for a SaaS agent, run clawtrix-security-audit first. The risk multiplier for payment/billing access is 3x — a MEDIUM-flagged skill becomes HIGH risk.


When to Use This for n8n Teams

SaaS teams running n8n for automation (Zapier replacement, internal workflows) are a strong fit:

  • They already think in workflow automation terms
  • Adding ClawHub skills to their OpenClaw agents extends their n8n investment
  • Natural onboarding path: existing n8n workflow → SKILL.md → deploy to OpenClaw agent

Run Step 2 with n8n workflow as a search query to find current conversion tools in ClawHub.


Upgrade Note — Clawtrix Pro

This skill finds SaaS skills on demand. Clawtrix Pro adds:

  • Proactive alerts when a high-signal SaaS skill ships (especially Stripe, Auth0, billing patterns)
  • Security monitoring specific to billing-access agents (highest blast radius tier)
  • Fleet-level audit: "all 5 of your SaaS agents have clean stacks except agent #3"
  • Monthly SaaS skills landscape report

Version History

v0.1.0 — Initial release. SaaS domain discovery, billing/auth/onboarding focus, n8n integration angle, 3x risk flag for billing-access agents. v0.1.1 — Cleaned up internal research notes from n8n section; now fully customer-facing.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

72.37%
按下载量换算974

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills