* refactor(skills): shipped-set slim — 15 skills to optional, github six-way merge, pdf absorbs OCR+nano-pdf, channel-gated teams pipeline
Maintainer-directed shipped-skills curation (skills index 1,900 -> ~1,400
tok/call on desktop; every session pays the index, so this is a per-call
diet on all installs):
- optional-skills moves (installable via skills hub, history preserved):
creative comfyui/ascii-art/excalidraw/pretext/sketch/touchdesigner-mcp;
ALL of mlops (huggingface-hub, llama-cpp, serving-llms-vllm,
weights-and-biases, evaluating-llms-harness — subcategory structure
kept); research-paper-writing (55 supporting files, 17.3K-tok load);
openhue; blogwatcher (first taught the cronjob monitor-field watch
pattern + web_extract instead of pre-cron manual workflows)
- DELETED session-librarian (Aug-12 'inspired by Perplexity Computer'
port, never maintainer-intended; session_search covers discovery)
- github: six skills (auth, issues, pr-workflow, issue-to-pr,
code-review, repo-management) merged into ONE software-development/
github skill — routing body + complete per-workflow references;
benbarclay authorship credited; codebase-inspection rides along;
discipline pins from test_github_issue_to_pr_skill.py preserved
against the reference body in the new test_github_skill.py
- pdf absorbs ocr-and-documents + nano-pdf as references/ + scripts
(extract_pymupdf, extract_marker converted to the argparse house
standard its contract test enforces)
- NEW session_platforms frontmatter gate (metadata.hermes): hides a
skill from the index on gateway channels it is not for; fail-open on
unknown platform; teams-meeting-pipeline gated to [teams, cron]
- blocked-page-recovery: research -> new web category; trigger-first
description ('Use when a fetch fails: 403/429, paywall, WAF, bot
wall.') so the model actually reaches for it on blocked fetches
- docs regenerated via generate-skill-docs.py (195 pages); related_skills
swept repo-wide; tests: 1672 passed (2 openclaw failures pre-existing
on clean main, Windows-local)
* chore: ignore .skills_prompt_snapshot.json (local index cache, accidentally committed)
69 lines
2.3 KiB
Python
69 lines
2.3 KiB
Python
"""Tests for check_deps.py — focuses on parsing logic that doesn't need a server."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from check_deps import (
|
|
NODE_TO_PACKAGE,
|
|
model_present,
|
|
normalize_for_match,
|
|
suggest_install_command,
|
|
)
|
|
|
|
|
|
class TestNormalizeForMatch:
|
|
def test_basic(self):
|
|
s = normalize_for_match("model.safetensors")
|
|
assert "model.safetensors" in s
|
|
assert "model" in s
|
|
|
|
def test_subfolder(self):
|
|
s = normalize_for_match("subdir/model.pt")
|
|
assert "subdir/model.pt" in s
|
|
assert "model.pt" in s
|
|
assert "model" in s
|
|
|
|
|
|
class TestModelPresent:
|
|
def test_exact_match(self):
|
|
assert model_present("a.safetensors", {"a.safetensors", "b.safetensors"}) is True
|
|
|
|
def test_extension_difference(self):
|
|
# User said "model" but installed is "model.safetensors"
|
|
assert model_present("model", {"model.safetensors"}) is True
|
|
# Reverse direction — also matches
|
|
assert model_present("model.safetensors", {"model"}) is True
|
|
|
|
def test_subfolder_match(self):
|
|
# Installed list has "subdir/model.safetensors", workflow asks "model.safetensors"
|
|
assert model_present("model.safetensors", {"subdir/model.safetensors"}) is True
|
|
|
|
def test_missing(self):
|
|
assert model_present("missing.safetensors", {"a.safetensors", "b.safetensors"}) is False
|
|
|
|
def test_empty_installed(self):
|
|
assert model_present("anything.safetensors", set()) is False
|
|
|
|
|
|
class TestSuggestInstallCommand:
|
|
def test_known_node(self):
|
|
cmd = suggest_install_command("VHS_VideoCombine")
|
|
assert cmd == "comfy node install comfyui-videohelpersuite"
|
|
|
|
def test_unknown_node(self):
|
|
assert suggest_install_command("SomeRandomNodeName123") is None
|
|
|
|
|
|
class TestNodePackageMap:
|
|
def test_no_duplicates(self):
|
|
# Each node should map to exactly one package
|
|
keys = list(NODE_TO_PACKAGE.keys())
|
|
assert len(keys) == len(set(keys))
|
|
|
|
def test_packages_are_safe_for_shell(self):
|
|
# Registry slugs must be alphanumerics + hyphens/underscores only
|
|
# (passed straight to `comfy node install <pkg>`).
|
|
import re
|
|
safe = re.compile(r"^[A-Za-z0-9][A-Za-z0-9._\-]*$")
|
|
for pkg in NODE_TO_PACKAGE.values():
|
|
assert safe.match(pkg), f"Unsafe package slug: {pkg!r}"
|