progressive-skills-mcp 0.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,29 @@
1
+ """Public package interface for the Skillz MCP server."""
2
+
3
+ from ._version import __version__
4
+ from ._server import (
5
+ Skill,
6
+ SkillError,
7
+ SkillMetadata,
8
+ SkillRegistry,
9
+ SkillValidationError,
10
+ build_server,
11
+ configure_logging,
12
+ list_skills,
13
+ main,
14
+ parse_args,
15
+ )
16
+
17
+ __all__ = [
18
+ "Skill",
19
+ "SkillError",
20
+ "SkillMetadata",
21
+ "SkillRegistry",
22
+ "SkillValidationError",
23
+ "build_server",
24
+ "configure_logging",
25
+ "list_skills",
26
+ "main",
27
+ "parse_args",
28
+ "__version__",
29
+ ]
@@ -0,0 +1,13 @@
1
+ """Console script entry point for the Skillz MCP server."""
2
+
3
+ from ._server import main
4
+
5
+
6
+ def run() -> None:
7
+ """Execute the CLI using the stored entry point."""
8
+
9
+ main()
10
+
11
+
12
+ if __name__ == "__main__":
13
+ run()