feat: implement local registry loader (packages/registry)#433
Draft
Copilot wants to merge 2 commits into
Draft
Conversation
|
Meticulous was unable to execute a test run for this PR because the most recent commit is associated with multiple PRs. To execute a test run, please try pushing up a new commit that is only associated with this PR. Last updated for commit |
- Add packages/registry/ package with actions.json, skills.json, packs.json - Add TypeScript loader module (loadActionsRegistry, loadSkillsRegistry, loadPacksRegistry) - Add unit tests for all loaders - Add packages/cli/src/lib/registry.ts re-export for CLI commands - Register @profullstack/sh1pt-registry dependency in CLI package
Copilot
AI
changed the title
[WIP] Add local registry loader for sh1pt CLI
feat: implement local registry loader (packages/registry)
May 25, 2026
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.
The CLI had no central index for discovering available action packs, skills, and packs. Per the PRD, a
packages/registry/directory with JSON index files is the canonical local source for this metadata.Changes
New package:
@profullstack/sh1pt-registryactions.json/skills.json/packs.json— index files listing all built-in entries withname,publisher,version,description,trustLevel,category, andpathfieldssrc/index.ts— exportsloadActionsRegistry(),loadSkillsRegistry(),loadPacksRegistry()with descriptive error wrapping on I/O and parse failuresCLI integration
packages/cli/src/lib/registry.ts— thin re-export so CLI commands import from a stable local pathpackages/cli/package.json— adds@profullstack/sh1pt-registry: workspace:^Initial registry entries
vu1nz-scan,node-pnpm-ci,node-pnpm-testmodern-web