Bug
graphify kiro install fails with:
FileNotFoundError: [Errno 2] No such file or directory: '.../site-packages/graphify/skill-kiro.md'
Steps to Reproduce
pip3 install graphifyy
graphify kiro install
Cause
skill-kiro.md (and likely other .md skill files in the graphify/ package directory) are not included in the package distribution. pyproject.toml needs to include these as package data.
Suggested Fix
Add to pyproject.toml:
[tool.setuptools.package-data]
graphify = ["*.md"]
Environment
Python 3.12.11 (mise)
macOS
Installed via pip from GitHub
Bug
graphify kiro installfails with:FileNotFoundError: [Errno 2] No such file or directory: '.../site-packages/graphify/skill-kiro.md'Steps to Reproduce
pip3 install graphifyygraphify kiro installCause
skill-kiro.md(and likely other.mdskill files in thegraphify/package directory) are not included in the package distribution.pyproject.tomlneeds to include these as package data.Suggested Fix
Add to
pyproject.toml:Environment
Python 3.12.11 (mise)
macOS
Installed via pip from GitHub