pkgq 0.3.1__tar.gz → 0.3.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.
- {pkgq-0.3.1 → pkgq-0.3.2}/.claude-plugin/plugin.json +4 -3
- {pkgq-0.3.1 → pkgq-0.3.2}/HISTORY.md +11 -0
- {pkgq-0.3.1 → pkgq-0.3.2}/Makefile +0 -8
- {pkgq-0.3.1 → pkgq-0.3.2}/PACKAGE.md +1 -1
- {pkgq-0.3.1 → pkgq-0.3.2}/PKG-INFO +2 -2
- {pkgq-0.3.1 → pkgq-0.3.2}/README.md +1 -1
- {pkgq-0.3.1 → pkgq-0.3.2}/pyproject.toml +2 -8
- {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/__init__.py +1 -1
- {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/mcp.py +1 -1
- {pkgq-0.3.1 → pkgq-0.3.2}/uv.lock +1 -1
- pkgq-0.3.1/MANIFEST.in +0 -2
- {pkgq-0.3.1 → pkgq-0.3.2}/.github/workflows/test.yml +0 -0
- {pkgq-0.3.1 → pkgq-0.3.2}/.gitignore +0 -0
- {pkgq-0.3.1 → pkgq-0.3.2}/CLAUDE.md +0 -0
- {pkgq-0.3.1 → pkgq-0.3.2}/LICENSE +0 -0
- {pkgq-0.3.1 → pkgq-0.3.2}/REQUIREMENTS.md +0 -0
- {pkgq-0.3.1 → pkgq-0.3.2}/TODO.md +0 -0
- {pkgq-0.3.1 → pkgq-0.3.2}/analysis/functional.md +0 -0
- {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/cli.py +0 -0
- {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/find.py +0 -0
- {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/plugin.py +0 -0
- {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/skills/__init__.py +0 -0
- {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/skills/create/SKILL.md +0 -0
- {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/skills/create/__init__.py +0 -0
- {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/skills/update/SKILL.md +0 -0
- {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/skills/update/__init__.py +0 -0
- {pkgq-0.3.1 → pkgq-0.3.2}/tests/__init__.py +0 -0
- {pkgq-0.3.1 → pkgq-0.3.2}/tests/test_find.py +0 -0
- {pkgq-0.3.1 → pkgq-0.3.2}/tests/test_plugin.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pkgq",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Package Query - Find, create, and update package documentation for AI agents",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Christophe VG",
|
|
@@ -17,5 +17,6 @@
|
|
|
17
17
|
"agents",
|
|
18
18
|
"pypi",
|
|
19
19
|
"mcp"
|
|
20
|
-
]
|
|
21
|
-
|
|
20
|
+
],
|
|
21
|
+
"skills": [ "./src/pkgq/skills" ]
|
|
22
|
+
}
|
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# pkgq Version History
|
|
2
2
|
|
|
3
|
+
## 0.3.2 (2026-06-26)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- **Package structure**: Fixed skills directory location for proper distribution
|
|
8
|
+
- Removed symlink that broke hatchling build process
|
|
9
|
+
- Configured skills path in plugin.json for local development
|
|
10
|
+
- Skills now properly included in installed package at `pkgq/skills/`
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
3
14
|
## 0.3.1 (2026-06-26)
|
|
4
15
|
|
|
5
16
|
### Bug Fixes
|
|
@@ -73,11 +73,3 @@ clean: ## Remove build artifacts
|
|
|
73
73
|
|
|
74
74
|
clean-all: clean ## Remove virtualenv and lock file
|
|
75
75
|
rm -rf .venv uv.lock
|
|
76
|
-
|
|
77
|
-
## Help
|
|
78
|
-
|
|
79
|
-
help: ## Show this help message
|
|
80
|
-
@echo "Usage: make [target]"
|
|
81
|
-
@echo ""
|
|
82
|
-
@echo "Targets:"
|
|
83
|
-
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' Makefile | grep -v "install-pythons\|sync" | sort | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-15s\033[0m %s\n", $$1, $$2}'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pkgq
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Package Query - Find API information for Python packages
|
|
5
5
|
Project-URL: Homepage, https://github.com/christophevg/pkgq
|
|
6
6
|
Project-URL: Documentation, https://github.com/christophevg/pkgq#readme
|
|
@@ -136,7 +136,7 @@ visibility into agent operations.
|
|
|
136
136
|
|
|
137
137
|
% pkgq cache --list
|
|
138
138
|
Cached packages (3):
|
|
139
|
-
pkgq 0.3.
|
|
139
|
+
pkgq 0.3.2 (pypi)
|
|
140
140
|
roomz 0.2.0 (github:christophevg/roomz)
|
|
141
141
|
yoker 0.5.0 (github:christophevg/yoker)
|
|
142
142
|
```
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "pkgq"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.2"
|
|
8
8
|
description = "Package Query - Find API information for Python packages"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -57,12 +57,6 @@ Documentation = "https://github.com/christophevg/pkgq#readme"
|
|
|
57
57
|
Repository = "https://github.com/christophevg/pkgq"
|
|
58
58
|
Issues = "https://github.com/christophevg/pkgq/issues"
|
|
59
59
|
|
|
60
|
-
[tool.hatch.build.targets.wheel]
|
|
61
|
-
packages = ["src/pkgq"]
|
|
62
|
-
artifacts = ["src/pkgq/skills/**/*.md"]
|
|
63
|
-
|
|
64
|
-
[tool.hatch.build.targets.sdist]
|
|
65
|
-
|
|
66
60
|
[tool.pytest.ini_options]
|
|
67
61
|
testpaths = ["tests"]
|
|
68
62
|
asyncio_mode = "auto"
|
|
@@ -125,4 +119,4 @@ commands_pre = [
|
|
|
125
119
|
["uv", "pip", "install", "-e", "."],
|
|
126
120
|
["uv", "pip", "install", "pytest", "pytest-cov", "pytest-asyncio"],
|
|
127
121
|
]
|
|
128
|
-
commands = [["pytest", "tests", "-v", "--cov=pkgq", "--cov-report=term-missing"]]
|
|
122
|
+
commands = [["pytest", "tests", "-v", "--cov=pkgq", "--cov-report=term-missing"]]
|
pkgq-0.3.1/MANIFEST.in
DELETED
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|