npx coding-tutor-skill install command fails with npm 404
Hi! Thanks for publishing this project.
The README currently documents installation like this:
npx coding-tutor-skill --skill tutor
However, this fails because coding-tutor-skill does not appear to be published to the npm registry.
Error
npm error code E404
npm error 404 Not Found - GET https://registry.npmjs.org/coding-tutor-skill - Not found
npm error 404 The requested resource 'coding-tutor-skill@*' could not be found or you do not have permission to access it.
Environment
OS: Windows
Shell: PowerShell
Node/npm: using npx
Additional issue with GitHub npx install
I also tried running the package directly from GitHub:
npx github:zeufack/coding-tutor --skill tutor --print
This starts the installer, but then fails with:
Available skills: (none)
Skill "tutor" not found.
It looks like the package.json includes:
"files": [ "bin", "skills", "prompts", "adapters" ]
But the actual skill folders are at the repository root:
tutor/
challenger/
debugger/
explainer/
reviewer/
lecture/
course-builder/
interviewer/
So when npm packs the GitHub repo, those folders may not be included.
Possible fixes
Either:
- Publish
coding-tutor-skill to npm, so the documented command works:
npx coding-tutor-skill --skill tutor
- Update
package.json so the root skill folders are included, for example:
"files": [
"bin",
"tutor",
"challenger",
"debugger",
"explainer",
"reviewer",
"lecture",
"course-builder",
"interviewer"
]
- Update the README with a manual installation method using
git clone.
Thanks!
npx coding-tutor-skillinstall command fails with npm 404Hi! Thanks for publishing this project.
The README currently documents installation like this:
However, this fails because
coding-tutor-skilldoes not appear to be published to the npm registry.Error
Environment
Additional issue with GitHub npx install
I also tried running the package directly from GitHub:
This starts the installer, but then fails with:
It looks like the
package.jsonincludes:But the actual skill folders are at the repository root:
So when npm packs the GitHub repo, those folders may not be included.
Possible fixes
Either:
coding-tutor-skillto npm, so the documented command works:package.jsonso the root skill folders are included, for example:git clone.Thanks!