feat: add 5 skills to npm package with pi.skills manifest#48
Open
guvengursel wants to merge 1 commit into
Open
feat: add 5 skills to npm package with pi.skills manifest#48guvengursel wants to merge 1 commit into
guvengursel wants to merge 1 commit into
Conversation
The npm package ships without skills, even though 5 document-generator skills exist in the project. This adds: - pi.skills manifest in package.json (5 entries) - skills/ directory to package files list - All 5 skill SKILL.md files: - adr-recorder — Architecture Decision Records - prd-writer — Product Requirements Documents - project-architect — ARCHITECTURE.md documents - release-prepper — Release preparation - roadmap-planner — Development roadmaps These skills are already installed locally via pi-hermes-memory but not distributed through npm. Adding them to the package allows Pi to auto-discover and load them from the npm installation.
|
This also maybe mean we don't need that much bloat in the system prompt? See #47 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The
pi-hermes-memorynpm package does not include its 5 document-generator skills in the distribution. Thepi.skillsmanifest is missing frompackage.json, and theskills/directory is not listed in thefilesarray.As a result, Pi cannot auto-discover these skills from the npm installation. Users must manually install or copy skill files.
Skills Included
skills/adr-recorder/SKILL.md— Architecture Decision Records (MADR template)skills/prd-writer/SKILL.md— Product Requirements Documentsskills/project-architect/SKILL.md— ARCHITECTURE.md documentsskills/release-prepper/SKILL.md— Release preparation (Keep a Changelog + SemVer)skills/roadmap-planner/SKILL.md— Development roadmaps with milestonesChanges
pi.skillsarray topackage.jsonwith 5 skill pathsskillstopackage.jsonfilesarrayskills/*/SKILL.mdfiles to the repositoryNote
These skill files already exist in the Pi local installation at
~/.pi/agent/pi-hermes-memory/skills/. They are currently distributed via a separate install path, not through npm. This PR makes them available directly from the npm package.