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

workspace-analyzer工作空间分析器

Agent Skill

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

总安装

15,853

周安装

654

GitHub Stars

公开资料未说明

下载量

5,180
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:workspace-analyzer(工作空间分析器)
来源仓库:https://github.com/zendenho7/workspace-analyzer
安装命令:
openclaw skills install workspace-analyzer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install workspace-analyzer

简介

工作空间分析器用于诊断 OpenClaw 工作区结构和内容问题。

  • 识别维护需求、重复项和组织缺陷。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 输出 JSON 报告供进一步处理。
  • 运行前应排除敏感路径以防信息泄露。
  • 建议结合审计结果制定清理计划。workspace-analyzer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
workspace-analyzer
description
Analyzes OpenClaw workspace structure and content to identify maintenance needs, bloat, duplicates, and organization issues. Outputs a JSON report for the agent to review and act upon.
version
1.1.0
metadata

Workspace Analyzer

"Scans, analyzes, and reports. The agent decides."

Overview

A self-improving agent needs a clean workspace. This skill analyzes any OpenClaw workspace to:

  1. Detect core files dynamically (adapts to workspace changes)
  2. Analyze content for issues (bloat, duplicates, broken links)
  3. Validate single source of truth (content in multiple places)
  4. Report actionable insights for the agent to act upon

Key Principle: The script analyzes → the agent decides → the agent acts.


Installation

# Clone or copy to your skills folder
cp -r workspace-analyzer/ ~/.openclaw/workspace/skills/

Usage

Run Analysis

# Full analysis (default)
python3 skills/workspace-analyzer/scripts/analyzer.py

# Quick scan (structure only, no content analysis)
python3 skills/workspace-analyzer/scripts/analyzer.py --quick

# Specific workspace
python3 skills/workspace-analyzer/scripts/analyzer.py --root /path/to/workspace

# Output to file
python3 skills/workspace-analyzer/scripts/analyzer.py --output report.json

Output Format

{
  "scan_info": {
    "root": "/home/user/.openclaw/workspace",
    "timestamp": "2026-02-21T18:00:00Z",
    "files_scanned": 291
  },
  "core_files_detected": {
    "kai_core": {
      "files": ["SOUL.md", "OPERATING.md", ...],
      "count": 11
    },
    "mission_control": {...},
    "agent_cores": {...},
    "skills": {...}
  },
  "analysis": {
    "SOUL.md": {
      "category": "kai_core",
      "line_count": 450,
      "sections": [...],
      "wiki_links": [...],
      "issues": [...]
    }
  },
  "single_source_validation": {
    "skill_graph": {
      "status": "PASS/FAIL",
      "locations": ["AGENTS.md", "OPERATING.md", "SOUL.md"],
      "recommendation": "Reference all to SUB_CONSCIOUS.md"
    },
    "memory_architecture": {...},
    "image_handling": {...}
  },
  "recommendations": [
    {"action": "FIX_DUPLICATE_CONTENT", "topic": "skill_graph", "files": ["AGENTS.md", "OPERATING.md"], "severity": "CRITICAL"},
    {"action": "REVIEW_BLOAT", "file": "OPERATING.md", "severity": "WARN"},
    {"action": "CHECK_DUPLICATE", "severity": "WARN"},
    {"action": "CHECK_BROKEN_LINK", "severity": "INFO"}
  ],
  "summary": {
    "total_files": 291,
    "total_issues": 17,
    "total_recommendations": 25
  }
}

Single Source of Truth Validation

What It Checks

The analyzer validates that each topic exists in exactly ONE place:

TopicExpected Single Source
Skill GraphSUB_CONSCIOUS.md
Memory ArchitectureOPERATING.md or SUB_CONSCIOUS.md
Message ReactionsSUB_CONSCIOUS.md
Image HandlingOPERATING.md
Session BootstrapAGENTS.md

Detection Logic

  1. Scan all core files for key section headings
  2. Build content map of where each topic appears
  3. Flag violations where topic appears in 2+ places
  4. Recommend fix by pointing to single source

Example Output

{
  "single_source_validation": {
    "skill_graph": {
      "status": "FAIL",
      "locations": ["AGENTS.md:285", "OPERATING.md:56", "SOUL.md:52"],
      "severity": "CRITICAL",
      "recommendation": "Consolidate to SUB_CONSCIOUS.md, reference from others"
    },
    "memory_architecture": {
      "status": "FAIL", 
      "locations": ["AGENTS.md:157", "OPERATING.md:74", "OPERATING.md:193"],
      "severity": "CRITICAL",
      "recommendation": "Remove duplicate section at OPERATING.md:193"
    }
  }
}

Features

Dynamic Core File Detection

Automatically detects core files based on location patterns:

CategoryPatternExample
KAI CoreRoot *.mdSOUL.md, OPERATING.md
Mission Controlmission_control/*GUIDELINES.mdMISSION_CONTROL_GUIDELINES.md
Agent Coresmission_control/agents/*/*.mddesigner/SOUL.md
Skillsskills/*/SKILL.mdreact-expert/SKILL.md
SUB_CONSCIOUSRoot SUB_CONSCIOUS.mdSUB_CONSCIOUS.md

Category-Specific Thresholds

Bloat thresholds vary by category:

CategoryWarningCritical
kai_core400600
mission_control500800
agent_cores300500
skills6001000
memory500800
docs400600
SUB_CONSCIOUS100200

Issue Detection

  • BLOAT_WARNING: File exceeds warning threshold
  • BLOAT_CRITICAL: File exceeds critical threshold
  • ORPHAN_WARNING: File not modified in 30+ days
  • DUPLICATE_CONTENT: Same topic in multiple files
  • BROKEN_WIKI_LINK: Wiki-link may not match any file

Recommendations

The analyzer generates actionable recommendations:

ActionSeverityDescriptionWhat To Do
FIX_DUPLICATE_CONTENTCRITICALSame content in 2+ filesConsolidate to single source
REVIEW_BLOATWARN/CRITICALFile is too largeReview if legitimate or split
REVIEW_ORPHANINFOFile hasn't been modifiedArchive if no longer needed
CHECK_DUPLICATEWARNPotential duplicate filesVerify if intentional or merge
CHECK_BROKEN_LINKINFOWiki-link may be brokenVerify if skill exists
CHECK_MISSINGWARNExpected core files not foundCreate if needed

Fix Instructions for Agents

When duplicate content is detected, follow these steps:

Step 1: Identify the True Source

Determine which file should be the single source:

TopicShould Be In
Reflex behaviorsSUB_CONSCIOUS.md
Session bootstrapAGENTS.md
ProceduresOPERATING.md
Identity principlesSOUL.md
Knowledge indexKNOWLEDGE_GRAPH.md

Step 2: Update Non-Source Files

Replace duplicate content with references:

**Topic:** See [[SUB_CONSCIOUS.md]] for procedures.

Step 3: Verify Bootstrap Injection

Ensure new files are injected at session start:

Check ~/.openclaw/openclaw.json:

{
  "hooks": {
    "internal": {
      "entries": {
        "bootstrap-extra-files": {
          "enabled": true,
          "paths": ["SUB_CONSCIOUS.md", "self-improving/memory.md"]
        }
      }
    }
  }
}

Step 4: Commit Changes

git add -A
git commit -m "Fix duplicate content - consolidate to single source"

Interpretation Guide

How to Use Results

Step 1: Prioritize by Severity

CRITICAL → Review immediately
WARN → Review during next maintenance
INFO → Review during weekly cleanup

Step 2: Check Single Source Validation

FAIL → Fix duplicate content first (most important)
PASS → Move to other issues

Step 3: Understand Context

  • BLOAT = Informational, not all need fixing

- Reference docs (skills/*/references/*.md) can be legitimately large - Research logs are consolidations - consider splitting by date - Session logs - archive old ones

  • DUPLICATES = Check if intentional

- IDENTITY files = Expected (agent templates) - REVIEW files = May need consolidation - LESSONS files = OK (different skills)

  • BROKEN LINKS = Usually false positives

- Links to skills like [[blogwatcher]] ARE valid - Skills have SKILL.md suffix - analyzer doesn't detect this - Only flag if link to core file is truly broken

Step 4: Take Action

  1. Don't auto-fix - review first
  2. Archive old session logs monthly
  3. Split large research logs by topic
  4. Keep reference docs as-is (legitimate)
  5. Fix duplicate content by consolidating to single source

Integration

With Heartbeat

Add to your HEARTBEAT.md maintenance section:

## 7. Memory + Workspace Maintenance

### Run Workspace Analyzer
python3 skills/workspace-analyzer/scripts/analyzer.py --output /tmp/analysis.json

### Review Single Source Validation
- Check for DUPLICATE_CONTENT issues
- Fix by consolidating to single source

### Review Recommendations
- Check recommendations in output
- Prioritize by severity
- Fix issues manually

Output to Memory

Save analysis results for later review:

python3 skills/workspace-analyzer/scripts/analyzer.py \
  --output memory/$(date +%Y-%m-%d)-workspace-analysis.json

Safety & Security

Read-Only

  • Never modifies files
  • Only reads and analyzes

No Secrets

  • Never reads API keys
  • Never accesses credentials
  • Only analyzes file metadata and content structure

Safe Output

  • Only contains: file paths, sizes, line counts, recommendations
  • No sensitive data exposed

Limitations

  • No auto-fix: Script reports, agent must decide and act
  • Wiki-link false positives: Links to external skills may appear broken
  • Date-based duplicate detection: May miss non-date-based duplicates

Examples

Sample Output - Single Source Validation

{
  "single_source_validation": {
    "skill_graph": {
      "status": "FAIL",
      "files": ["AGENTS.md", "OPERATING.md", "SOUL.md"],
      "severity": "CRITICAL",
      "recommendation": "Reference all to SUB_CONSCIOUS.md"
    },
    "memory_architecture": {
      "status": "FAIL",
      "files": ["AGENTS.md", "OPERATING.md"],
      "severity": "CRITICAL", 
      "recommendation": "Remove duplicate in OPERATING.md"
    },
    "message_reactions": {
      "status": "PASS",
      "files": ["SUB_CONSCIOUS.md"],
      "severity": "OK"
    }
  }
}

Sample Output - Recommendations

[
  {
    "action": "FIX_DUPLICATE_CONTENT",
    "topic": "skill_graph",
    "files": ["AGENTS.md:285", "OPERATING.md:56", "SOUL.md:52"],
    "severity": "CRITICAL",
    "recommendation": "Replace with reference to SUB_CONSCIOUS.md"
  },
  {
    "action": "REVIEW_BLOAT",
    "file": "OPERATING.md",
    "category": "kai_core",
    "reason": "503 lines - consider splitting (threshold: 400)",
    "severity": "WARN"
  }
]

Skill Graph

This skill is related to:

  • [[mcporter]] - For MCP server analysis
  • [[clean-workspace]] - For actual cleanup tasks
  • [[qmd]] - For memory organization

Changelog

v1.1.0 (2026-02-24)

  • Added single source of truth validation
  • Added duplicate content detection (same topics in multiple files)
  • Added FIX_DUPLICATE_CONTENT recommendation type
  • Added SUB_CONSCIOUS category
  • Added fix instructions for agents

v1.0 (2026-02-21)

  • Initial release
  • Basic file analysis
  • Core file detection
  • Bloat detection

*Last updated: 2026-02-24*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

76.77%
按下载量换算3,977

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills