askm 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.
- askm-0.1.0/PKG-INFO +56 -0
- askm-0.1.0/README.md +42 -0
- askm-0.1.0/pyproject.toml +24 -0
- askm-0.1.0/src/askm/__init__.py +2 -0
askm-0.1.0/PKG-INFO
ADDED
|
@@ -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
|
+
|
askm-0.1.0/README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# askm: Agent Skills Manager
|
|
2
|
+
|
|
3
|
+
`askm` is a tool for managing agent skills. It helps maintain a collection of specialized agents and their associated instructions.
|
|
4
|
+
|
|
5
|
+
## Project Structure
|
|
6
|
+
|
|
7
|
+
- `skills/`: The core collection of skill definitions and their metadata.
|
|
8
|
+
- `src/askm/`: The Python-based management CLI (Agent Skills Manager).
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
You can run `askm` directly or install it as a tool using `uv`:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
# Run without installing
|
|
17
|
+
uvx git+https://github.com/andrader/askm --help
|
|
18
|
+
|
|
19
|
+
# Install as a global tool
|
|
20
|
+
uv tool install git+https://github.com/andrader/askm
|
|
21
|
+
askm --help
|
|
22
|
+
|
|
23
|
+
# Or with pip
|
|
24
|
+
pip install git+https://github.com/andrader/askm
|
|
25
|
+
askm --help
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Getting Started
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
# Example command (to be implemented)
|
|
32
|
+
askm --help
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
## Contributing
|
|
37
|
+
|
|
38
|
+
Contributions are welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for details on development setup, guidelines, and publishing.
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "askm"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "askm - Agent Skills Manager"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "MIT"
|
|
7
|
+
keywords = ["cli", "ai", "skills", "manager", "agents"]
|
|
8
|
+
authors = [
|
|
9
|
+
{ name = "Rubens Andrade", email = "38709237+andrader@users.noreply.github.com" }
|
|
10
|
+
]
|
|
11
|
+
requires-python = ">=3.14"
|
|
12
|
+
dependencies = []
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Homepage = "https://github.com/andrader/askm"
|
|
16
|
+
Issues = "https://github.com/andrader/askm/issues"
|
|
17
|
+
Repository = "https://github.com/andrader/askm"
|
|
18
|
+
|
|
19
|
+
[project.scripts]
|
|
20
|
+
askm = "askm:main"
|
|
21
|
+
|
|
22
|
+
[build-system]
|
|
23
|
+
requires = ["uv_build>=0.10.7,<0.11.0"]
|
|
24
|
+
build-backend = "uv_build"
|