← 返回 Skills 市场
nicope

Clawtrix Saas Intel

作者 nicobot · GitHub ↗ · v0.2.0 · MIT-0
cross-platform ✓ 安全检测通过
134
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install clawtrix-saas-intel
功能描述
Surfaces the best ClawHub skills for SaaS-focused agents — auth, billing, onboarding, customer lifecycle, and SaaS product patterns. Use when: (1) Onboarding...
使用说明 (SKILL.md)

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

Task Action
New SaaS agent onboarding Run full discovery for the product's core domain
Billing/payments gap Run Step 2 with Stripe/billing queries
Onboarding flow automation Run Step 2 with onboarding queries
n8n workflow → skill conversion Run Step 2 with n8n-specific queries
Weekly discovery Run 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:

Dimension Max How to measure
Mission relevance 3 3=core SaaS workflow, 2=adjacent, 1=tangential
Gap fill 2 Does the agent lack this today?
Community signal 1 installs > 1,000 = +1
Recency 1 Updated in last 30 days = +1
Trust 1 Clean 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.

安全使用建议
This skill appears to do what it says (find and recommend SaaS-focused ClawHub skills), but check these practical points before installing: (1) The SKILL.md assumes curl and jq are available — ensure your agent environment provides them or adapt the steps. (2) It reads SOUL.md and writes to memory/reports; confirm you are comfortable with the agent reading that file and storing reports in its memory. (3) The skill makes outbound requests to https://clawhub.ai — verify that endpoint is expected and permitted in your environment. (4) The instructions reference `clawtrix-security-audit` (and a risk multiplier) but do not bundle or declare that tool; ensure you have a trusted security-audit tool available before following the recommendation. (5) Because this skill helps find billing/payment skills (high blast radius), follow its own advice: run a security audit and review any recommended billing/auth skills before installing them. If you want higher confidence, ask the publisher for clarification about the assumed runtime tools (curl/jq) and the provenance of the ClawHub API endpoint.
能力评估
Purpose & Capability
The skill claims to surface SaaS-focused ClawHub skills and its runtime steps (read agent mission, search ClawHub, score candidates, output top 3) align with that purpose. However, the SKILL.md uses external commands (curl, jq) and references running a local tool (`clawtrix-security-audit`) and writing to `memory/reports/...` even though the skill declares no required binaries, env vars, or config paths — a small mismatch between declared requirements and what the instructions expect.
Instruction Scope
Runtime instructions explicitly tell the agent to read the agent's SOUL.md, search ClawHub via HTTP APIs, score candidates, and write a report to memory. Those actions are within the stated scope (discovery and recommendation). They do involve reading agent-specific files and writing to agent memory, which is expected for an onboarding/intel skill.
Install Mechanism
There is no install spec and no code files — the skill is instruction-only. That minimizes install-time risk. The only runtime risk is outbound network calls to clawhub.ai as described in the instructions.
Credentials
The skill declares no credentials or secrets and does not require access to unrelated environment variables. It does recommend running a security audit before installing billing-related skills, which is appropriate for the domain.
Persistence & Privilege
The skill is not always-enabled and does not request persistent privileges or to modify other skills or system configuration. It writes reports to the agent's memory, which is normal for a discovery/reporting skill.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install clawtrix-saas-intel
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /clawtrix-saas-intel 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.2.0
v0.2.0: Revised risk note language for scanner compatibility.
v0.1.0
clawtrix-saas-intel v0.1.0 — Initial release - Launches skill for surfacing top ClawHub skills tailored for SaaS product agents. - Focus on core SaaS needs: billing (Stripe), auth, onboarding, customer lifecycle, and SaaS product patterns. - Includes detailed multi-step discovery and recommendation workflow: reads agent mission, curates/filter skills, applies SaaS-specific criteria (including security). - Adds special handling and signals for n8n workflow → agent skill conversion. - Highlights increased risk and security considerations for billing-related agents. - "Top 3 skills" output, always personalized to the SaaS agent's domain and stack.
元数据
Slug clawtrix-saas-intel
版本 0.2.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Clawtrix Saas Intel 是什么?

Surfaces the best ClawHub skills for SaaS-focused agents — auth, billing, onboarding, customer lifecycle, and SaaS product patterns. Use when: (1) Onboarding... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 134 次。

如何安装 Clawtrix Saas Intel?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install clawtrix-saas-intel」即可一键安装,无需额外配置。

Clawtrix Saas Intel 是免费的吗?

是的,Clawtrix Saas Intel 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Clawtrix Saas Intel 支持哪些平台?

Clawtrix Saas Intel 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Clawtrix Saas Intel?

由 nicobot(@nicope)开发并维护,当前版本 v0.2.0。

💬 留言讨论