agent-skill-manager 0.1.1__tar.gz → 0.1.2__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.
- {agent_skill_manager-0.1.1 → agent_skill_manager-0.1.2}/PKG-INFO +3 -12
- {agent_skill_manager-0.1.1 → agent_skill_manager-0.1.2}/README.md +2 -11
- {agent_skill_manager-0.1.1 → agent_skill_manager-0.1.2}/pyproject.toml +1 -1
- {agent_skill_manager-0.1.1 → agent_skill_manager-0.1.2}/src/skill_manager/cli.py +1 -2
- {agent_skill_manager-0.1.1 → agent_skill_manager-0.1.2}/src/skill_manager/deployment.py +0 -1
- {agent_skill_manager-0.1.1 → agent_skill_manager-0.1.2}/src/skill_manager/metadata.py +0 -1
- {agent_skill_manager-0.1.1 → agent_skill_manager-0.1.2}/uv.lock +1 -1
- agent_skill_manager-0.1.1/Dockerfile +0 -21
- agent_skill_manager-0.1.1/docker-compose.yml +0 -0
- agent_skill_manager-0.1.1/main.py +0 -9
- {agent_skill_manager-0.1.1 → agent_skill_manager-0.1.2}/.gitignore +0 -0
- {agent_skill_manager-0.1.1 → agent_skill_manager-0.1.2}/.pre-commit-config.yaml +0 -0
- {agent_skill_manager-0.1.1 → agent_skill_manager-0.1.2}/.python-version +0 -0
- {agent_skill_manager-0.1.1 → agent_skill_manager-0.1.2}/SKILL.md +0 -0
- {agent_skill_manager-0.1.1 → agent_skill_manager-0.1.2}/examples/.gitkeep +0 -0
- {agent_skill_manager-0.1.1 → agent_skill_manager-0.1.2}/scripts/.gitkeep +0 -0
- {agent_skill_manager-0.1.1 → agent_skill_manager-0.1.2}/src/skill_manager/__init__.py +0 -0
- {agent_skill_manager-0.1.1 → agent_skill_manager-0.1.2}/src/skill_manager/agents.py +0 -0
- {agent_skill_manager-0.1.1 → agent_skill_manager-0.1.2}/src/skill_manager/github.py +0 -0
- {agent_skill_manager-0.1.1 → agent_skill_manager-0.1.2}/src/skill_manager/removal.py +0 -0
- {agent_skill_manager-0.1.1 → agent_skill_manager-0.1.2}/src/skill_manager/validation.py +0 -0
- {agent_skill_manager-0.1.1 → agent_skill_manager-0.1.2}/tests/.gitkeep +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-skill-manager
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: CLI tool for managing AI agent skills across multiple platforms
|
|
5
5
|
Project-URL: Homepage, https://github.com/ackness/skill-manager
|
|
6
6
|
Project-URL: Repository, https://github.com/ackness/skill-manager
|
|
@@ -64,17 +64,8 @@ A comprehensive CLI tool for managing AI agent skills across multiple platforms.
|
|
|
64
64
|
Run directly without installing (recommended for trying it out):
|
|
65
65
|
|
|
66
66
|
```bash
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
# Use sm command for specific operations
|
|
71
|
-
uvx --from agent-skill-manager sm install
|
|
72
|
-
uvx --from agent-skill-manager sm list
|
|
73
|
-
uvx --from agent-skill-manager sm update --all
|
|
74
|
-
|
|
75
|
-
# Or create an alias for convenience
|
|
76
|
-
alias sm="uvx --from agent-skill-manager sm"
|
|
77
|
-
sm install # Now you can use it like the installed version
|
|
67
|
+
uv tool install agent-skill-manager
|
|
68
|
+
sm
|
|
78
69
|
```
|
|
79
70
|
|
|
80
71
|
### Permanent Installation
|
|
@@ -39,17 +39,8 @@ A comprehensive CLI tool for managing AI agent skills across multiple platforms.
|
|
|
39
39
|
Run directly without installing (recommended for trying it out):
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
# Use sm command for specific operations
|
|
46
|
-
uvx --from agent-skill-manager sm install
|
|
47
|
-
uvx --from agent-skill-manager sm list
|
|
48
|
-
uvx --from agent-skill-manager sm update --all
|
|
49
|
-
|
|
50
|
-
# Or create an alias for convenience
|
|
51
|
-
alias sm="uvx --from agent-skill-manager sm"
|
|
52
|
-
sm install # Now you can use it like the installed version
|
|
42
|
+
uv tool install agent-skill-manager
|
|
43
|
+
sm
|
|
53
44
|
```
|
|
54
45
|
|
|
55
46
|
### Permanent Installation
|
|
@@ -41,7 +41,6 @@ from .metadata import (
|
|
|
41
41
|
save_skill_metadata,
|
|
42
42
|
)
|
|
43
43
|
from .removal import (
|
|
44
|
-
clean_trash,
|
|
45
44
|
hard_delete_skill,
|
|
46
45
|
list_installed_skills,
|
|
47
46
|
list_trashed_skills,
|
|
@@ -700,7 +699,7 @@ def cmd_uninstall() -> int:
|
|
|
700
699
|
Panel.fit(
|
|
701
700
|
f"[bold green]✓ Uninstallation successful![/bold green]\n\n"
|
|
702
701
|
f"Removed {success_count} skills\n"
|
|
703
|
-
+ (
|
|
702
|
+
+ ("[dim]Skills moved to trash and can be restored with 'sm restore'[/dim]" if deletion_type == "soft" else ""),
|
|
704
703
|
border_style="green",
|
|
705
704
|
)
|
|
706
705
|
)
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
FROM python:3.13-slim-trixie
|
|
2
|
-
|
|
3
|
-
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
|
|
4
|
-
|
|
5
|
-
ENV UV_CACHE_DIR=/root/.cache/uv \
|
|
6
|
-
UV_LINK_MODE=copy \
|
|
7
|
-
UV_COMPILE_BYTECODE=1
|
|
8
|
-
|
|
9
|
-
WORKDIR /app
|
|
10
|
-
|
|
11
|
-
RUN --mount=type=cache,target=${UV_CACHE_DIR} \
|
|
12
|
-
--mount=type=bind,source=uv.lock,target=uv.lock \
|
|
13
|
-
--mount=type=bind,source=pyproject.toml,target=pyproject.toml \
|
|
14
|
-
uv sync --locked --no-install-project
|
|
15
|
-
|
|
16
|
-
COPY . .
|
|
17
|
-
|
|
18
|
-
RUN --mount=type=cache,target=${UV_CACHE_DIR} \
|
|
19
|
-
uv sync --locked
|
|
20
|
-
|
|
21
|
-
CMD ["uv", "run", "python", "main.py"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|