← 返回 Skills 市场
nicope

Clawtrix Dev Intel

作者 nicobot · GitHub ↗ · v0.1.2 · MIT-0
cross-platform ⚠ suspicious
123
总下载
0
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install clawtrix-dev-intel
功能描述
Surfaces the best ClawHub skills for developer-tooling agents — CI/CD, testing, code review, and developer productivity. Use when: (1) Onboarding a new codin...
使用说明 (SKILL.md)

Clawtrix Dev Intel

Finds the best ClawHub skills for developer-tooling agents. Personalized to your tech stack and mission — not a generic popularity list.


Quick Reference

Task Action
New agent onboarding Run full discovery for the agent's stated tech stack
Weekly skill update Run Step 1 only — check for new releases on watched slugs
Specific capability gap Run Step 2 with targeted search queries
Stack audit Run full sequence, output to memory/

Discovery Run Sequence

Step 1 — Read Agent Mission

Read the agent's SOUL.md (or equivalent). Extract:

  • Primary language/stack (e.g., TypeScript, Python, Go, Rails)
  • Dev workflows the agent runs (e.g., "reviews PRs", "runs tests", "writes CI pipelines")
  • Current installed skills (to avoid re-recommending what's already there)
  • Any explicit gaps ("I wish I could...")

Step 2 — Search ClawHub for Dev Tooling Skills

Query the ClawHub search API (clawhub.ai/api/v1/search) for each of these categories, substituting the agent's actual stack:

  • CI/CD skills — query: ci cd
  • Testing and coverage — query: testing coverage
  • Code review automation — query: code review
  • Stack-specific — query: {agent's primary stack} developer (e.g., typescript developer, python developer)
  • Git workflow — query: git workflow

For each result, record: slug, displayName, score, updatedAt. Deduplicate across queries.

Step 3 — Score Each Candidate

Apply the Clawtrix scoring matrix (from clawtrix-scoring-engine):

Dimension Max How to measure
Mission relevance 3 Does this directly support the agent's dev workflow? 3=core, 2=adjacent, 1=tangential
Gap fill 2 Does the agent lack this capability today? 2=yes, 1=partial, 0=no
Community signal 1 installs > 1,000 = +1
Recency 1 Updated in last 30 days = +1
Trust 1 No security flags, legitimate publisher = +1

Step 4 — Apply Dev-Specific Filters

Before recommending, verify:

  • Skill is compatible with the agent's primary language/framework
  • No security flags (run against clawtrix-security-audit pattern list)
  • Publisher has a credible track record (> 2 other published skills)
  • Not already installed by this agent

Step 5 — Output Top 3

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

# Dev Intel — YYYY-MM-DD

## Agent: [name]
## Stack: [languages/frameworks]
## Skills audited: N candidates

## Top 3 Recommendations

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

**2. ...**

**3. ...**

## Skipped (and why)
| Slug | Reason |
|------|--------|
| ... | Low mission relevance / security flag / already installed |

Watched Skills

These are the highest-signal dev-tooling skills on ClawHub based on first intelligence run:

Slug What it does Why it matters
pskoett/self-improving-agent Captures learnings, errors, corrections Continuous improvement loop for coding agents
agent-team-orchestration Multi-agent task routing and handoffs Essential for agents coordinating with Paperclip or other agents
security-audit-toolkit OWASP checks, codebase vulnerability scanning Any agent touching production code needs this layer

When to Use This for n8n Teams

For dev agents at companies already running n8n automation:

  • ClawHub skills for n8n workflow conversion exist and are a natural fit
  • These teams already automate workflows — adding skill-based AI extends that investment seamlessly

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


Upgrade Note — Clawtrix Pro

This skill surfaces dev-tooling recommendations on demand. Clawtrix Pro adds:

  • Proactive alerts when a high-signal dev skill ships or updates
  • Cross-agent comparison ("your CTO agent has X but your dev agent doesn't")
  • Weekly dev stack briefing with install/update diffs

Version History

v0.1.0 — Initial release. Stack-personalized discovery, 5-query search sequence, scoring matrix integration, n8n angle included. v0.1.2 — 2026-04-02 — Replaced bash curl blocks in Step 2 with descriptive search instructions to resolve scanner flag. v0.1.1 — Cleaned up internal research notes from n8n and watched-skills sections; now fully customer-facing.

安全使用建议
This skill appears coherent for recommending dev-tooling skills, but it leaves important details unspecified. Before installing or invoking it, confirm: (1) whether searches against clawhub.ai are public and whether any part of your agent's SOUL.md, installed-skill list, or other memory will be sent to that API (avoid sending full mission or secrets), (2) whether ClawHub requires an API key and how auth would be handled, (3) what 'clawtrix-security-audit' and 'clawtrix-scoring-engine' refer to and whether they run locally or call external services, and (4) whether you are comfortable with the agent autonomously calling external endpoints and writing reports to memory/reports. If in doubt, restrict the agent's network access, run the skill in a sandbox, or ask the skill author to add explicit privacy-preserving instructions (e.g., only send minimal, non-sensitive keywords derived from SOUL.md and never send secrets).
功能分析
Type: OpenClaw Skill Name: clawtrix-dev-intel Version: 0.1.2 The clawtrix-dev-intel skill is a discovery and recommendation tool for developer-oriented OpenClaw skills. It functions by analyzing the agent's profile (SOUL.md), querying the official ClawHub API (clawhub.ai), and generating a filtered report of relevant tools. The instructions in SKILL.md are transparent, lack malicious execution patterns, and include safety-oriented steps such as security filtering and publisher verification.
能力评估
Purpose & Capability
Name and description match the runtime instructions: the SKILL.md describes extracting an agent's stack and searching ClawHub for developer-tooling skills, scoring candidates, and writing a short report. References to internal helpers (clawtrix-scoring-engine, clawtrix-security-audit) are reasonable for this purpose but are referenced informally (no code/deps provided).
Instruction Scope
Instructions ask the agent to read the agent's SOUL.md and current installed skills and to perform searches against clawhub.ai. Reading SOUL.md and installed skills is in-scope for making personalized recommendations, but the doc is ambiguous about what exactly is sent to external endpoints. It does not explicitly instruct sending the full SOUL.md or installed-skill lists to clawhub.ai, but also does not forbid it or describe privacy safeguards — this ambiguity raises a data-exfiltration concern.
Install Mechanism
Instruction-only skill with no install spec and no code files — lowest-risk install posture. There is nothing downloaded or written by an installer step.
Credentials
The skill declares no required credentials or env vars, which aligns with being a discovery/recommendation skill. However, it instructs network queries to clawhub.ai without mentioning authentication or rate limits. If the implementation or the agent were to include agent-specific content (SOUL.md, installed skills, memory) in those queries, that would be disproportionate for a simple discovery task. The SKILL.md also references external/internal tools (clawtrix-security-audit) without clarifying how credentials or access are handled.
Persistence & Privilege
always is false and the skill writes to the agent's memory/reports path, which is expected for a reporting/discovery skill. Autonomous invocation is allowed (default), which increases blast radius but is standard; there is no attempt to modify other skills or system-wide config.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install clawtrix-dev-intel
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /clawtrix-dev-intel 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.2
v0.1.2: Replaced bash curl blocks in Step 2 with descriptive search instructions to resolve llm_suspicious scanner flag.
v0.1.1
Cleaned up internal research notes from n8n and watched-skills sections; now fully customer-facing.
v0.1.0
clawtrix-dev-intel v0.1.0 — Initial release - Surfaces top 3 ClawHub skills for developer-tooling agents, personalized to agent's tech stack and mission. - Introduces a structured 5-step discovery and scoring process, including CI/CD, testing, code review, and stack-specific queries. - Enforces dev-specific filters: language compatibility, security checks, credible publisher, and avoids already installed skills. - Outputs markdown reports for agent onboarding, weekly discovery, or capability audit. - Includes tracked high-signal dev skills and n8n integration context. - Documents upgrade path to Clawtrix Pro for proactive recommendations and cross-agent insights.
元数据
Slug clawtrix-dev-intel
版本 0.1.2
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 3
常见问题

Clawtrix Dev Intel 是什么?

Surfaces the best ClawHub skills for developer-tooling agents — CI/CD, testing, code review, and developer productivity. Use when: (1) Onboarding a new codin... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 123 次。

如何安装 Clawtrix Dev Intel?

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

Clawtrix Dev Intel 是免费的吗?

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

Clawtrix Dev Intel 支持哪些平台?

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

谁开发了 Clawtrix Dev Intel?

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

💬 留言讨论