MCPcopy Index your code
hub / github.com/shareAI-lab/learn-claude-code / descriptions

Method descriptions

agents/s_full.py:216–218  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

214 self.skills[name] = {"meta": meta, "body": body}
215
216 def descriptions(self) -> str:
217 if not self.skills: return "(no skills)"
218 return "\n".join(f" - {n}: {s['meta'].get('description', '-')}" for n, s in self.skills.items())
219
220 def load(self, name: str) -> str:
221 s = self.skills.get(name)

Callers 1

s_full.pyFile · 0.80

Calls 1

getMethod · 0.45

Tested by

no test coverage detected