Skip to content

npx coding-tutor-skill install command fails with npm 404 #1

Description

@aallnneess

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:

  1. Publish coding-tutor-skill to npm, so the documented command works:
npx coding-tutor-skill --skill tutor
  1. Update package.json so the root skill folders are included, for example:
"files": [
  "bin",
  "tutor",
  "challenger",
  "debugger",
  "explainer",
  "reviewer",
  "lecture",
  "course-builder",
  "interviewer"
]
  1. Update the README with a manual installation method using git clone.

Thanks!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions