repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
Mirrored from https://github.com/yingqi-z20/Agent-libOS
stars
latest
clone command
git clone gitlawb://did:key:z6MkqRzA...RfoM/yingqi-z20-Agen...git clone gitlawb://did:key:z6MkqRzA.../yingqi-z20-Agen...d98dd2c9IPC1d ago| #3 | from dataclasses import dataclass, field |
| #4 | from typing import Any |
| #5 |
| #6 |
| #7 | @dataclass(frozen=True) |
| #8 | class SkillSpec: |
| #9 | skill_id: str |
| #10 | name: str |
| #11 | version: str = "v0" |
| #12 | description: str = "" |
| #13 | required_capabilities: list[dict[str, Any]] = field(default_factory=list) |
| #14 | signed: bool = False |
| #15 | metadata: dict[str, Any] = field(default_factory=dict) |
| #16 |
| #17 |