skillnav 0.0.1__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,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: skillnav
3
+ Version: 0.0.1
4
+ Summary: CLI client for the Skill management platform (MonoSkillNavigator)
5
+ License: Apache-2.0
6
+ Keywords: skill,cli,agent,registry
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: Apache Software License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+
13
+ # skillnav
14
+
15
+ CLI client for the Skill management platform (MonoSkillNavigator).
16
+
17
+ > **Placeholder release (0.0.1)** — reserved on PyPI. The full command surface
18
+ > is specified in the platform repo at `docs/cli-design.md` and will be
19
+ > implemented in upcoming releases.
20
+
21
+ ## Install
22
+
23
+ ```bash
24
+ pipx install skillnav
25
+ ```
26
+
27
+ ## Usage
28
+
29
+ ```bash
30
+ skillnav --version
31
+ skillnav --help
32
+ ```
33
+
34
+ ## Roadmap
35
+
36
+ - 0.1.0 — auth (login/logout/whoami/token) + search/top/info/status
37
+ - 0.2.0 — publish/--dry-run/review + report
38
+ - 0.3.0 — download/install + community (rate/issue/issues/contributor)
39
+ - 1.0.0 — freeze command surface, full `--json` coverage
40
+
41
+ ## License
42
+
43
+ Apache-2.0
@@ -0,0 +1,31 @@
1
+ # skillnav
2
+
3
+ CLI client for the Skill management platform (MonoSkillNavigator).
4
+
5
+ > **Placeholder release (0.0.1)** — reserved on PyPI. The full command surface
6
+ > is specified in the platform repo at `docs/cli-design.md` and will be
7
+ > implemented in upcoming releases.
8
+
9
+ ## Install
10
+
11
+ ```bash
12
+ pipx install skillnav
13
+ ```
14
+
15
+ ## Usage
16
+
17
+ ```bash
18
+ skillnav --version
19
+ skillnav --help
20
+ ```
21
+
22
+ ## Roadmap
23
+
24
+ - 0.1.0 — auth (login/logout/whoami/token) + search/top/info/status
25
+ - 0.2.0 — publish/--dry-run/review + report
26
+ - 0.3.0 — download/install + community (rate/issue/issues/contributor)
27
+ - 1.0.0 — freeze command surface, full `--json` coverage
28
+
29
+ ## License
30
+
31
+ Apache-2.0
@@ -0,0 +1,23 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "skillnav"
7
+ version = "0.0.1"
8
+ description = "CLI client for the Skill management platform (MonoSkillNavigator)"
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = { text = "Apache-2.0" }
12
+ keywords = ["skill", "cli", "agent", "registry"]
13
+ classifiers = [
14
+ "Programming Language :: Python :: 3",
15
+ "License :: OSI Approved :: Apache Software License",
16
+ "Operating System :: OS Independent",
17
+ ]
18
+
19
+ [project.scripts]
20
+ skillnav = "skillnav.cli:main"
21
+
22
+ [tool.setuptools.packages.find]
23
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,3 @@
1
+ """skillnav — CLI client for the Skill management platform (MonoSkillNavigator)."""
2
+
3
+ __version__ = "0.0.1"
@@ -0,0 +1,4 @@
1
+ from skillnav.cli import main
2
+
3
+ if __name__ == "__main__":
4
+ raise SystemExit(main())
@@ -0,0 +1,53 @@
1
+ """Placeholder entry point for the skillnav CLI.
2
+
3
+ The full command surface is specified in ``docs/cli-design.md`` at the
4
+ repository root. This release (0.0.1) only reserves the PyPI name and
5
+ provides ``--version`` / ``--help``.
6
+ """
7
+
8
+ from __future__ import annotations
9
+
10
+ import argparse
11
+
12
+ from skillnav import __version__
13
+
14
+
15
+ def build_parser() -> argparse.ArgumentParser:
16
+ parser = argparse.ArgumentParser(
17
+ prog="skillnav",
18
+ description="CLI client for the Skill management platform (MonoSkillNavigator).",
19
+ )
20
+ parser.add_argument(
21
+ "-v", "--version", action="version", version=f"skillnav {__version__}"
22
+ )
23
+ parser.add_argument(
24
+ "--registry", help="Registry API base URL (default: config file)"
25
+ )
26
+ parser.add_argument(
27
+ "--json", action="store_true", help="Machine-readable JSON output"
28
+ )
29
+ parser.add_argument(
30
+ "--no-input", action="store_true", help="Never prompt for input"
31
+ )
32
+ parser.add_argument("command", nargs="?", help="Command (see docs/cli-design.md)")
33
+ parser.add_argument("args", nargs=argparse.REMAINDER, help=argparse.SUPPRESS)
34
+ return parser
35
+
36
+
37
+ def main(argv: list[str] | None = None) -> int:
38
+ parser = build_parser()
39
+ args = parser.parse_args(argv)
40
+
41
+ if not args.command:
42
+ parser.print_help()
43
+ return 0
44
+
45
+ print(
46
+ f"skillnav {__version__}: command '{args.command}' is not implemented yet "
47
+ f"(see docs/cli-design.md)"
48
+ )
49
+ return 1
50
+
51
+
52
+ if __name__ == "__main__":
53
+ raise SystemExit(main())
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: skillnav
3
+ Version: 0.0.1
4
+ Summary: CLI client for the Skill management platform (MonoSkillNavigator)
5
+ License: Apache-2.0
6
+ Keywords: skill,cli,agent,registry
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: Apache Software License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+
13
+ # skillnav
14
+
15
+ CLI client for the Skill management platform (MonoSkillNavigator).
16
+
17
+ > **Placeholder release (0.0.1)** — reserved on PyPI. The full command surface
18
+ > is specified in the platform repo at `docs/cli-design.md` and will be
19
+ > implemented in upcoming releases.
20
+
21
+ ## Install
22
+
23
+ ```bash
24
+ pipx install skillnav
25
+ ```
26
+
27
+ ## Usage
28
+
29
+ ```bash
30
+ skillnav --version
31
+ skillnav --help
32
+ ```
33
+
34
+ ## Roadmap
35
+
36
+ - 0.1.0 — auth (login/logout/whoami/token) + search/top/info/status
37
+ - 0.2.0 — publish/--dry-run/review + report
38
+ - 0.3.0 — download/install + community (rate/issue/issues/contributor)
39
+ - 1.0.0 — freeze command surface, full `--json` coverage
40
+
41
+ ## License
42
+
43
+ Apache-2.0
@@ -0,0 +1,10 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/skillnav/__init__.py
4
+ src/skillnav/__main__.py
5
+ src/skillnav/cli.py
6
+ src/skillnav.egg-info/PKG-INFO
7
+ src/skillnav.egg-info/SOURCES.txt
8
+ src/skillnav.egg-info/dependency_links.txt
9
+ src/skillnav.egg-info/entry_points.txt
10
+ src/skillnav.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ skillnav = skillnav.cli:main
@@ -0,0 +1 @@
1
+ skillnav