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.
Files changed (29) hide show
  1. {pkgq-0.3.1 → pkgq-0.3.2}/.claude-plugin/plugin.json +4 -3
  2. {pkgq-0.3.1 → pkgq-0.3.2}/HISTORY.md +11 -0
  3. {pkgq-0.3.1 → pkgq-0.3.2}/Makefile +0 -8
  4. {pkgq-0.3.1 → pkgq-0.3.2}/PACKAGE.md +1 -1
  5. {pkgq-0.3.1 → pkgq-0.3.2}/PKG-INFO +2 -2
  6. {pkgq-0.3.1 → pkgq-0.3.2}/README.md +1 -1
  7. {pkgq-0.3.1 → pkgq-0.3.2}/pyproject.toml +2 -8
  8. {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/__init__.py +1 -1
  9. {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/mcp.py +1 -1
  10. {pkgq-0.3.1 → pkgq-0.3.2}/uv.lock +1 -1
  11. pkgq-0.3.1/MANIFEST.in +0 -2
  12. {pkgq-0.3.1 → pkgq-0.3.2}/.github/workflows/test.yml +0 -0
  13. {pkgq-0.3.1 → pkgq-0.3.2}/.gitignore +0 -0
  14. {pkgq-0.3.1 → pkgq-0.3.2}/CLAUDE.md +0 -0
  15. {pkgq-0.3.1 → pkgq-0.3.2}/LICENSE +0 -0
  16. {pkgq-0.3.1 → pkgq-0.3.2}/REQUIREMENTS.md +0 -0
  17. {pkgq-0.3.1 → pkgq-0.3.2}/TODO.md +0 -0
  18. {pkgq-0.3.1 → pkgq-0.3.2}/analysis/functional.md +0 -0
  19. {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/cli.py +0 -0
  20. {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/find.py +0 -0
  21. {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/plugin.py +0 -0
  22. {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/skills/__init__.py +0 -0
  23. {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/skills/create/SKILL.md +0 -0
  24. {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/skills/create/__init__.py +0 -0
  25. {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/skills/update/SKILL.md +0 -0
  26. {pkgq-0.3.1 → pkgq-0.3.2}/src/pkgq/skills/update/__init__.py +0 -0
  27. {pkgq-0.3.1 → pkgq-0.3.2}/tests/__init__.py +0 -0
  28. {pkgq-0.3.1 → pkgq-0.3.2}/tests/test_find.py +0 -0
  29. {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.1",
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}'
@@ -201,7 +201,7 @@ The plugin manifest is automatically discovered when pkgq is loaded as a yoker p
201
201
 
202
202
  ## Version Notes
203
203
 
204
- **Current Version:** 0.3.1
204
+ **Current Version:** 0.3.2
205
205
 
206
206
  ### Recent Features
207
207
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pkgq
3
- Version: 0.3.1
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.1 (pypi)
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
  ```
@@ -96,7 +96,7 @@ visibility into agent operations.
96
96
 
97
97
  % pkgq cache --list
98
98
  Cached packages (3):
99
- pkgq 0.3.1 (pypi)
99
+ pkgq 0.3.2 (pypi)
100
100
  roomz 0.2.0 (github:christophevg/roomz)
101
101
  yoker 0.5.0 (github:christophevg/yoker)
102
102
  ```
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "pkgq"
7
- version = "0.3.1"
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"]]
@@ -4,7 +4,7 @@ pkgq - Package Query
4
4
  Find API information for Python packages.
5
5
  """
6
6
 
7
- __version__ = "0.3.1"
7
+ __version__ = "0.3.2"
8
8
 
9
9
  from pkgq.find import FindResult, find
10
10
  from pkgq.plugin import __YOKER_MANIFEST__
@@ -13,7 +13,7 @@ from pkgq import find
13
13
  # Create MCP server
14
14
  mcp = FastMCP(
15
15
  name="pkgq",
16
- version="0.3.1",
16
+ version="0.3.2",
17
17
  )
18
18
 
19
19
 
@@ -1327,7 +1327,7 @@ wheels = [
1327
1327
 
1328
1328
  [[package]]
1329
1329
  name = "pkgq"
1330
- version = "0.3.1"
1330
+ version = "0.3.2"
1331
1331
  source = { editable = "." }
1332
1332
  dependencies = [
1333
1333
  { name = "httpx" },
pkgq-0.3.1/MANIFEST.in DELETED
@@ -1,2 +0,0 @@
1
- recursive-include src/pkgq/skills *.md
2
- graft src/pkgq/skills
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