MCPcopy
hub / github.com/zhayujie/CowAgent / _new_skill_dirs

Function _new_skill_dirs

tests/test_evolution.py:546–551  ·  view source on GitHub ↗

Skill directories created beyond the seeded set.

(ws: Path)

Source from the content-addressed store, hash-verified

544
545
546def _new_skill_dirs(ws: Path) -> set:
547 """Skill directories created beyond the seeded set."""
548 skills_dir = ws / "skills"
549 if not skills_dir.exists():
550 return set()
551 return {p.name for p in skills_dir.iterdir() if p.is_dir()} - _SEED_SKILLS
552
553
554# ---------------------------------------------------------------------------

Callers 2

run_stubFunction · 0.85
run_realFunction · 0.85

Calls 1

setFunction · 0.85

Tested by

no test coverage detected