skills-cli 0.1.0__tar.gz

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,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: skills-cli
3
+ Version: 0.1.0
4
+ Summary: A CLI tool for managing skills.
5
+ Author-email: Benjamin <benjamin@example.com>
6
+ License-Expression: MIT
7
+ Classifier: Development Status :: 3 - Alpha
8
+ Classifier: Environment :: Console
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Requires-Python: >=3.12
13
+ Description-Content-Type: text/markdown
14
+
15
+ # skills-cli
16
+ CLI for creating and loading agent skills
@@ -0,0 +1,2 @@
1
+ # skills-cli
2
+ CLI for creating and loading agent skills
@@ -0,0 +1,28 @@
1
+ [project]
2
+ name = "skills-cli"
3
+ version = "0.1.0"
4
+ description = "A CLI tool for managing skills."
5
+ readme = "README.md"
6
+ requires-python = ">=3.12"
7
+ dependencies = []
8
+ license = "MIT"
9
+ authors = [
10
+ { name = "Benjamin", email = "benjamin@example.com" }
11
+ ]
12
+ classifiers = [
13
+ "Development Status :: 3 - Alpha",
14
+ "Environment :: Console",
15
+ "Intended Audience :: Developers",
16
+ "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3.12",
18
+ ]
19
+
20
+ [project.scripts]
21
+ skills = "skills_cli.cli:main"
22
+
23
+ [build-system]
24
+ requires = ["setuptools>=61.0"]
25
+ build-backend = "setuptools.build_meta"
26
+
27
+ [tool.setuptools.packages.find]
28
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,3 @@
1
+ """skills-cli: A CLI tool for managing skills."""
2
+
3
+ __version__ = "0.1.0"
@@ -0,0 +1,26 @@
1
+ """Command-line interface for skills-cli."""
2
+
3
+ import argparse
4
+
5
+ from skills_cli import __version__
6
+
7
+
8
+ def main() -> None:
9
+ parser = argparse.ArgumentParser(
10
+ prog="skills",
11
+ description="A CLI tool for managing skills.",
12
+ )
13
+ parser.add_argument(
14
+ "--version",
15
+ action="version",
16
+ version=f"%(prog)s {__version__}",
17
+ )
18
+
19
+ args = parser.parse_args()
20
+
21
+ # TODO: Implement CLI commands
22
+ print("Hello from skills-cli!")
23
+
24
+
25
+ if __name__ == "__main__":
26
+ main()
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: skills-cli
3
+ Version: 0.1.0
4
+ Summary: A CLI tool for managing skills.
5
+ Author-email: Benjamin <benjamin@example.com>
6
+ License-Expression: MIT
7
+ Classifier: Development Status :: 3 - Alpha
8
+ Classifier: Environment :: Console
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Requires-Python: >=3.12
13
+ Description-Content-Type: text/markdown
14
+
15
+ # skills-cli
16
+ CLI for creating and loading agent skills
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/skills_cli/__init__.py
4
+ src/skills_cli/cli.py
5
+ src/skills_cli.egg-info/PKG-INFO
6
+ src/skills_cli.egg-info/SOURCES.txt
7
+ src/skills_cli.egg-info/dependency_links.txt
8
+ src/skills_cli.egg-info/entry_points.txt
9
+ src/skills_cli.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ skills = skills_cli.cli:main
@@ -0,0 +1 @@
1
+ skills_cli