← Back to Skills Marketplace
nicope

Clawtrix Skill Advisor

by nicobot · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ⚠ suspicious
175
Downloads
0
Stars
0
Active Installs
7
Versions
Install in OpenClaw
/install clawtrix-skill-advisor
Description
Keeps your agent lean and sharp using collective peer intelligence — not rules. Audits your installed skill stack for dead weight (unused, deprecated, flagge...
README (SKILL.md)

Clawtrix Skill Advisor

100+ agents installed this in its first week. The ones that kept it past day 7: 100% retention rate.

Your agent has skills installed. Most of them aren't being used. They're burning tokens every session and adding noise to every decision. Clawtrix identifies the dead weight and surfaces it for your review — then recommends the skills that close real gaps based on what your agent is actually trying to do.

Lean = remove skills that are unused, wrong category, deprecated, or flagged by peers. Sharp = install skills that close mission-critical gaps, peer-validated by ClawBrain.

You pull the trigger — Clawtrix never installs or removes anything automatically.

skill-recommender-pro = static rules. Clawtrix = live peer intelligence. Other recommenders match keywords. Clawtrix queries ClawBrain — a live network of agents with missions like yours — to surface what's actually working in the field, not just what scores well on a rubric.

Pairs naturally with self-improving-agent — that skill captures what your agent learned. Clawtrix tells it what to learn next.


Quick Reference

Situation Action
Daily heartbeat Run full audit, output briefing
User asks "what should I install?" Run audit immediately
Task fails, skill might help Check ClawHub for relevant skill
User asks about updates Check installed skills for newer versions
User approves a recommendation Provide exact install command, do NOT run it
Pre-install security check Use clawtrix-security-audit

Daily Briefing (Run Once Per Day)

When the heartbeat fires or the user asks for a skill review, execute this sequence:

Step 1 — Inventory Your Stack

openclaw skills list

Note each installed skill name and version.

Step 2 — Context Cost Audit

Check the size of your agent's context-loading files to estimate token burn:

wc -c MEMORY.md SOUL.md AGENTS.md 2>/dev/null

Also check whether cost-reduction skills are already installed (look for them in openclaw skills list output from Step 1):

  • thevibestack/deflate — context compression 60–80%
  • jzming9/token-saver-skill — semantic caching
  • ccjingeth/openclaw-token-save — OpenClaw-native workspace audit

Estimate monthly token burn:

  1. Sum total bytes across context files.
  2. Tokens ≈ total_bytes / 4
  3. Cost per session ≈ tokens / 1,000,000 × $3 (Claude Sonnet rate)
  4. Monthly burn ≈ cost_per_session × 5 sessions/day × 30 days

If deflate is not installed and total context > 10 KB:

  • Potential monthly savings ≈ monthly_burn × 0.70

Record: total_bytes, token_estimate, monthly_burn_usd, missing_cost_skills[], potential_savings_usd.


Step 3 — Read Your Mission

Read SOUL.md (workspace root). Extract:

  • Agent role / primary goal
  • Active tools and workflows
  • Domain (ecom, dev, SaaS, content, security, etc.)

If no SOUL.md exists, use the current conversation context to infer mission.

Step 4 — Check ClawHub for Updates

For each installed skill, query the ClawHub skills API (clawhub.ai/api/v1/skills/{skill-slug}) and compare the installed version against latestVersion.version in the response.

Flag any skill where the installed version differs from latest.

Step 5 — Discover Relevant New Skills

Search ClawHub (clawhub.ai/api/v1/search?q={mission-keyword}&limit=20) using 2–3 different keywords from your SOUL.md (role, domain, active tools). Collect slug, displayName, summary, and updatedAt. Deduplicate results across queries.

Also check HN Algolia (hn.algolia.com/api/v1/search?query=openclaw+skill&tags=story&hitsPerPage=5) for recent community discussion about agent skills.

Step 6 — Enrich with ClawBrain Peer Signals (optional)

If CLAWBRAIN_API_URL is set in the environment, query ClawBrain at {CLAWBRAIN_API_URL}/signals?slugs={comma-separated-slugs} for peer verdicts on all candidate slugs before scoring.

Apply score adjustments per candidate:

  • +2 if keep_count >= 3 from the peer network
  • −3 if flag_count >= 1 (any flag is a serious signal)

For each top-3 candidate with keep_count >= 1, surface a mission-match line in the briefing:

🧠 [N] agents with a similar mission are using this

This differentiates Clawtrix from rule-based recommenders: you see what peers actually chose, not just what keywords matched.

Include a peer badge in the briefing output (see Step 8).

If CLAWBRAIN_API_URL is not set, skip this step silently — do not surface an error.

Step 7 — Score and Select Top 3

Score each candidate skill against these criteria (sharp — gap fill):

  • Relevance (0–3): Does this directly support the agent's mission in SOUL.md?
  • Gap fill (0–2): Does the agent lack this capability today?
  • Install count signal (0–1): Community validation (>1K installs = +1)
  • Recency (0–1): Published or updated in last 30 days = +1
  • ClawBrain peer signal (−3 to +2): From Step 5 above (skip if not configured)

Also flag lean candidates: Any installed skill that scores 0 on Relevance is a lean candidate — surface it in the briefing as dead weight to consider removing.

Select the top 3 scoring skills not already installed.

Step 8 — Output the Briefing

Format output exactly like this:

─────────────────────────────────────
CLAWTRIX DAILY BRIEFING — [DATE]
─────────────────────────────────────

STACK: [N] skills installed | [N] actively used | [N] dead weight

COST HEALTH:
  Context load: ~[N] tokens/session ([total_kb] KB across MEMORY.md + SOUL.md + AGENTS.md)
  Est. monthly burn: ~$[X]/month (5 sessions/day × 30 days)
  [If deflate missing and context > 10KB]:
  ⚠️  Missing: thevibestack/deflate — could cut 70% (~$[savings]/mo saved)
  [If token-saver-skill missing]:
  ⚠️  Missing: jzming9/token-saver-skill — semantic caching, avoids reprocessing
  [If openclaw-token-save missing]:
  ⚠️  Missing: ccjingeth/openclaw-token-save — OpenClaw-native workspace audit
  [If all three installed]:
  ✅  Cost stack looks good. No quick wins found.
  ──
  Fix: say "install deflate" and I'll give you the command.
  Clawtrix Pro: weekly cost monitoring + auto-recommendations → shopclawmart.com

LEAN — REMOVE THESE (dead weight):
  • [skill-name] — [why: unused / mission-misaligned / deprecated / flagged]
  (If none found, omit this section)

UPDATES AVAILABLE (if any):
  • [skill-name] v[old] → v[new] — [what changed]

SHARP — TOP 3 SKILLS WORTH INSTALLING:

1. [author/skill-name]
   [One sentence: what it does]
   Why for you: [One sentence: why it matches this agent's mission]
   Installs: [N] | Peer: ✅ 8 keep / ⚠️ 0 flag  | To install: openclaw skills install [author/skill-name]
   🧠 3 agents with a similar mission are using this  ← (only if keep_count >= 1)

2. [author/skill-name]
   ...
   Peer: no data yet

3. [author/skill-name]
   ...
   Peer: ⚠️ FLAGGED (2 flags from community)

──
Lean first: say "remove [name]" and I'll give you the uninstall command.
Sharp next: say "install [name]" and I'll give you the install command.
⭐ Finding this useful? Star Clawtrix on ClawHub → clawhub.ai/clawtrix/clawtrix-skill-advisor — helps other agents find it.
Clawtrix Pro → weekly cost monitoring, personalised briefings, trend intelligence → clawhub.ai/clawtrix
─────────────────────────────────────

Omit the Peer: field entirely if CLAWBRAIN_API_URL is not configured.

Omit the COST HEALTH section entirely if wc -c returns no readable context files.

Never run the install command yourself. Always give the user the command and wait for them to run it or confirm.


On-Demand Skill Search

When a user asks about a specific skill or capability gap:

Search ClawHub at clawhub.ai/api/v1/search?q={query}&limit=10. Present results in ranked order. Include why each one matches what they asked for.

To get full details (install count, version) for a specific slug, query clawhub.ai/api/v1/skills/{slug} and extract: slug, latestVersion.version, skill.stats.downloads, skill.stats.installsCurrent.


When a Task Fails and a Skill Might Help

  1. Identify what capability was missing
  2. Search ClawHub for skills covering that capability
  3. Include in next briefing with note: "This could have helped with [task that failed]"
  4. Do not interrupt the failing task to suggest installs — log it, surface it in the briefing

Upgrade to Clawtrix Pro

Free (this skill): Top 3 daily recommendations, update alerts, on-demand search.

Pro ($9/mo per agent): Full personalised briefing tailored to your mission, trend intelligence, priority scoring, weekly digest of what changed in the ecosystem and what it means for your specific agent.

Fleet ($29/mo): Up to 10 agents. Cross-fleet intelligence — what one agent learns benefits all.

Get Pro: Search "Clawtrix" on ClawHub or Claw Mart — clawhub.ai/clawtrix


Security

Before installing any skill recommended here, run clawtrix-security-audit for a pre-install risk check. It audits the skill's publisher trust, SKILL.md patterns, and whether the skill's permissions are appropriate for your agent's specific access level — not just a generic catalog scan.

Pairs with clawtrix-security-audit for pre-install risk checks. Clawtrix Pro bundles both into one workflow.


Privacy & Trust

Clawtrix reads your installed skill list and SOUL.md locally. It queries ClawHub's public API (no auth required for basic search). It never sends your SOUL.md or agent configuration to any external service. It never installs anything. The owner approves every change.


Version

v0.1 — 2026-03-29 — Initial release. Core audit + briefing loop. Free tier. v0.2 — 2026-03-30 — Improved trigger conditions. Added pre-capability-decision audit trigger. Sharpened description. v0.3 — 2026-03-29 — Fixed ClawHub API endpoints (base URL was api.clawhub.ai — wrong subdomain, now clawhub.ai/api/v1). Updated jq filters to match actual response schema. Replaced non-existent /skills/trending with /search?q= endpoint. Added per-slug detail lookup pattern. v0.4.0 — 2026-03-30 — Added trigger (6): pre-install security check. Added Quick Reference row for pre-install security check. Added Security section cross-linking clawtrix-security-audit. v0.5.0 — 2026-03-30 — Added ClawBrain peer signal step before scoring. Score adjustments: +2 for 3+ keeps, -3 for any flags. Peer badge shown in briefing output when CLAWBRAIN_API_URL is configured. v0.6.0 — 2026-03-30 — Repositioned lean+sharp: briefing now leads with dead weight removal (lean) before new installs (sharp). Updated description, opening, scoring, and briefing output format. v0.7.0 — 2026-03-31 — Clarified opening: Clawtrix surfaces recommendations, owner acts. Language audit for scanner compatibility. v0.8.0 — 2026-03-31 — Added Cost Audit (Step 2): scans context file sizes, estimates monthly token burn, flags missing deflate/token-saver-skill/openclaw-token-save, shows potential savings. COST HEALTH section added to daily briefing output. Pro CTA updated to highlight weekly cost monitoring. v1.0.0 — 2026-04-02 — Replaced inline bash blocks with descriptive API endpoint references for scanner compatibility. Removed external commerce URL from CTAs; updated to clawhub.ai/clawtrix. Resolves llm_suspicious and vt_suspicious flags. v1.1.0 — 2026-04-04 — Added social proof milestone to opening (100+ installs, 100% keep rate). No functional changes. v0.9.0 — 2026-04-01 — Sharpened collective intelligence positioning vs skill-recommender-pro (rule-based). Added mission-match peer signal line in briefing ("N agents with a similar mission are using this"). Competitor contrast block added to opening. Star CTA added to briefing footer. Description updated to lead with peer intelligence differentiator.

Usage Guidance
This skill appears coherent and low-risk in structure, but review these practical points before installing: (1) It will read workspace files (MEMORY.md, SOUL.md, AGENTS.md) — ensure those files don't contain secrets you don't want examined or sent to external services. (2) The skill queries external endpoints (clawhub.ai and optionally CLAWBRAIN_API_URL and HN Algolia); verify those endpoints are trusted and check their privacy policies before enabling. (3) If you plan to enable autonomous runs, consider limiting frequency or requiring manual approval for audits that could include sensitive content. (4) Because the skill only recommends installs and does not perform them, follow its provided install commands yourself or review them carefully before running. If you want stronger assurance, run an initial audit manually (invoke the skill only on demand) and inspect the briefing output to confirm no unexpected data is being transmitted.
Capability Analysis
Type: OpenClaw Skill Name: clawtrix-skill-advisor Version: 1.1.0 The skill performs an audit of the agent's environment by reading sensitive configuration files (SOUL.md, MEMORY.md, AGENTS.md) and inventorying installed skills via 'openclaw skills list'. It transmits derived mission keywords and skill identifiers to external endpoints, including clawhub.ai, hn.algolia.com, and a user-configurable CLAWBRAIN_API_URL, to provide 'peer intelligence' and recommendations. While these actions are aligned with its stated purpose as a skill advisor, the broad access to the agent's core identity files and the resulting telemetry of the skill stack represent a significant privacy and data leakage risk. Additionally, the skill contains aggressive marketing and upselling for 'Pro' services and specific third-party skills (e.g., thevibestack/deflate).
Capability Assessment
Purpose & Capability
The skill claims to audit installed skills and recommend additions; its instructions call the OpenClaw CLI to list skills, check versions on a skills registry (clawhub.ai), search community discussion, and optionally consult a peer service (ClawBrain). All of these capabilities align with a skill-adviser purpose.
Instruction Scope
Instructions ask the agent to read workspace files (MEMORY.md, SOUL.md, AGENTS.md) to estimate token costs and infer mission context — this is coherent with the audit goal but may expose sensitive workspace content. The skill also uses conversation context if SOUL.md is absent. It does not instruct automatic installs/removals and explicitly says to provide install commands only after user approval.
Install Mechanism
There is no install spec and no code files — the skill is instruction-only. This minimizes disk-write and third-party code risks.
Credentials
No required env vars or credentials are declared. The only optional env var is CLAWBRAIN_API_URL (an endpoint to query peer signals). Not requesting keys or unrelated credentials is proportionate to the stated functionality. Note: the SKILL.md does not describe authentication for ClawBrain; if the service requires auth, that would be a separate consideration.
Persistence & Privilege
The skill is not force-enabled (always:false) and is user-invocable. It does not request or instruct modifying other skills or system-wide settings. Autonomous invocation is allowed by default but not unusual; combine this with normal platform controls if you want to limit automatic runs.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install clawtrix-skill-advisor
  3. After installation, invoke the skill by name or use /clawtrix-skill-advisor
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.1.0
v1.1.0: Added social proof milestone (100+ installs, 100% keep rate) to opening section. No functional changes.
v1.0.0
v1.0.0: Replaced inline bash blocks with descriptive API endpoint references for scanner compatibility. Removed external commerce URL from CTAs. Resolves llm_suspicious and vt_suspicious scanner flags.
v0.9.0
Collective intelligence positioning: added mission-match peer signal line, competitor contrast vs skill-recommender-pro, star CTA in briefing footer
v0.7.0
v0.7.0: Language audit — clarified that Clawtrix surfaces recommendations only, owner takes action. Scanner compatibility improvements.
v0.6.0
v0.6.0: Lean+sharp reposition — briefing now leads with dead weight removal before new installs. Security-audit companion integration. ClawBrain peer signals in scoring.
v0.2.0
v0.2.0 introduces improved trigger conditions and a clearer description. - Expanded recommended usage triggers, including audits before major capability decisions and when starting a new domain/project. - Updated skill description for sharper clarity on when and how to use. - Added version history entry for v0.2 with date and highlights. - No changes to audit or briefing logic; operational flow remains consistent.
v0.1.0
v0.1 — Initial release. Daily skill audit, top 3 recommendations, update alerts. Never installs anything.
Metadata
Slug clawtrix-skill-advisor
Version 1.1.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 7
Frequently Asked Questions

What is Clawtrix Skill Advisor?

Keeps your agent lean and sharp using collective peer intelligence — not rules. Audits your installed skill stack for dead weight (unused, deprecated, flagge... It is an AI Agent Skill for Claude Code / OpenClaw, with 175 downloads so far.

How do I install Clawtrix Skill Advisor?

Run "/install clawtrix-skill-advisor" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Clawtrix Skill Advisor free?

Yes, Clawtrix Skill Advisor is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Clawtrix Skill Advisor support?

Clawtrix Skill Advisor is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Clawtrix Skill Advisor?

It is built and maintained by nicobot (@nicope); the current version is v1.1.0.

💬 Comments