askm 0.1.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.
askm/__init__.py ADDED
@@ -0,0 +1,2 @@
1
+ def main() -> None:
2
+ print("Hello from skm!")
@@ -0,0 +1,56 @@
1
+ Metadata-Version: 2.4
2
+ Name: askm
3
+ Version: 0.1.0
4
+ Summary: askm - Agent Skills Manager
5
+ Keywords: cli,ai,skills,manager,agents
6
+ Author: Rubens Andrade
7
+ Author-email: Rubens Andrade <38709237+andrader@users.noreply.github.com>
8
+ License-Expression: MIT
9
+ Requires-Python: >=3.14
10
+ Project-URL: Homepage, https://github.com/andrader/askm
11
+ Project-URL: Issues, https://github.com/andrader/askm/issues
12
+ Project-URL: Repository, https://github.com/andrader/askm
13
+ Description-Content-Type: text/markdown
14
+
15
+ # askm: Agent Skills Manager
16
+
17
+ `askm` is a tool for managing agent skills. It helps maintain a collection of specialized agents and their associated instructions.
18
+
19
+ ## Project Structure
20
+
21
+ - `skills/`: The core collection of skill definitions and their metadata.
22
+ - `src/askm/`: The Python-based management CLI (Agent Skills Manager).
23
+
24
+
25
+ ## Installation
26
+
27
+ You can run `askm` directly or install it as a tool using `uv`:
28
+
29
+ ```bash
30
+ # Run without installing
31
+ uvx git+https://github.com/andrader/askm --help
32
+
33
+ # Install as a global tool
34
+ uv tool install git+https://github.com/andrader/askm
35
+ askm --help
36
+
37
+ # Or with pip
38
+ pip install git+https://github.com/andrader/askm
39
+ askm --help
40
+ ```
41
+
42
+ ## Getting Started
43
+
44
+ ```bash
45
+ # Example command (to be implemented)
46
+ askm --help
47
+ ```
48
+
49
+
50
+ ## Contributing
51
+
52
+ Contributions are welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for details on development setup, guidelines, and publishing.
53
+
54
+
55
+
56
+
@@ -0,0 +1,5 @@
1
+ askm/__init__.py,sha256=XJFgbCj6gX3tMOncN9Lrd6K_LqWl21pmu_ZBuQTvAeU,49
2
+ askm-0.1.0.dist-info/WHEEL,sha256=GuAqCqoyQuys5_R4zkHUJFlKXw4RpRLNzo31-ui90WQ,81
3
+ askm-0.1.0.dist-info/entry_points.txt,sha256=N7qOryx8VhmQiwKENQmy8nFFfKTLTba4gb7a7kIh1po,36
4
+ askm-0.1.0.dist-info/METADATA,sha256=LXGFprl8kljMkD0rXuP2-K8YeH1sZwDr0gwmC9lZtQ8,1394
5
+ askm-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: uv 0.10.12
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ askm = askm:main
3
+