File size: 26,268 Bytes
31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 92f06d8 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 528decd 31e282f 92f06d8 31e282f | 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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 | #!/usr/bin/env python3
"""
skill_add.py -- Add new skills with automatic micro-skill conversion and wiki ingestion.
Usage:
# Single skill
python skill_add.py --skill-path /path/to/SKILL.md --name my-skill \
--wiki ~/.claude/skill-wiki --skills-dir ~/.claude/skills
# Batch from directory
python skill_add.py --scan-dir /path/to/new-skills/ \
--wiki ~/.claude/skill-wiki --skills-dir ~/.claude/skills
"""
import argparse
import os
import re
import sys
import yaml # type: ignore[import-untyped]
from datetime import datetime, timezone
from pathlib import Path
from batch_convert import convert_skill
from ctx.core.entity_update import build_update_review, render_update_review
from ctx.core.quality.skillspector_service import SkillSpectorResult
from ctx.core.quality.skillspector_service import render_scan_report
from ctx.core.quality.skillspector_service import run_skillspector_scan
from ctx.core.quality.skillspector_service import skill_scan_target
from ctx_config import cfg
from intake_pipeline import IntakeRejected, check_intake, record_embedding
from ctx.adapters.claude_code.install.install_utils import safe_copy_file
from ctx.core.wiki.wiki_queue import enqueue_entity_upsert
from ctx.core.wiki.wiki_packs import (
load_merged_wiki_pages,
write_active_wiki_overlay_pack,
)
from ctx.core.wiki.wiki_sync import append_log, ensure_wiki, update_index
from ctx.core.wiki.wiki_utils import parse_frontmatter, validate_skill_name
from ctx.utils._fs_utils import reject_symlink_path, safe_atomic_write_text
TODAY = datetime.now(timezone.utc).strftime("%Y-%m-%d")
# ββ Tag inference βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def infer_tags(name: str, content: str) -> list[str]:
"""Infer taxonomy tags from skill name and file content."""
combined = f"{name} {content}".lower()
found = [tag for tag in cfg.all_tags if re.search(rf"\b{re.escape(tag)}\b", combined)]
return found if found else ["uncategorized"]
# ββ Skills-dir helpers ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def install_skill(source: Path, skills_dir: Path, name: str) -> Path:
"""Copy SKILL.md into skills_dir/<name>/SKILL.md. Returns the installed path."""
dest_dir = skills_dir / name
dest = dest_dir / "SKILL.md"
safe_copy_file(source, dest, dest_root=skills_dir)
return dest
def mirror_install_body(installed_path: Path, name: str, converted_root: Path) -> Path:
"""Mirror a short installed SKILL.md into the wiki install source tree."""
dest = converted_root / name / "SKILL.md"
safe_copy_file(installed_path, dest, dest_root=converted_root)
return dest
# ββ Conversion ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def maybe_convert(
installed_path: Path,
name: str,
converted_root: Path,
line_count: int,
) -> tuple[bool, Path | None]:
"""Convert skill to micro-skill pipeline if >180 lines.
Args:
installed_path: Path to the installed SKILL.md (original, never touched).
name: Skill name.
converted_root: ~/.claude/skill-wiki/converted/
line_count: Pre-computed line count of the source file.
Returns:
(was_converted, output_dir | None)
"""
if line_count <= cfg.line_threshold:
return False, None
output_dir = converted_root / name
output_dir.mkdir(parents=True, exist_ok=True)
# batch_convert.convert_skill operates on the source path and writes to output_dir
result = convert_skill(installed_path, output_dir)
if result.get("status") == "converted":
return True, output_dir
return False, None
# ββ Wiki entity page ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def build_entity_page(
*,
name: str,
tags: list[str],
line_count: int,
has_pipeline: bool,
original_path: Path,
related: list[str],
scan_sources: list[str],
security_scan: SkillSpectorResult | None = None,
) -> str:
"""Render the full entity page markdown for a skill."""
pipeline_path_str = (
f"converted/{name}/" if has_pipeline else "null"
)
fm_dict: dict = {
"title": name,
"created": TODAY,
"updated": TODAY,
"type": "skill",
"status": "installed",
"tags": tags,
"source": "local",
"original_path": str(original_path),
"original_lines": line_count,
"has_pipeline": has_pipeline,
"pipeline_path": pipeline_path_str,
"always_load": False,
"never_load": False,
"last_used": TODAY,
"use_count": 0,
"avg_session_rating": None,
"notes": "",
}
if scan_sources:
fm_dict["sources"] = scan_sources
if security_scan is not None:
fm_dict["skillspector_checked"] = True
fm_dict["skillspector_status"] = security_scan.status
fm_dict["skillspector_exit_code"] = security_scan.exit_code
fm_dict["skillspector_note"] = "ctx-run SkillSpector check; not NVIDIA endorsement"
frontmatter_body = yaml.safe_dump(fm_dict, default_flow_style=False, allow_unicode=True, sort_keys=False)
frontmatter_block = f"---\n{frontmatter_body}---"
related_links = "\n".join(f"- [[entities/skills/{r}]]" for r in related[:6])
if not related_links:
related_links = "<!-- No related skills found yet -->"
pipeline_note = (
f"Pipeline converted to `{pipeline_path_str}` (original: {line_count} lines)."
if has_pipeline
else f"Skill is {line_count} lines β under the {cfg.line_threshold}-line threshold, no pipeline generated."
)
security_section = ""
if security_scan is not None:
security_section = f"""
## Security Check
SkillSpector status: `{security_scan.status}`.
This is a ctx-run check, not NVIDIA endorsement or certification.
"""
return frontmatter_block + f"""
# {name}
## Overview
{pipeline_note}
## Tags
{', '.join(f'`{t}`' for t in tags)}
## Related Skills
{related_links}
## Usage History
| Date | Action | Notes |
|------|--------|-------|
| {TODAY} | Added | Ingested via skill_add.py |
{security_section}
"""
def write_entity_page(wiki_path: Path, name: str, content: str) -> bool:
"""Write entity page. Returns True if newly created."""
is_new = _read_entity_page_text(wiki_path, name) is None
_write_entity_page_text(wiki_path, name, content)
return is_new
def _skill_relpath(name: str) -> str:
return f"entities/skills/{name}.md"
def _read_entity_page_text(wiki_path: Path, name: str) -> str | None:
relpath = _skill_relpath(name)
page = wiki_path / relpath
if page.exists():
reject_symlink_path(page)
packs_dir = wiki_path / "wiki-packs"
if packs_dir.is_dir():
pages = load_merged_wiki_pages(packs_dir)
if relpath in pages:
return pages[relpath]
if page.exists():
return page.read_text(encoding="utf-8", errors="replace")
return None
def _write_entity_page_text(wiki_path: Path, name: str, content: str) -> None:
relpath = _skill_relpath(name)
page = wiki_path / relpath
packs_dir = wiki_path / "wiki-packs"
if page.exists() or not packs_dir.is_dir():
reject_symlink_path(page)
safe_atomic_write_text(page, content, encoding="utf-8")
if packs_dir.is_dir():
write_active_wiki_overlay_pack(
packs_dir=packs_dir,
pages={relpath: content},
tombstones=[],
)
def _load_skill_pages(wiki_path: Path) -> dict[str, str]:
packs_dir = wiki_path / "wiki-packs"
if packs_dir.is_dir():
return {
Path(relpath).stem: text
for relpath, text in load_merged_wiki_pages(packs_dir).items()
if relpath.startswith("entities/skills/") and relpath.endswith(".md")
}
skills_dir = wiki_path / "entities" / "skills"
pages: dict[str, str] = {}
for page in sorted(skills_dir.glob("*.md")):
reject_symlink_path(page)
pages[page.stem] = page.read_text(encoding="utf-8", errors="replace")
return pages
# ββ Wikilink backfill βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _tag_set_from_frontmatter(raw: object) -> set[str]:
if raw is None:
return set()
if isinstance(raw, str):
values = raw.strip()
if values.startswith("[") and values.endswith("]"):
values = values[1:-1]
return {item.strip().strip("'\"") for item in values.split(",") if item.strip()}
if isinstance(raw, (list, tuple, set, frozenset)):
return {str(item).strip().strip("'\"") for item in raw if str(item).strip()}
return {str(raw).strip().strip("'\"")} if str(raw).strip() else set()
def _existing_skill_review_text(entity_page: Path, installed_path: Path) -> str:
wiki_path = entity_page.parents[2]
if entity_page.exists():
reject_symlink_path(entity_page)
existing_page = _read_entity_page_text(wiki_path, entity_page.stem)
if existing_page is not None:
existing = existing_page
if installed_path.exists():
reject_symlink_path(installed_path)
installed = installed_path.read_text(encoding="utf-8", errors="replace")
existing += f"\n\n## Installed SKILL.md\n\n{installed}"
return existing
reject_symlink_path(installed_path)
return installed_path.read_text(encoding="utf-8", errors="replace")
def _proposed_skill_review_text(
*,
name: str,
tags: list[str],
line_count: int,
source_content: str,
installed_path: Path,
wiki_path: Path,
) -> str:
page_content = build_entity_page(
name=name,
tags=tags,
line_count=line_count,
has_pipeline=line_count > cfg.line_threshold,
original_path=installed_path,
related=find_related_skills(wiki_path, name, tags),
scan_sources=detect_scan_sources(wiki_path, name),
)
return f"{page_content}\n\n## Proposed SKILL.md\n\n{source_content}"
def find_related_skills(wiki_path: Path, name: str, tags: list[str]) -> list[str]:
"""Scan existing entity pages for skills that share at least one tag."""
related: list[str] = []
tag_set = set(tags) - {"uncategorized"}
for slug, content in sorted(_load_skill_pages(wiki_path).items()):
if slug == name:
continue
page_tags = _tag_set_from_frontmatter(parse_frontmatter(content).get("tags"))
if tag_set & page_tags:
related.append(slug)
return related
def _add_backlink(wiki_path: Path, target_name: str, source_name: str) -> None:
"""Add a [[wikilink]] from target page back to source if not already present."""
content = _read_entity_page_text(wiki_path, target_name)
if content is None:
return
link = f"[[entities/skills/{source_name}]]"
if link in content:
return
# Append under Related Skills section if present, else end of file
if "## Related Skills" in content:
content = content.replace(
"## Related Skills\n",
f"## Related Skills\n- {link}\n",
1,
)
else:
content = content.rstrip() + f"\n\n- {link}\n"
_write_entity_page_text(wiki_path, target_name, content)
def wire_backlinks(wiki_path: Path, name: str, related: list[str]) -> None:
"""Bidirectionally add wikilinks between name and each related skill."""
for target in related:
_add_backlink(wiki_path, target, name)
# ββ Scan-source detection βββββββββββββββββββββββββββββββββββββββββββββββββββββ
def detect_scan_sources(wiki_path: Path, name: str) -> list[str]:
"""Return filenames in raw/scans/ that reference this skill name."""
scans_dir = wiki_path / "raw" / "scans"
if not scans_dir.exists():
return []
sources: list[str] = []
for scan in sorted(scans_dir.glob("*.json")):
try:
text = scan.read_text(encoding="utf-8", errors="replace")
if name in text:
sources.append(scan.name)
except OSError:
pass
return sources
# ββ Core orchestration ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def add_skill(
*,
source_path: Path,
name: str,
wiki_path: Path,
skills_dir: Path,
review_existing: bool = False,
update_existing: bool = False,
security_scan: bool = False,
security_scan_required: bool = False,
security_scan_use_llm: bool = False,
security_scan_command: list[str] | None = None,
skillspector_bin: str | None = None,
security_scan_timeout: int = 120,
) -> dict:
"""Add a single skill: install, convert if needed, ingest into wiki.
Returns a result dict with keys: name, installed, converted, is_new_page.
"""
validate_skill_name(name)
reject_symlink_path(source_path)
# Reject oversized files before reading into memory
file_size = source_path.stat().st_size
if file_size > 1_048_576: # 1 MB
raise ValueError(
f"SKILL.md too large ({file_size:,} bytes). Max 1 MB. "
f"Split the skill or trim content before ingestion."
)
content = source_path.read_text(encoding="utf-8-sig", errors="replace")
line_count = len(content.splitlines())
installed_path = skills_dir / name / "SKILL.md"
entity_page = wiki_path / "entities" / "skills" / f"{name}.md"
has_existing = (
installed_path.exists()
or _read_entity_page_text(wiki_path, name) is not None
)
tags = infer_tags(name, content)
if review_existing and has_existing and not update_existing:
review = build_update_review(
entity_type="skill",
slug=name,
existing_text=_existing_skill_review_text(entity_page, installed_path),
proposed_text=_proposed_skill_review_text(
name=name,
tags=tags,
line_count=line_count,
source_content=content,
installed_path=installed_path,
wiki_path=wiki_path,
),
)
return {
"name": name,
"installed": str(installed_path),
"converted": False,
"is_new_page": False,
"skipped": True,
"update_required": True,
"update_review": render_update_review(review),
}
scan_result = None
if security_scan:
scan_result = run_skillspector_scan(
skill_scan_target(source_path),
command=security_scan_command,
binary=skillspector_bin,
use_llm=security_scan_use_llm,
timeout_seconds=security_scan_timeout,
)
if security_scan_required and scan_result.status != "passed":
raise ValueError(
"SkillSpector security scan did not pass: "
f"{scan_result.status}\n\n{render_scan_report(scan_result)}"
)
if not has_existing:
# Intake gate: reject broken/duplicate candidates before we touch
# skills-dir. Existing updates bypass similarity intake because
# they compare against their own cached embedding.
decision = check_intake(content, "skills")
if not decision.allow:
raise IntakeRejected(decision)
# 1. Install original into skills-dir (never modified after this)
installed_path = install_skill(source_path, skills_dir, name)
# Record the candidate's embedding so future intake checks can
# rank against it. Failure here is non-fatal β the install already
# succeeded and a missing vector only weakens the next check, it
# doesn't corrupt anything.
try:
record_embedding(subject_id=name, raw_md=content, subject_type="skills")
except Exception as exc: # noqa: BLE001 β cache failure must not break install
print(
f"Warning: failed to record intake embedding for {name}: {exc}",
file=sys.stderr,
)
# 2. Convert if above threshold
converted_root = wiki_path / "converted"
converted, pipeline_path = maybe_convert(installed_path, name, converted_root, line_count)
if not converted:
mirror_install_body(installed_path, name, converted_root)
# 3. Detect related skills and scan sources (before writing new page)
related = find_related_skills(wiki_path, name, tags)
scan_sources = detect_scan_sources(wiki_path, name)
# Ensure at least 2 wikilinks (pad with first two related even if no tag match)
all_entity_pages = sorted(
slug for slug in _load_skill_pages(wiki_path) if slug != name
)
while len(related) < 2 and len(all_entity_pages) > len(related):
candidate = all_entity_pages[len(related)]
if candidate not in related:
related.append(candidate)
# 4. Write entity page
page_content = build_entity_page(
name=name,
tags=tags,
line_count=line_count,
has_pipeline=converted,
original_path=installed_path,
related=related,
scan_sources=scan_sources,
security_scan=scan_result,
)
is_new = write_entity_page(wiki_path, name, page_content)
# 5. Bidirectional wikilinks
wire_backlinks(wiki_path, name, related)
# 6. Index + log
if is_new:
update_index(str(wiki_path), [name])
log_details = [
f"Source: {source_path}",
f"Installed: {installed_path}",
f"Lines: {line_count}",
f"Tags: {', '.join(tags)}",
f"Converted: {converted}",
f"Related: {', '.join(related) if related else 'none'}",
]
if converted and pipeline_path:
log_details.append(f"Pipeline: {pipeline_path}")
append_log(str(wiki_path), "add-skill", name, log_details)
queue_job = enqueue_entity_upsert(
wiki_path,
entity_type="skill",
slug=name,
entity_path=wiki_path / "entities" / "skills" / f"{name}.md",
content=page_content,
action="created" if is_new else "updated",
source="skill_add",
)
# Append to the unified audit log so post-hoc investigations can
# reconstruct every add/convert/install event without mining
# per-subsystem log files. See src/ctx_audit_log.py.
try:
from ctx_audit_log import log_skill_event
log_skill_event(
"skill.added" if is_new else "skill.installed",
name,
actor="cli",
meta={
"source": str(source_path),
"installed": str(installed_path),
"lines": line_count,
"converted": converted,
"tags": tags,
"related": related,
"skillspector_status": (
scan_result.status if scan_result is not None else None
),
},
)
if converted:
log_skill_event(
"skill.converted", name, actor="cli",
meta={"pipeline": str(pipeline_path)},
)
except Exception: # noqa: BLE001 β audit is best-effort
pass
return {
"name": name,
"installed": str(installed_path),
"converted": converted,
"is_new_page": is_new,
"skipped": False,
"update_required": False,
"queued_job_id": queue_job.id,
"security_scan": scan_result.to_json() if scan_result is not None else None,
}
# ββ CLI βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def main() -> None:
parser = argparse.ArgumentParser(description="Add new skills with wiki ingestion")
parser.add_argument("--skill-path", help="Path to a single SKILL.md to add")
parser.add_argument("--name", help="Skill name (required with --skill-path)")
parser.add_argument("--scan-dir", help="Directory of skills to batch-add (each subdir with SKILL.md)")
parser.add_argument("--skip-existing", action="store_true", help="Skip skills already installed (prevents overwrites)")
parser.add_argument(
"--update-existing",
action="store_true",
help="Apply the reviewed replacement when a skill already exists",
)
parser.add_argument(
"--no-security-scan",
action="store_true",
help="Do not run SkillSpector before adding or updating a skill",
)
parser.add_argument(
"--security-scan-optional",
action="store_true",
help="Run SkillSpector but do not fail the add when it reports findings or is missing",
)
parser.add_argument(
"--security-scan-use-llm",
action="store_true",
help="Allow SkillSpector LLM analysis instead of static-only --no-llm",
)
parser.add_argument(
"--skillspector-bin",
default=None,
help="SkillSpector executable. Defaults to CTX_SKILLSPECTOR_BIN or 'skillspector' on PATH.",
)
parser.add_argument(
"--security-scan-timeout",
type=int,
default=120,
help="SkillSpector timeout in seconds (default: 120)",
)
parser.add_argument("--wiki", default=str(cfg.wiki_dir), help="Wiki path")
parser.add_argument("--skills-dir", default=str(cfg.skills_dir), help="Skills install path")
args = parser.parse_args()
wiki_path = Path(os.path.expanduser(args.wiki))
skills_dir = Path(os.path.expanduser(args.skills_dir))
ensure_wiki(str(wiki_path))
skills_dir.mkdir(parents=True, exist_ok=True)
if args.skill_path and args.scan_dir:
print("Error: use --skill-path or --scan-dir, not both.", file=sys.stderr)
sys.exit(1)
if not args.skill_path and not args.scan_dir:
print("Error: --skill-path or --scan-dir is required.", file=sys.stderr)
sys.exit(1)
# Build the list of (source_path, name) pairs to process
candidates: list[tuple[Path, str]] = []
if args.skill_path:
if not args.name:
print("Error: --name is required with --skill-path.", file=sys.stderr)
sys.exit(1)
source = Path(os.path.expanduser(args.skill_path))
if not source.exists():
print(f"Error: {source} does not exist.", file=sys.stderr)
sys.exit(1)
candidates.append((source, args.name))
if args.scan_dir:
scan_root = Path(os.path.expanduser(args.scan_dir))
if not scan_root.exists():
print(f"Error: {scan_root} does not exist.", file=sys.stderr)
sys.exit(1)
for skill_md in sorted(scan_root.rglob("SKILL.md")):
skill_name = skill_md.parent.name
candidates.append((skill_md, skill_name))
if not candidates:
print(f"No SKILL.md files found under {scan_root}.", file=sys.stderr)
sys.exit(0)
added = updated = converted = skipped = errors = 0
total = len(candidates)
for i, (source_path, name) in enumerate(candidates, 1):
# Skip if already installed and --skip-existing is set
if args.skip_existing and (
(skills_dir / name / "SKILL.md").exists()
or _read_entity_page_text(wiki_path, name) is not None
):
skipped += 1
if skipped <= 5 or skipped % 100 == 0:
print(f" [{i}/{total}] [skipped] {name}")
continue
try:
result = add_skill(
source_path=source_path,
name=name,
wiki_path=wiki_path,
skills_dir=skills_dir,
review_existing=True,
update_existing=args.update_existing,
security_scan=not args.no_security_scan,
security_scan_required=(
not args.no_security_scan and not args.security_scan_optional
),
security_scan_use_llm=args.security_scan_use_llm,
skillspector_bin=args.skillspector_bin,
security_scan_timeout=args.security_scan_timeout,
)
if result.get("skipped"):
skipped += 1
if result.get("update_review"):
print(result["update_review"])
print(f" [{i}/{total}] [update-review] {name}")
continue
if result["is_new_page"]:
added += 1
else:
updated += 1
if result["converted"]:
converted += 1
status = (
"updated"
if not result["is_new_page"]
else "converted" if result["converted"] else "installed"
)
scan = result.get("security_scan")
scan_suffix = (
f"; SkillSpector: {scan.get('status')}"
if isinstance(scan, dict)
else ""
)
print(f" [{i}/{total}] [{status}] {name}{scan_suffix}")
except Exception as exc:
errors += 1
print(f" [{i}/{total}] ERROR: {name}: {exc}", file=sys.stderr)
print(
f"\nDone: {added} added, {updated} updated, {converted} converted, "
f"{skipped} skipped, {errors} errors"
)
if errors:
sys.exit(1)
if __name__ == "__main__":
main()
|