Commit b5d030d
Add 5 lossless-claw-inspired skills (49 total) (#40)
* Add skill-doctor: diagnose silent skill discovery failures
Runs 6 diagnostic checks per skill (YAML parse, required fields, path
conventions, cron format, stateful coherence, schema validity). Exits 1
when FAILs are present — suitable as a post-install gate in install.sh.
* Add installed-skill-auditor: weekly post-install security audit
Detects INJECTION, CREDENTIAL, EXFILTRATION, DRIFT, and ORPHAN issues in
all installed skills. Maintains content baselines for drift detection.
Cron: Mondays 9am. Exits 1 on CRITICAL findings.
* Add skill-trigger-tester: validate description trigger quality before publish
Scores a skill's description against should-fire/should-not-fire prompt
sets. Computes precision, recall, F1, and assigns a grade A–F. Exits 1
on grade C or lower, suitable as a pre-publish gate.
* Add skill-loadout-manager: named skill profiles to manage context bloat
Defines and switches between curated skill subsets (loadouts). Ships
4 presets (minimal, coding, research, ops) and estimates token savings
per loadout vs. all-skills-active mode.
* Add skill-compatibility-checker: detect version/feature incompatibilities
Reads requires_openclaw + requires_features frontmatter fields and
compares against detected (or overridden) OpenClaw version. Ships
feature registry with 5 runtime capabilities and their introduction
versions.
* Add skill-conflict-detector: detect name shadowing and description overlap (#21)
Detects NAME_SHADOW (CRITICAL), EXACT_DUPLICATE (CRITICAL),
HIGH_OVERLAP (HIGH), and MEDIUM_OVERLAP (MEDIUM) conflicts between
installed skills using Jaccard similarity on description tokens.
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
* Add heartbeat-governor: per-skill execution budgets for cron skills (#22)
Tracks 30-day rolling spend and wall-clock time per scheduled skill.
Auto-pauses skills that exceed monthly/per-run budgets. Cron: every
hour. Supports manual pause/resume and per-skill budget overrides.
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
* Add skill-portability-checker: validate OS/binary dependencies in scripts (#23)
Detects OS_SPECIFIC_CALL, MISSING_BINARY, BREW_ONLY, PYTHON_IMPORT,
and HARDCODED_PATH issues in companion scripts. Cross-checks against
os_filter: frontmatter field. No external dependencies.
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
* Update README: document all 39 skills across 3 categories
Adds 8 new integration-focused skills to the tables:
- Core: skill-trigger-tester, skill-conflict-detector, skill-portability-checker
- OpenClaw-native: skill-doctor, installed-skill-auditor, skill-loadout-manager,
skill-compatibility-checker, heartbeat-governor
Expands security section from 3 to 5 skills (adds installed-skill-auditor,
skill-doctor). Updates companion script list and total skill counts.
* Add community-skill-radar: scan Reddit for skill ideas every 3 days (#26)
Searches 5 subreddits (openclaw, LocalLLaMA, ClaudeAI, MachineLearning,
AIAgents) via Reddit's public JSON API. Scores candidates by upvotes,
comments, recurrence, and keyword density. Writes prioritized
PROPOSALS.md for review. Cron: every 3 days at 9am.
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
* Update README: add community-skill-radar (40 skills total)
Adds community-skill-radar to the OpenClaw-Native table (24 skills),
updates companion script list with radar.py, bumps total to 40 skills.
* Add config-encryption-auditor skill (#29)
Scans ~/.openclaw/ config files for plaintext API keys, tokens, and
world-readable permissions. Suggests environment variable migration.
Cron runs Sundays 9am. Companion script: audit.py with --scan,
--fix-permissions, --suggest-env, --status commands.
Inspired by OpenLobster's AES-GCM config encryption layer.
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
* Add tool-description-optimizer skill (#30)
Scores skill descriptions for trigger quality across 5 dimensions:
clarity, specificity, keyword density, uniqueness, and length.
Grades A-F with concrete rewrite suggestions. Companion script:
optimize.py with --scan, --skill, --suggest, --compare, --status.
Inspired by OpenLobster's tool-description scoring layer.
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
* Add mcp-health-checker skill (#31)
Monitors MCP server connections for health, latency, and availability.
Probes stdio servers via JSON-RPC initialize and HTTP servers via GET.
Detects stale connections, timeouts, unreachable servers. Cron runs
every 6 hours. Companion script: check.py with --ping, --config,
--status, --history commands.
Inspired by OpenLobster's MCP connection health monitoring.
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
* Update README: 40 → 44 skills (4 OpenLobster-inspired additions)
Add memory-graph-builder, config-encryption-auditor,
tool-description-optimizer, and mcp-health-checker to the
OpenClaw-Native table. Update security section to 6 skills.
Update companion scripts list.
* Add memory-graph-builder: structured knowledge graph from MEMORY.md (#28)
Parses flat MEMORY.md into nodes with categories, entities, and typed
relationships. Detects duplicates (Jaccard >0.7), contradictions, and
stale entries. Generates compressed memory digest saving 30-60% tokens.
Inspired by OpenLobster's Neo4j graph memory. Cron: nightly 10pm.
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
* Rewrite README for maximum discoverability
Restructured with SEO-rich opening, badges, comparison table,
architecture diagram, use cases section, and defense-in-depth
security overview. Leads with value proposition instead of
implementation details.
* Add memory-dag-compactor skill (#35)
Builds hierarchical summary DAGs from MEMORY.md with depth-aware
prompts (d0 leaf → d3+ durable). Supports search, tree visualization,
inspect, and dissolve. Cron nightly 11pm. Companion script: compact.py.
Inspired by lossless-claw's DAG-based summarization hierarchy.
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
* Add large-file-interceptor skill (#36)
Detects oversized files that would blow the context window, generates
structural exploration summaries (JSON schema, CSV columns, Python
imports, log patterns), and stores compact reference cards. Supports
scan, summarize, restore, and audit. No cron — invoked on demand.
Inspired by lossless-claw's large file interception layer.
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
* Add context-assembly-scorer skill (#37)
Scores how well current context represents full conversation history.
5 dimensions: topic coverage, recency bias, entity continuity,
decision retention, task continuity. Detects blind spots — topics
the agent has effectively forgotten. Cron every 4h.
Inspired by lossless-claw's context assembly system.
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
* Add compaction-resilience-guard skill (#38)
Monitors compaction for failures (empty, inflation, garbled, repetition)
and enforces a 3-level fallback chain: normal → aggressive → deterministic
truncation. Ensures compaction always makes forward progress.
Inspired by lossless-claw's three-level escalation system.
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
* Add memory-integrity-checker skill (#39)
Validates memory summary DAGs with 8 structural checks: orphan nodes,
circular references, token inflation, broken lineage, stale active,
empty nodes, duplicate edges, depth mismatch. Auto-fixes safe issues.
Cron Sundays 3am.
Inspired by lossless-claw's DAG integrity checking system.
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
* Update README: 44 → 49 skills (5 lossless-claw-inspired additions)
Add memory-dag-compactor, large-file-interceptor, context-assembly-scorer,
compaction-resilience-guard, and memory-integrity-checker. Update badges,
comparison table, architecture diagram, companion scripts list.
---------
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>1 parent cfdf49b commit b5d030d
21 files changed
Lines changed: 3477 additions & 12 deletions
File tree
- skills/openclaw-native
- compaction-resilience-guard
- context-assembly-scorer
- large-file-interceptor
- memory-dag-compactor
- memory-integrity-checker
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | | - | |
| 5 | + | |
6 | 6 | | |
7 | | - | |
8 | | - | |
| 7 | + | |
| 8 | + | |
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
| 23 | + | |
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| 29 | + | |
29 | 30 | | |
30 | 31 | | |
31 | 32 | | |
| |||
50 | 51 | | |
51 | 52 | | |
52 | 53 | | |
53 | | - | |
| 54 | + | |
54 | 55 | | |
55 | 56 | | |
56 | 57 | | |
| |||
78 | 79 | | |
79 | 80 | | |
80 | 81 | | |
81 | | - | |
| 82 | + | |
82 | 83 | | |
83 | 84 | | |
84 | 85 | | |
| |||
112 | 113 | | |
113 | 114 | | |
114 | 115 | | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
115 | 121 | | |
116 | 122 | | |
117 | 123 | | |
| |||
142 | 148 | | |
143 | 149 | | |
144 | 150 | | |
145 | | - | |
| 151 | + | |
146 | 152 | | |
147 | | - | |
| 153 | + | |
148 | 154 | | |
149 | 155 | | |
150 | | - | |
| 156 | + | |
151 | 157 | | |
152 | 158 | | |
153 | 159 | | |
| |||
169 | 175 | | |
170 | 176 | | |
171 | 177 | | |
172 | | - | |
| 178 | + | |
173 | 179 | | |
174 | 180 | | |
175 | 181 | | |
| |||
192 | 198 | | |
193 | 199 | | |
194 | 200 | | |
195 | | - | |
| 201 | + | |
196 | 202 | | |
197 | 203 | | |
198 | 204 | | |
| |||
228 | 234 | | |
229 | 235 | | |
230 | 236 | | |
| 237 | + | |
Lines changed: 94 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
Lines changed: 30 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
Lines changed: 65 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
0 commit comments